Dine in voucher redemption
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. |
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)