| 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] |
| id |
AmenityId |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
| is_active |
bool |
|
|
| merchant_id |
str |
|
|
from wallet.models.wtqr_code_design import WTQRCodeDesign
# TODO update the JSON string below
json = "{}"
# create an instance of WTQRCodeDesign from a JSON string
wtqr_code_design_instance = WTQRCodeDesign.from_json(json)
# print the JSON string representation of the object
print WTQRCodeDesign.to_json()
# convert the object into a dict
wtqr_code_design_dict = wtqr_code_design_instance.to_dict()
# create an instance of WTQRCodeDesign from a dict
wtqr_code_design_form_dict = wtqr_code_design.from_dict(wtqr_code_design_dict)
[Back to Model list] [Back to API list] [Back to README]