Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

WTQRCodeDesignUpdateParams

Properties

Name Type Description Notes
name object
serialized_json_configuration object Construct a type with a set of properties K of type T
serialized_json_border object Construct a type with a set of properties K of type T [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]