Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

RedeemDineInVoucherRequest.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

RedeemDineInVoucherRequest

Dine in voucher redemption

Properties

Name Type Description Notes
certificate_id str This certificateID is decoded from scanning the QR code, and 1:1 mapping with `voucherCode`.
merchant_id str The merchant's ID that is in GrabFood's database.

Example

from grabfood.models.redeem_dine_in_voucher_request import RedeemDineInVoucherRequest

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

# convert the object into a dict
redeem_dine_in_voucher_request_dict = redeem_dine_in_voucher_request_instance.to_dict()
# create an instance of RedeemDineInVoucherRequest from a dict
redeem_dine_in_voucher_request_from_dict = RedeemDineInVoucherRequest.from_dict(redeem_dine_in_voucher_request_dict)

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