| Name | Type | Description | Notes |
|---|
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)