Skip to content

Commit

Permalink
screen recording missing flag boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
perrytew committed Feb 24, 2021
1 parent 5d8c5ac commit 7f7a9da
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,7 @@ Not every change is committed to every SDK.

| Version | Date | Comments |
| --: | :-: | --- |
| 3.1.8 | 02/24/2021 | Add flag: screen recording missing event boolean |
| 3.1.5 | 02/12/2021 | Bug Fix: PHP retry logic missing a closing brace. Also screen recording page view data response refactor |
| 3.1.3 | 02/11/2021 | Bug Fix: wrong return type on CustomerApi.validateEmailVerificationToken |
| 3.1.2 | 02/11/2021 | CustomerApi.getEmailVerificationToken, CustomerApi.validateEmailVerificationToken added to allow for custom email verification. Also added favorite flag to screen recording object |
Expand Down
1 change: 1 addition & 0 deletions docs/Model/ItemContentAssignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**default_assignment** | **bool** | True if this group is the default assignment for this item | [optional]
**group_oid** | **int** | Page (group) object identifier | [optional]
**group_path** | **string** | Page (group) path | [optional]
**host** | **string** | StoreFront host name | [optional]
Expand Down
1 change: 1 addition & 0 deletions docs/Model/ScreenRecordingPageView.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**first_event_timestamp** | **string** | First event timestamp | [optional]
**http_post** | **bool** | | [optional]
**last_event_timestamp** | **string** | Last event timestamp | [optional]
**missing_events** | **bool** | | [optional]
**params** | [**\ultracart\v2\models\ScreenRecordingPageViewParameter[]**](ScreenRecordingPageViewParameter.md) | | [optional]
**range_end** | **int** | | [optional]
**range_start** | **int** | | [optional]
Expand Down
30 changes: 30 additions & 0 deletions lib/models/ItemContentAssignment.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class ItemContentAssignment implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerTypes = [
'default_assignment' => 'bool',
'group_oid' => 'int',
'group_path' => 'string',
'host' => 'string',
Expand All @@ -70,6 +71,7 @@ class ItemContentAssignment implements ModelInterface, ArrayAccess
* @var string[]
*/
protected static $swaggerFormats = [
'default_assignment' => null,
'group_oid' => 'int32',
'group_path' => null,
'host' => null,
Expand Down Expand Up @@ -104,6 +106,7 @@ public static function swaggerFormats()
* @var string[]
*/
protected static $attributeMap = [
'default_assignment' => 'default_assignment',
'group_oid' => 'group_oid',
'group_path' => 'group_path',
'host' => 'host',
Expand All @@ -117,6 +120,7 @@ public static function swaggerFormats()
* @var string[]
*/
protected static $setters = [
'default_assignment' => 'setDefaultAssignment',
'group_oid' => 'setGroupOid',
'group_path' => 'setGroupPath',
'host' => 'setHost',
Expand All @@ -130,6 +134,7 @@ public static function swaggerFormats()
* @var string[]
*/
protected static $getters = [
'default_assignment' => 'getDefaultAssignment',
'group_oid' => 'getGroupOid',
'group_path' => 'getGroupPath',
'host' => 'getHost',
Expand Down Expand Up @@ -197,6 +202,7 @@ public function getModelName()
*/
public function __construct(array $data = null)
{
$this->container['default_assignment'] = isset($data['default_assignment']) ? $data['default_assignment'] : null;
$this->container['group_oid'] = isset($data['group_oid']) ? $data['group_oid'] : null;
$this->container['group_path'] = isset($data['group_path']) ? $data['group_path'] : null;
$this->container['host'] = isset($data['host']) ? $data['host'] : null;
Expand Down Expand Up @@ -232,6 +238,30 @@ public function valid()
}


/**
* Gets default_assignment
*
* @return bool
*/
public function getDefaultAssignment()
{
return $this->container['default_assignment'];
}

/**
* Sets default_assignment
*
* @param bool $default_assignment True if this group is the default assignment for this item
*
* @return $this
*/
public function setDefaultAssignment($default_assignment)
{
$this->container['default_assignment'] = $default_assignment;

return $this;
}

/**
* Gets group_oid
*
Expand Down
30 changes: 30 additions & 0 deletions lib/models/ScreenRecordingPageView.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class ScreenRecordingPageView implements ModelInterface, ArrayAccess
'first_event_timestamp' => 'string',
'http_post' => 'bool',
'last_event_timestamp' => 'string',
'missing_events' => 'bool',
'params' => '\ultracart\v2\models\ScreenRecordingPageViewParameter[]',
'range_end' => 'int',
'range_start' => 'int',
Expand All @@ -84,6 +85,7 @@ class ScreenRecordingPageView implements ModelInterface, ArrayAccess
'first_event_timestamp' => 'dateTime',
'http_post' => null,
'last_event_timestamp' => 'dateTime',
'missing_events' => null,
'params' => null,
'range_end' => 'int32',
'range_start' => 'int32',
Expand Down Expand Up @@ -128,6 +130,7 @@ public static function swaggerFormats()
'first_event_timestamp' => 'first_event_timestamp',
'http_post' => 'http_post',
'last_event_timestamp' => 'last_event_timestamp',
'missing_events' => 'missing_events',
'params' => 'params',
'range_end' => 'range_end',
'range_start' => 'range_start',
Expand All @@ -151,6 +154,7 @@ public static function swaggerFormats()
'first_event_timestamp' => 'setFirstEventTimestamp',
'http_post' => 'setHttpPost',
'last_event_timestamp' => 'setLastEventTimestamp',
'missing_events' => 'setMissingEvents',
'params' => 'setParams',
'range_end' => 'setRangeEnd',
'range_start' => 'setRangeStart',
Expand All @@ -174,6 +178,7 @@ public static function swaggerFormats()
'first_event_timestamp' => 'getFirstEventTimestamp',
'http_post' => 'getHttpPost',
'last_event_timestamp' => 'getLastEventTimestamp',
'missing_events' => 'getMissingEvents',
'params' => 'getParams',
'range_end' => 'getRangeEnd',
'range_start' => 'getRangeStart',
Expand Down Expand Up @@ -251,6 +256,7 @@ public function __construct(array $data = null)
$this->container['first_event_timestamp'] = isset($data['first_event_timestamp']) ? $data['first_event_timestamp'] : null;
$this->container['http_post'] = isset($data['http_post']) ? $data['http_post'] : null;
$this->container['last_event_timestamp'] = isset($data['last_event_timestamp']) ? $data['last_event_timestamp'] : null;
$this->container['missing_events'] = isset($data['missing_events']) ? $data['missing_events'] : null;
$this->container['params'] = isset($data['params']) ? $data['params'] : null;
$this->container['range_end'] = isset($data['range_end']) ? $data['range_end'] : null;
$this->container['range_start'] = isset($data['range_start']) ? $data['range_start'] : null;
Expand Down Expand Up @@ -384,6 +390,30 @@ public function setLastEventTimestamp($last_event_timestamp)
return $this;
}

/**
* Gets missing_events
*
* @return bool
*/
public function getMissingEvents()
{
return $this->container['missing_events'];
}

/**
* Sets missing_events
*
* @param bool $missing_events missing_events
*
* @return $this
*/
public function setMissingEvents($missing_events)
{
$this->container['missing_events'] = $missing_events;

return $this;
}

/**
* Gets params
*
Expand Down

0 comments on commit 7f7a9da

Please sign in to comment.