Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.59 KB

RedeemDineInVoucherResponse.md

File metadata and controls

35 lines (25 loc) · 1.59 KB

RedeemDineInVoucherResponse

Properties

Name Type Description Notes
certificate_id str This certificateID is decoded from scanning the QR code, and 1:1 mapping with `voucherCode`. [optional]
voucher_code str A short code for the dine-in voucher purchased by the user. [optional]
voucher Voucher [optional]
redeem_result RedeemResult [optional]
merchant_id str The merchant's ID that is in GrabFood's database. [optional]
campaign_id str The dine-in voucher campaign's ID in GrabFood's database. [optional]

Example

from grabfood.models.redeem_dine_in_voucher_response import RedeemDineInVoucherResponse

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

# convert the object into a dict
redeem_dine_in_voucher_response_dict = redeem_dine_in_voucher_response_instance.to_dict()
# create an instance of RedeemDineInVoucherResponse from a dict
redeem_dine_in_voucher_response_from_dict = RedeemDineInVoucherResponse.from_dict(redeem_dine_in_voucher_response_dict)

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