| Name |
Type |
Description |
Notes |
from wallet.models.vs_dynamic_voucher_status import VSDynamicVoucherStatus
# TODO update the JSON string below
json = "{}"
# create an instance of VSDynamicVoucherStatus from a JSON string
vs_dynamic_voucher_status_instance = VSDynamicVoucherStatus.from_json(json)
# print the JSON string representation of the object
print VSDynamicVoucherStatus.to_json()
# convert the object into a dict
vs_dynamic_voucher_status_dict = vs_dynamic_voucher_status_instance.to_dict()
# create an instance of VSDynamicVoucherStatus from a dict
vs_dynamic_voucher_status_form_dict = vs_dynamic_voucher_status.from_dict(vs_dynamic_voucher_status_dict)
[Back to Model list] [Back to API list] [Back to README]