Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.62 KB

File metadata and controls

41 lines (32 loc) · 1.62 KB

WTPaymentDesignCreateParams

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]

Example

from wallet.models.wt_payment_design_create_params import WTPaymentDesignCreateParams

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

# convert the object into a dict
wt_payment_design_create_params_dict = wt_payment_design_create_params_instance.to_dict()
# create an instance of WTPaymentDesignCreateParams from a dict
wt_payment_design_create_params_form_dict = wt_payment_design_create_params.from_dict(wt_payment_design_create_params_dict)

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