Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.45 KB

File metadata and controls

44 lines (35 loc) · 1.45 KB

QRCodeDesign

Properties

Name Type Description Notes
name str
size int
margin int
is_margin_white bool
corner_radius int
color_dark_hex str
color_light_hex str
background_dimming_hex str
logo_image_url str [optional]
background_image_url str [optional]
animated_gif_background_url str [optional]
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

Example

from wallet.models.qr_code_design import QRCodeDesign

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

# convert the object into a dict
qr_code_design_dict = qr_code_design_instance.to_dict()
# create an instance of QRCodeDesign from a dict
qr_code_design_form_dict = qr_code_design.from_dict(qr_code_design_dict)

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