Skip to content

Commit

Permalink
screen recording filter page parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
perrytew committed Mar 16, 2021
1 parent 13e97ef commit 9555d3b
Show file tree
Hide file tree
Showing 5 changed files with 375 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,7 @@ Class | Method | HTTP request | Description
- [ScreenRecordingFilterValues](docs/Model/ScreenRecordingFilterValues.md)
- [ScreenRecordingFilterValuesEvent](docs/Model/ScreenRecordingFilterValuesEvent.md)
- [ScreenRecordingFilterValuesEventParams](docs/Model/ScreenRecordingFilterValuesEventParams.md)
- [ScreenRecordingFilterValuesPageParam](docs/Model/ScreenRecordingFilterValuesPageParam.md)
- [ScreenRecordingMerchantNotesRequest](docs/Model/ScreenRecordingMerchantNotesRequest.md)
- [ScreenRecordingMultifield](docs/Model/ScreenRecordingMultifield.md)
- [ScreenRecordingPageView](docs/Model/ScreenRecordingPageView.md)
Expand Down Expand Up @@ -1084,6 +1085,7 @@ Not every change is committed to every SDK.

| Version | Date | Comments |
| --: | :-: | --- |
| 3.1.16 | 03/16/2021 | screen recording filter page parameter names |
| 3.1.15 | 03/15/2021 | fix response from deleteScreenRecordingSegment that should have been void |
| 3.1.14 | 03/15/2021 | sort screen recordings by favorite flag |
| 3.1.13 | 03/02/2021 | new webhook order_payment_failed |
Expand Down
1 change: 1 addition & 0 deletions docs/Model/ScreenRecordingFilterValues.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**geolocation_countries** | **string[]** | | [optional]
**geolocation_states** | **string[]** | | [optional]
**max_values** | **int** | | [optional]
**page_params** | [**\ultracart\v2\models\ScreenRecordingFilterValuesPageParam[]**](ScreenRecordingFilterValuesPageParam.md) | | [optional]
**urls** | **string[]** | | [optional]
**user_agent_device_names** | **string[]** | | [optional]
**user_agent_device_os_names** | **string[]** | | [optional]
Expand Down
11 changes: 11 additions & 0 deletions docs/Model/ScreenRecordingFilterValuesPageParam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ScreenRecordingFilterValuesPageParam

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **string** | | [optional]
**values** | **string[]** | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


30 changes: 30 additions & 0 deletions lib/models/ScreenRecordingFilterValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class ScreenRecordingFilterValues implements ModelInterface, ArrayAccess
'geolocation_countries' => 'string[]',
'geolocation_states' => 'string[]',
'max_values' => 'int',
'page_params' => '\ultracart\v2\models\ScreenRecordingFilterValuesPageParam[]',
'urls' => 'string[]',
'user_agent_device_names' => 'string[]',
'user_agent_device_os_names' => 'string[]',
Expand All @@ -79,6 +80,7 @@ class ScreenRecordingFilterValues implements ModelInterface, ArrayAccess
'geolocation_countries' => null,
'geolocation_states' => null,
'max_values' => 'int32',
'page_params' => null,
'urls' => null,
'user_agent_device_names' => null,
'user_agent_device_os_names' => null,
Expand Down Expand Up @@ -118,6 +120,7 @@ public static function swaggerFormats()
'geolocation_countries' => 'geolocation_countries',
'geolocation_states' => 'geolocation_states',
'max_values' => 'max_values',
'page_params' => 'page_params',
'urls' => 'urls',
'user_agent_device_names' => 'user_agent_device_names',
'user_agent_device_os_names' => 'user_agent_device_os_names',
Expand All @@ -136,6 +139,7 @@ public static function swaggerFormats()
'geolocation_countries' => 'setGeolocationCountries',
'geolocation_states' => 'setGeolocationStates',
'max_values' => 'setMaxValues',
'page_params' => 'setPageParams',
'urls' => 'setUrls',
'user_agent_device_names' => 'setUserAgentDeviceNames',
'user_agent_device_os_names' => 'setUserAgentDeviceOsNames',
Expand All @@ -154,6 +158,7 @@ public static function swaggerFormats()
'geolocation_countries' => 'getGeolocationCountries',
'geolocation_states' => 'getGeolocationStates',
'max_values' => 'getMaxValues',
'page_params' => 'getPageParams',
'urls' => 'getUrls',
'user_agent_device_names' => 'getUserAgentDeviceNames',
'user_agent_device_os_names' => 'getUserAgentDeviceOsNames',
Expand Down Expand Up @@ -226,6 +231,7 @@ public function __construct(array $data = null)
$this->container['geolocation_countries'] = isset($data['geolocation_countries']) ? $data['geolocation_countries'] : null;
$this->container['geolocation_states'] = isset($data['geolocation_states']) ? $data['geolocation_states'] : null;
$this->container['max_values'] = isset($data['max_values']) ? $data['max_values'] : null;
$this->container['page_params'] = isset($data['page_params']) ? $data['page_params'] : null;
$this->container['urls'] = isset($data['urls']) ? $data['urls'] : null;
$this->container['user_agent_device_names'] = isset($data['user_agent_device_names']) ? $data['user_agent_device_names'] : null;
$this->container['user_agent_device_os_names'] = isset($data['user_agent_device_os_names']) ? $data['user_agent_device_os_names'] : null;
Expand Down Expand Up @@ -354,6 +360,30 @@ public function setMaxValues($max_values)
return $this;
}

/**
* Gets page_params
*
* @return \ultracart\v2\models\ScreenRecordingFilterValuesPageParam[]
*/
public function getPageParams()
{
return $this->container['page_params'];
}

/**
* Sets page_params
*
* @param \ultracart\v2\models\ScreenRecordingFilterValuesPageParam[] $page_params page_params
*
* @return $this
*/
public function setPageParams($page_params)
{
$this->container['page_params'] = $page_params;

return $this;
}

/**
* Gets urls
*
Expand Down

0 comments on commit 9555d3b

Please sign in to comment.