Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

VoucherDescriptionInfo.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

VoucherDescriptionInfo

A JSON object containing dine-in voucher's description information.

Properties

Name Type Description Notes
text str The description of the dine-in voucher. [optional]

Example

from grabfood.models.voucher_description_info import VoucherDescriptionInfo

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

# convert the object into a dict
voucher_description_info_dict = voucher_description_info_instance.to_dict()
# create an instance of VoucherDescriptionInfo from a dict
voucher_description_info_from_dict = VoucherDescriptionInfo.from_dict(voucher_description_info_dict)

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