Skip to content

Commit a29d49c

Browse files
author
johnturnham
committed
v2.1.600
1 parent 78b7541 commit a29d49c

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

docs/WTWalletConfigurationSaveWalletRecord.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Name | Type | Description | Notes
6363
**mobile_app_icon_url** | **str** | | [optional]
6464
**is_age_gate** | **bool** | | [optional]
6565
**age_gate_minimum** | **float** | | [optional]
66+
**age_gate_decline_url** | **str** | | [optional]
6667
**social_instagram_url** | **str** | | [optional]
6768
**social_facebook_url** | **str** | | [optional]
6869
**social_you_tube_url** | **str** | | [optional]
@@ -73,6 +74,11 @@ Name | Type | Description | Notes
7374
**primary_phone_number** | **str** | | [optional]
7475
**primary_whats_app** | **str** | | [optional]
7576
**primary_email_address** | **str** | | [optional]
77+
**custom_js** | **str** | | [optional]
78+
**custom_css** | **str** | | [optional]
79+
**non_mobile_redirect_url** | **str** | | [optional]
80+
**apple_app_store_url** | **str** | | [optional]
81+
**google_play_store_url** | **str** | | [optional]
7682

7783
## Example
7884

docs/WalletConfiguration.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Name | Type | Description | Notes
6363
**mobile_app_icon_url** | **str** | | [optional]
6464
**is_age_gate** | **bool** | | [optional]
6565
**age_gate_minimum** | **float** | | [optional]
66+
**age_gate_decline_url** | **str** | | [optional]
6667
**social_instagram_url** | **str** | | [optional]
6768
**social_facebook_url** | **str** | | [optional]
6869
**social_you_tube_url** | **str** | | [optional]
@@ -73,6 +74,11 @@ Name | Type | Description | Notes
7374
**primary_phone_number** | **str** | | [optional]
7475
**primary_whats_app** | **str** | | [optional]
7576
**primary_email_address** | **str** | | [optional]
77+
**custom_js** | **str** | | [optional]
78+
**custom_css** | **str** | | [optional]
79+
**non_mobile_redirect_url** | **str** | | [optional]
80+
**apple_app_store_url** | **str** | | [optional]
81+
**google_play_store_url** | **str** | | [optional]
7682
**id** | **str** | |
7783
**created_at** | **datetime** | |
7884
**updated_at** | **datetime** | |

wallet/models/wallet_configuration.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ class WalletConfiguration(BaseModel):
8888
mobile_app_icon_url: Optional[StrictStr] = Field(default=None, alias="mobileAppIconURL")
8989
is_age_gate: Optional[StrictBool] = Field(default=None, alias="isAgeGate")
9090
age_gate_minimum: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="ageGateMinimum")
91+
age_gate_decline_url: Optional[StrictStr] = Field(default=None, alias="ageGateDeclineURL")
9192
social_instagram_url: Optional[StrictStr] = Field(default=None, alias="socialInstagramURL")
9293
social_facebook_url: Optional[StrictStr] = Field(default=None, alias="socialFacebookURL")
9394
social_you_tube_url: Optional[StrictStr] = Field(default=None, alias="socialYouTubeURL")
@@ -98,11 +99,16 @@ class WalletConfiguration(BaseModel):
9899
primary_phone_number: Optional[StrictStr] = Field(default=None, alias="primaryPhoneNumber")
99100
primary_whats_app: Optional[StrictStr] = Field(default=None, alias="primaryWhatsApp")
100101
primary_email_address: Optional[StrictStr] = Field(default=None, alias="primaryEmailAddress")
102+
custom_js: Optional[StrictStr] = Field(default=None, alias="customJS")
103+
custom_css: Optional[StrictStr] = Field(default=None, alias="customCSS")
104+
non_mobile_redirect_url: Optional[StrictStr] = Field(default=None, alias="nonMobileRedirectURL")
105+
apple_app_store_url: Optional[StrictStr] = Field(default=None, alias="appleAppStoreURL")
106+
google_play_store_url: Optional[StrictStr] = Field(default=None, alias="googlePlayStoreURL")
101107
id: Annotated[str, Field(min_length=10, strict=True, max_length=10)]
102108
created_at: datetime = Field(alias="createdAt")
103109
updated_at: datetime = Field(alias="updatedAt")
104110
merchant_id: Annotated[str, Field(min_length=10, strict=True, max_length=10)] = Field(alias="merchantID")
105-
__properties: ClassVar[List[str]] = ["headerBackgroundColor", "headerButtonColor", "leftMenuHeaderBackgroundColor", "leftMenuHeaderFontColor", "leftMenuSectionBackgroundColor", "leftMenuSectionFontColor", "companyLogoURL", "headerImageURL", "headerCustomIcon", "welcomeMessage", "isAppleEnabled", "isGoogleEnabled", "isSamsungEnabled", "isAdCredits", "isStaticVouchers", "isDynamicVouchers", "isMembershipTier", "isMembershipPoints", "isMembershipLevel", "isGiftCards", "isGiftCertificates", "isPromotions", "isMerchantCredit", "isTickets", "isNewsArticles", "isPerformances", "isMessages", "isCall", "isRepresentatives", "isProducts", "isServices", "isRoomRates", "isAmenities", "isGaming", "isDining", "isLounges", "isMapDirections", "isLinkBook", "isImageGrid", "isVideos", "isTransactionHistory", "isProfile", "isSettings", "isChatRoom", "isSmsOptIn", "smsOptInSourceID", "isEmailSubscriber", "googleAnalyticsID", "facebookPixelID", "publicChatRoomChannelID", "vanityHandle", "vanityPageWalletPrefix", "merchantCreditPaymentDesignID", "customDomain", "isClaimed", "mobileAppIconURL", "isAgeGate", "ageGateMinimum", "socialInstagramURL", "socialFacebookURL", "socialYouTubeURL", "socialTwitterURL", "socialLinkedInURL", "socialBackgroundColor", "socialFontColor", "primaryPhoneNumber", "primaryWhatsApp", "primaryEmailAddress", "id", "createdAt", "updatedAt", "merchantID"]
111+
__properties: ClassVar[List[str]] = ["headerBackgroundColor", "headerButtonColor", "leftMenuHeaderBackgroundColor", "leftMenuHeaderFontColor", "leftMenuSectionBackgroundColor", "leftMenuSectionFontColor", "companyLogoURL", "headerImageURL", "headerCustomIcon", "welcomeMessage", "isAppleEnabled", "isGoogleEnabled", "isSamsungEnabled", "isAdCredits", "isStaticVouchers", "isDynamicVouchers", "isMembershipTier", "isMembershipPoints", "isMembershipLevel", "isGiftCards", "isGiftCertificates", "isPromotions", "isMerchantCredit", "isTickets", "isNewsArticles", "isPerformances", "isMessages", "isCall", "isRepresentatives", "isProducts", "isServices", "isRoomRates", "isAmenities", "isGaming", "isDining", "isLounges", "isMapDirections", "isLinkBook", "isImageGrid", "isVideos", "isTransactionHistory", "isProfile", "isSettings", "isChatRoom", "isSmsOptIn", "smsOptInSourceID", "isEmailSubscriber", "googleAnalyticsID", "facebookPixelID", "publicChatRoomChannelID", "vanityHandle", "vanityPageWalletPrefix", "merchantCreditPaymentDesignID", "customDomain", "isClaimed", "mobileAppIconURL", "isAgeGate", "ageGateMinimum", "ageGateDeclineURL", "socialInstagramURL", "socialFacebookURL", "socialYouTubeURL", "socialTwitterURL", "socialLinkedInURL", "socialBackgroundColor", "socialFontColor", "primaryPhoneNumber", "primaryWhatsApp", "primaryEmailAddress", "customJS", "customCSS", "nonMobileRedirectURL", "appleAppStoreURL", "googlePlayStoreURL", "id", "createdAt", "updatedAt", "merchantID"]
106112

107113
@field_validator('id')
108114
def id_validate_regular_expression(cls, value):
@@ -230,6 +236,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
230236
"mobileAppIconURL": obj.get("mobileAppIconURL"),
231237
"isAgeGate": obj.get("isAgeGate"),
232238
"ageGateMinimum": obj.get("ageGateMinimum"),
239+
"ageGateDeclineURL": obj.get("ageGateDeclineURL"),
233240
"socialInstagramURL": obj.get("socialInstagramURL"),
234241
"socialFacebookURL": obj.get("socialFacebookURL"),
235242
"socialYouTubeURL": obj.get("socialYouTubeURL"),
@@ -240,6 +247,11 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
240247
"primaryPhoneNumber": obj.get("primaryPhoneNumber"),
241248
"primaryWhatsApp": obj.get("primaryWhatsApp"),
242249
"primaryEmailAddress": obj.get("primaryEmailAddress"),
250+
"customJS": obj.get("customJS"),
251+
"customCSS": obj.get("customCSS"),
252+
"nonMobileRedirectURL": obj.get("nonMobileRedirectURL"),
253+
"appleAppStoreURL": obj.get("appleAppStoreURL"),
254+
"googlePlayStoreURL": obj.get("googlePlayStoreURL"),
243255
"id": obj.get("id"),
244256
"createdAt": obj.get("createdAt"),
245257
"updatedAt": obj.get("updatedAt"),

wallet/models/wt_wallet_configuration_save_wallet_record.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ class WTWalletConfigurationSaveWalletRecord(BaseModel):
8686
mobile_app_icon_url: Optional[StrictStr] = Field(default=None, alias="mobileAppIconURL")
8787
is_age_gate: Optional[StrictBool] = Field(default=None, alias="isAgeGate")
8888
age_gate_minimum: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="ageGateMinimum")
89+
age_gate_decline_url: Optional[StrictStr] = Field(default=None, alias="ageGateDeclineURL")
8990
social_instagram_url: Optional[StrictStr] = Field(default=None, alias="socialInstagramURL")
9091
social_facebook_url: Optional[StrictStr] = Field(default=None, alias="socialFacebookURL")
9192
social_you_tube_url: Optional[StrictStr] = Field(default=None, alias="socialYouTubeURL")
@@ -96,7 +97,12 @@ class WTWalletConfigurationSaveWalletRecord(BaseModel):
9697
primary_phone_number: Optional[StrictStr] = Field(default=None, alias="primaryPhoneNumber")
9798
primary_whats_app: Optional[StrictStr] = Field(default=None, alias="primaryWhatsApp")
9899
primary_email_address: Optional[StrictStr] = Field(default=None, alias="primaryEmailAddress")
99-
__properties: ClassVar[List[str]] = ["headerBackgroundColor", "headerButtonColor", "leftMenuHeaderBackgroundColor", "leftMenuHeaderFontColor", "leftMenuSectionBackgroundColor", "leftMenuSectionFontColor", "companyLogoURL", "headerImageURL", "headerCustomIcon", "welcomeMessage", "isAppleEnabled", "isGoogleEnabled", "isSamsungEnabled", "isAdCredits", "isStaticVouchers", "isDynamicVouchers", "isMembershipTier", "isMembershipPoints", "isMembershipLevel", "isGiftCards", "isGiftCertificates", "isPromotions", "isMerchantCredit", "isTickets", "isNewsArticles", "isPerformances", "isMessages", "isCall", "isRepresentatives", "isProducts", "isServices", "isRoomRates", "isAmenities", "isGaming", "isDining", "isLounges", "isMapDirections", "isLinkBook", "isImageGrid", "isVideos", "isTransactionHistory", "isProfile", "isSettings", "isChatRoom", "isSmsOptIn", "smsOptInSourceID", "isEmailSubscriber", "googleAnalyticsID", "facebookPixelID", "publicChatRoomChannelID", "vanityHandle", "vanityPageWalletPrefix", "merchantCreditPaymentDesignID", "customDomain", "isClaimed", "mobileAppIconURL", "isAgeGate", "ageGateMinimum", "socialInstagramURL", "socialFacebookURL", "socialYouTubeURL", "socialTwitterURL", "socialLinkedInURL", "socialBackgroundColor", "socialFontColor", "primaryPhoneNumber", "primaryWhatsApp", "primaryEmailAddress"]
100+
custom_js: Optional[StrictStr] = Field(default=None, alias="customJS")
101+
custom_css: Optional[StrictStr] = Field(default=None, alias="customCSS")
102+
non_mobile_redirect_url: Optional[StrictStr] = Field(default=None, alias="nonMobileRedirectURL")
103+
apple_app_store_url: Optional[StrictStr] = Field(default=None, alias="appleAppStoreURL")
104+
google_play_store_url: Optional[StrictStr] = Field(default=None, alias="googlePlayStoreURL")
105+
__properties: ClassVar[List[str]] = ["headerBackgroundColor", "headerButtonColor", "leftMenuHeaderBackgroundColor", "leftMenuHeaderFontColor", "leftMenuSectionBackgroundColor", "leftMenuSectionFontColor", "companyLogoURL", "headerImageURL", "headerCustomIcon", "welcomeMessage", "isAppleEnabled", "isGoogleEnabled", "isSamsungEnabled", "isAdCredits", "isStaticVouchers", "isDynamicVouchers", "isMembershipTier", "isMembershipPoints", "isMembershipLevel", "isGiftCards", "isGiftCertificates", "isPromotions", "isMerchantCredit", "isTickets", "isNewsArticles", "isPerformances", "isMessages", "isCall", "isRepresentatives", "isProducts", "isServices", "isRoomRates", "isAmenities", "isGaming", "isDining", "isLounges", "isMapDirections", "isLinkBook", "isImageGrid", "isVideos", "isTransactionHistory", "isProfile", "isSettings", "isChatRoom", "isSmsOptIn", "smsOptInSourceID", "isEmailSubscriber", "googleAnalyticsID", "facebookPixelID", "publicChatRoomChannelID", "vanityHandle", "vanityPageWalletPrefix", "merchantCreditPaymentDesignID", "customDomain", "isClaimed", "mobileAppIconURL", "isAgeGate", "ageGateMinimum", "ageGateDeclineURL", "socialInstagramURL", "socialFacebookURL", "socialYouTubeURL", "socialTwitterURL", "socialLinkedInURL", "socialBackgroundColor", "socialFontColor", "primaryPhoneNumber", "primaryWhatsApp", "primaryEmailAddress", "customJS", "customCSS", "nonMobileRedirectURL", "appleAppStoreURL", "googlePlayStoreURL"]
100106

101107
model_config = {
102108
"populate_by_name": True,
@@ -210,6 +216,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
210216
"mobileAppIconURL": obj.get("mobileAppIconURL"),
211217
"isAgeGate": obj.get("isAgeGate"),
212218
"ageGateMinimum": obj.get("ageGateMinimum"),
219+
"ageGateDeclineURL": obj.get("ageGateDeclineURL"),
213220
"socialInstagramURL": obj.get("socialInstagramURL"),
214221
"socialFacebookURL": obj.get("socialFacebookURL"),
215222
"socialYouTubeURL": obj.get("socialYouTubeURL"),
@@ -219,7 +226,12 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
219226
"socialFontColor": obj.get("socialFontColor"),
220227
"primaryPhoneNumber": obj.get("primaryPhoneNumber"),
221228
"primaryWhatsApp": obj.get("primaryWhatsApp"),
222-
"primaryEmailAddress": obj.get("primaryEmailAddress")
229+
"primaryEmailAddress": obj.get("primaryEmailAddress"),
230+
"customJS": obj.get("customJS"),
231+
"customCSS": obj.get("customCSS"),
232+
"nonMobileRedirectURL": obj.get("nonMobileRedirectURL"),
233+
"appleAppStoreURL": obj.get("appleAppStoreURL"),
234+
"googlePlayStoreURL": obj.get("googlePlayStoreURL")
223235
})
224236
return _obj
225237

0 commit comments

Comments
 (0)