You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dine-in voucher campaign's ID in GrabFood's database.
[optional]
Example
fromgrabfood.models.redeem_dine_in_voucher_responseimportRedeemDineInVoucherResponse# TODO update the JSON string belowjson="{}"# create an instance of RedeemDineInVoucherResponse from a JSON stringredeem_dine_in_voucher_response_instance=RedeemDineInVoucherResponse.from_json(json)
# print the JSON string representation of the objectprint(RedeemDineInVoucherResponse.to_json())
# convert the object into a dictredeem_dine_in_voucher_response_dict=redeem_dine_in_voucher_response_instance.to_dict()
# create an instance of RedeemDineInVoucherResponse from a dictredeem_dine_in_voucher_response_from_dict=RedeemDineInVoucherResponse.from_dict(redeem_dine_in_voucher_response_dict)