Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 865 Bytes

File metadata and controls

28 lines (19 loc) · 865 Bytes

StaticVoucherId

Properties

Name Type Description Notes

Example

from wallet.models.static_voucher_id import StaticVoucherId

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

# convert the object into a dict
static_voucher_id_dict = static_voucher_id_instance.to_dict()
# create an instance of StaticVoucherId from a dict
static_voucher_id_form_dict = static_voucher_id.from_dict(static_voucher_id_dict)

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