| 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.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]