Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.68 KB

File metadata and controls

47 lines (38 loc) · 1.68 KB

WTPaymentDesign

Properties

Name Type Description Notes
border_color str
border_style_type PickVSPaymentDesignUpdateParamsExcludeKeyofVSPaymentDesignUpdateParamsIdBorderStyleType
border_size str
border_radius int
font_color str
font_type str
abbreviation str
acronym str
icon str
design_name str
display_name str
background_image_url str [optional]
company_logo_url str [optional]
employee_id str
id WTWalletPageViewId
merchant_id str
created_at datetime
updated_at datetime
is_active bool

Example

from wallet.models.wt_payment_design import WTPaymentDesign

# TODO update the JSON string below
json = "{}"
# create an instance of WTPaymentDesign from a JSON string
wt_payment_design_instance = WTPaymentDesign.from_json(json)
# print the JSON string representation of the object
print WTPaymentDesign.to_json()

# convert the object into a dict
wt_payment_design_dict = wt_payment_design_instance.to_dict()
# create an instance of WTPaymentDesign from a dict
wt_payment_design_form_dict = wt_payment_design.from_dict(wt_payment_design_dict)

[Back to Model list] [Back to API list] [Back to README]