Skip to content

Commit

Permalink
v2.1.600
Browse files Browse the repository at this point in the history
  • Loading branch information
johnturnham committed Mar 24, 2024
1 parent 357c8ac commit 607b7b1
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Model/WTWalletConfigurationSaveWalletRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ Name | Type | Description | Notes
**social_you_tube_url** | **string** | | [optional]
**social_twitter_url** | **string** | | [optional]
**social_linked_in_url** | **string** | | [optional]
**social_background_color** | **string** | | [optional]
**social_font_color** | **string** | | [optional]
**primary_phone_number** | **string** | | [optional]
**primary_whats_app** | **string** | | [optional]
**primary_email_address** | **string** | | [optional]
Expand Down
2 changes: 2 additions & 0 deletions docs/Model/WalletConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ Name | Type | Description | Notes
**social_you_tube_url** | **string** | | [optional]
**social_twitter_url** | **string** | | [optional]
**social_linked_in_url** | **string** | | [optional]
**social_background_color** | **string** | | [optional]
**social_font_color** | **string** | | [optional]
**primary_phone_number** | **string** | | [optional]
**primary_whats_app** | **string** | | [optional]
**primary_email_address** | **string** | | [optional]
Expand Down
68 changes: 68 additions & 0 deletions lib/Model/WTWalletConfigurationSaveWalletRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class WTWalletConfigurationSaveWalletRecord implements ModelInterface, ArrayAcce
'social_you_tube_url' => 'string',
'social_twitter_url' => 'string',
'social_linked_in_url' => 'string',
'social_background_color' => 'string',
'social_font_color' => 'string',
'primary_phone_number' => 'string',
'primary_whats_app' => 'string',
'primary_email_address' => 'string'
Expand Down Expand Up @@ -197,6 +199,8 @@ class WTWalletConfigurationSaveWalletRecord implements ModelInterface, ArrayAcce
'social_you_tube_url' => null,
'social_twitter_url' => null,
'social_linked_in_url' => null,
'social_background_color' => null,
'social_font_color' => null,
'primary_phone_number' => null,
'primary_whats_app' => null,
'primary_email_address' => null
Expand Down Expand Up @@ -271,6 +275,8 @@ class WTWalletConfigurationSaveWalletRecord implements ModelInterface, ArrayAcce
'social_you_tube_url' => false,
'social_twitter_url' => false,
'social_linked_in_url' => false,
'social_background_color' => false,
'social_font_color' => false,
'primary_phone_number' => false,
'primary_whats_app' => false,
'primary_email_address' => false
Expand Down Expand Up @@ -425,6 +431,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'socialYouTubeURL',
'social_twitter_url' => 'socialTwitterURL',
'social_linked_in_url' => 'socialLinkedInURL',
'social_background_color' => 'socialBackgroundColor',
'social_font_color' => 'socialFontColor',
'primary_phone_number' => 'primaryPhoneNumber',
'primary_whats_app' => 'primaryWhatsApp',
'primary_email_address' => 'primaryEmailAddress'
Expand Down Expand Up @@ -499,6 +507,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'setSocialYouTubeUrl',
'social_twitter_url' => 'setSocialTwitterUrl',
'social_linked_in_url' => 'setSocialLinkedInUrl',
'social_background_color' => 'setSocialBackgroundColor',
'social_font_color' => 'setSocialFontColor',
'primary_phone_number' => 'setPrimaryPhoneNumber',
'primary_whats_app' => 'setPrimaryWhatsApp',
'primary_email_address' => 'setPrimaryEmailAddress'
Expand Down Expand Up @@ -573,6 +583,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'getSocialYouTubeUrl',
'social_twitter_url' => 'getSocialTwitterUrl',
'social_linked_in_url' => 'getSocialLinkedInUrl',
'social_background_color' => 'getSocialBackgroundColor',
'social_font_color' => 'getSocialFontColor',
'primary_phone_number' => 'getPrimaryPhoneNumber',
'primary_whats_app' => 'getPrimaryWhatsApp',
'primary_email_address' => 'getPrimaryEmailAddress'
Expand Down Expand Up @@ -698,6 +710,8 @@ public function __construct(array $data = null)
$this->setIfExists('social_you_tube_url', $data ?? [], null);
$this->setIfExists('social_twitter_url', $data ?? [], null);
$this->setIfExists('social_linked_in_url', $data ?? [], null);
$this->setIfExists('social_background_color', $data ?? [], null);
$this->setIfExists('social_font_color', $data ?? [], null);
$this->setIfExists('primary_phone_number', $data ?? [], null);
$this->setIfExists('primary_whats_app', $data ?? [], null);
$this->setIfExists('primary_email_address', $data ?? [], null);
Expand Down Expand Up @@ -2575,6 +2589,60 @@ public function setSocialLinkedInUrl($social_linked_in_url)
return $this;
}

/**
* Gets social_background_color
*
* @return string|null
*/
public function getSocialBackgroundColor()
{
return $this->container['social_background_color'];
}

/**
* Sets social_background_color
*
* @param string|null $social_background_color social_background_color
*
* @return self
*/
public function setSocialBackgroundColor($social_background_color)
{
if (is_null($social_background_color)) {
throw new \InvalidArgumentException('non-nullable social_background_color cannot be null');
}
$this->container['social_background_color'] = $social_background_color;

return $this;
}

/**
* Gets social_font_color
*
* @return string|null
*/
public function getSocialFontColor()
{
return $this->container['social_font_color'];
}

/**
* Sets social_font_color
*
* @param string|null $social_font_color social_font_color
*
* @return self
*/
public function setSocialFontColor($social_font_color)
{
if (is_null($social_font_color)) {
throw new \InvalidArgumentException('non-nullable social_font_color cannot be null');
}
$this->container['social_font_color'] = $social_font_color;

return $this;
}

/**
* Gets primary_phone_number
*
Expand Down
68 changes: 68 additions & 0 deletions lib/Model/WalletConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class WalletConfiguration implements ModelInterface, ArrayAccess, \JsonSerializa
'social_you_tube_url' => 'string',
'social_twitter_url' => 'string',
'social_linked_in_url' => 'string',
'social_background_color' => 'string',
'social_font_color' => 'string',
'primary_phone_number' => 'string',
'primary_whats_app' => 'string',
'primary_email_address' => 'string',
Expand Down Expand Up @@ -201,6 +203,8 @@ class WalletConfiguration implements ModelInterface, ArrayAccess, \JsonSerializa
'social_you_tube_url' => null,
'social_twitter_url' => null,
'social_linked_in_url' => null,
'social_background_color' => null,
'social_font_color' => null,
'primary_phone_number' => null,
'primary_whats_app' => null,
'primary_email_address' => null,
Expand Down Expand Up @@ -279,6 +283,8 @@ class WalletConfiguration implements ModelInterface, ArrayAccess, \JsonSerializa
'social_you_tube_url' => false,
'social_twitter_url' => false,
'social_linked_in_url' => false,
'social_background_color' => false,
'social_font_color' => false,
'primary_phone_number' => false,
'primary_whats_app' => false,
'primary_email_address' => false,
Expand Down Expand Up @@ -437,6 +443,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'socialYouTubeURL',
'social_twitter_url' => 'socialTwitterURL',
'social_linked_in_url' => 'socialLinkedInURL',
'social_background_color' => 'socialBackgroundColor',
'social_font_color' => 'socialFontColor',
'primary_phone_number' => 'primaryPhoneNumber',
'primary_whats_app' => 'primaryWhatsApp',
'primary_email_address' => 'primaryEmailAddress',
Expand Down Expand Up @@ -515,6 +523,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'setSocialYouTubeUrl',
'social_twitter_url' => 'setSocialTwitterUrl',
'social_linked_in_url' => 'setSocialLinkedInUrl',
'social_background_color' => 'setSocialBackgroundColor',
'social_font_color' => 'setSocialFontColor',
'primary_phone_number' => 'setPrimaryPhoneNumber',
'primary_whats_app' => 'setPrimaryWhatsApp',
'primary_email_address' => 'setPrimaryEmailAddress',
Expand Down Expand Up @@ -593,6 +603,8 @@ public function isNullableSetToNull(string $property): bool
'social_you_tube_url' => 'getSocialYouTubeUrl',
'social_twitter_url' => 'getSocialTwitterUrl',
'social_linked_in_url' => 'getSocialLinkedInUrl',
'social_background_color' => 'getSocialBackgroundColor',
'social_font_color' => 'getSocialFontColor',
'primary_phone_number' => 'getPrimaryPhoneNumber',
'primary_whats_app' => 'getPrimaryWhatsApp',
'primary_email_address' => 'getPrimaryEmailAddress',
Expand Down Expand Up @@ -722,6 +734,8 @@ public function __construct(array $data = null)
$this->setIfExists('social_you_tube_url', $data ?? [], null);
$this->setIfExists('social_twitter_url', $data ?? [], null);
$this->setIfExists('social_linked_in_url', $data ?? [], null);
$this->setIfExists('social_background_color', $data ?? [], null);
$this->setIfExists('social_font_color', $data ?? [], null);
$this->setIfExists('primary_phone_number', $data ?? [], null);
$this->setIfExists('primary_whats_app', $data ?? [], null);
$this->setIfExists('primary_email_address', $data ?? [], null);
Expand Down Expand Up @@ -2639,6 +2653,60 @@ public function setSocialLinkedInUrl($social_linked_in_url)
return $this;
}

/**
* Gets social_background_color
*
* @return string|null
*/
public function getSocialBackgroundColor()
{
return $this->container['social_background_color'];
}

/**
* Sets social_background_color
*
* @param string|null $social_background_color social_background_color
*
* @return self
*/
public function setSocialBackgroundColor($social_background_color)
{
if (is_null($social_background_color)) {
throw new \InvalidArgumentException('non-nullable social_background_color cannot be null');
}
$this->container['social_background_color'] = $social_background_color;

return $this;
}

/**
* Gets social_font_color
*
* @return string|null
*/
public function getSocialFontColor()
{
return $this->container['social_font_color'];
}

/**
* Sets social_font_color
*
* @param string|null $social_font_color social_font_color
*
* @return self
*/
public function setSocialFontColor($social_font_color)
{
if (is_null($social_font_color)) {
throw new \InvalidArgumentException('non-nullable social_font_color cannot be null');
}
$this->container['social_font_color'] = $social_font_color;

return $this;
}

/**
* Gets primary_phone_number
*
Expand Down

0 comments on commit 607b7b1

Please sign in to comment.