Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.41 KB

File metadata and controls

39 lines (30 loc) · 1.41 KB

WTQRCodeDesignUpdateParams

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]

Example

from wallet.models.wtqr_code_design_update_params import WTQRCodeDesignUpdateParams

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

# convert the object into a dict
wtqr_code_design_update_params_dict = wtqr_code_design_update_params_instance.to_dict()
# create an instance of WTQRCodeDesignUpdateParams from a dict
wtqr_code_design_update_params_form_dict = wtqr_code_design_update_params.from_dict(wtqr_code_design_update_params_dict)

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