Skip to content

Commit

Permalink
Version 3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
perrytew committed Feb 12, 2021
1 parent 9091de1 commit 15d37bc
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 8 deletions.
1 change: 1 addition & 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
- [ScreenRecordingFilterValuesEventParams](docs/Model/ScreenRecordingFilterValuesEventParams.md)
- [ScreenRecordingMultifield](docs/Model/ScreenRecordingMultifield.md)
- [ScreenRecordingPageView](docs/Model/ScreenRecordingPageView.md)
- [ScreenRecordingPageViewDataResponse](docs/Model/ScreenRecordingPageViewDataResponse.md)
- [ScreenRecordingPageViewEvent](docs/Model/ScreenRecordingPageViewEvent.md)
- [ScreenRecordingPageViewEventParameter](docs/Model/ScreenRecordingPageViewEventParameter.md)
- [ScreenRecordingPageViewParameter](docs/Model/ScreenRecordingPageViewParameter.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/Api/StorefrontApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4119,7 +4119,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)

# **getScreenRecordingPageViewData**
> \ultracart\v2\models\ScreenRecordingResponse getScreenRecordingPageViewData($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
> \ultracart\v2\models\ScreenRecordingPageViewDataResponse getScreenRecordingPageViewData($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
Get screen recording page view data

Expand Down Expand Up @@ -4157,7 +4157,7 @@ Name | Type | Description | Notes

### Return type

[**\ultracart\v2\models\ScreenRecordingResponse**](../Model/ScreenRecordingResponse.md)
[**\ultracart\v2\models\ScreenRecordingPageViewDataResponse**](../Model/ScreenRecordingPageViewDataResponse.md)

### Authorization

Expand Down
14 changes: 14 additions & 0 deletions docs/Model/ScreenRecordingPageViewDataResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# ScreenRecordingPageViewDataResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**error** | [**\ultracart\v2\models\Error**](Error.md) | | [optional]
**events_json** | **string** | | [optional]
**metadata** | [**\ultracart\v2\models\ResponseMetadata**](ResponseMetadata.md) | | [optional]
**success** | **bool** | Indicates if API call was successful | [optional]
**warning** | [**\ultracart\v2\models\Warning**](Warning.md) | | [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)


12 changes: 6 additions & 6 deletions lib/api/StorefrontApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -29625,7 +29625,7 @@ protected function getScreenRecordingRequest($storefront_oid, $screen_recording_
*
* @throws \ultracart\v2\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \ultracart\v2\models\ScreenRecordingResponse
* @return \ultracart\v2\models\ScreenRecordingPageViewDataResponse
*/
public function getScreenRecordingPageViewData($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
{
Expand All @@ -29645,7 +29645,7 @@ public function getScreenRecordingPageViewData($storefront_oid, $screen_recordin
*
* @throws \ultracart\v2\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \ultracart\v2\models\ScreenRecordingResponse, HTTP status code, HTTP response headers (array of strings)
* @return array of \ultracart\v2\models\ScreenRecordingPageViewDataResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getScreenRecordingPageViewDataWithHttpInfo($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
{
Expand All @@ -29665,11 +29665,11 @@ public function getScreenRecordingPageViewDataWithHttpInfo($storefront_oid, $scr
*
* @throws \ultracart\v2\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \ultracart\v2\models\ScreenRecordingResponse, HTTP status code, HTTP response headers (array of strings)
* @return array of \ultracart\v2\models\ScreenRecordingPageViewDataResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getScreenRecordingPageViewDataWithHttpInfoRetry($retry , $storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
{
$returnType = '\ultracart\v2\models\ScreenRecordingResponse';
$returnType = '\ultracart\v2\models\ScreenRecordingPageViewDataResponse';
$request = $this->getScreenRecordingPageViewDataRequest($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid);

try {
Expand Down Expand Up @@ -29722,7 +29722,7 @@ public function getScreenRecordingPageViewDataWithHttpInfoRetry($retry , $store
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\ultracart\v2\models\ScreenRecordingResponse',
'\ultracart\v2\models\ScreenRecordingPageViewDataResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
Expand Down Expand Up @@ -29808,7 +29808,7 @@ function ($response) {
*/
public function getScreenRecordingPageViewDataAsyncWithHttpInfo($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid)
{
$returnType = '\ultracart\v2\models\ScreenRecordingResponse';
$returnType = '\ultracart\v2\models\ScreenRecordingPageViewDataResponse';
$request = $this->getScreenRecordingPageViewDataRequest($storefront_oid, $screen_recording_uuid, $screen_recording_page_view_uuid);

return $this->client
Expand Down
Loading

0 comments on commit 15d37bc

Please sign in to comment.