This request submits membership registration request to partner.
Name | Type | Description | Notes |
---|---|---|---|
member_id | str | The unique member ID on the partner's database. | [optional] |
grab_id | str | The id used to identify an unique grab user. | [optional] |
merchant_id | str | The merchant's ID that is in GrabFood's database. | [optional] |
action | str | Action completed in partner's webview. | [optional] |
from grabfood.models.notify_membership_webview_request import NotifyMembershipWebviewRequest
# TODO update the JSON string below
json = "{}"
# create an instance of NotifyMembershipWebviewRequest from a JSON string
notify_membership_webview_request_instance = NotifyMembershipWebviewRequest.from_json(json)
# print the JSON string representation of the object
print(NotifyMembershipWebviewRequest.to_json())
# convert the object into a dict
notify_membership_webview_request_dict = notify_membership_webview_request_instance.to_dict()
# create an instance of NotifyMembershipWebviewRequest from a dict
notify_membership_webview_request_from_dict = NotifyMembershipWebviewRequest.from_dict(notify_membership_webview_request_dict)