Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.58 KB

PushIntegrationStatusWebhookRequest.md

File metadata and controls

32 lines (22 loc) · 1.58 KB

PushIntegrationStatusWebhookRequest

Properties

Name Type Description Notes
partner_merchant_id str The merchant's ID that is on the partner's database.
grab_merchant_id str The merchant's ID that is in GrabFood's database.
integration_status str The store integration status. - `INACTIVE`: Merchant integration deactivated - `ACTIVE`: Merchant integration activated - `SYNCING`: Merchant integration is syncing - `FAILED`: Merchant integration has failed

Example

from grabfood.models.push_integration_status_webhook_request import PushIntegrationStatusWebhookRequest

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

# convert the object into a dict
push_integration_status_webhook_request_dict = push_integration_status_webhook_request_instance.to_dict()
# create an instance of PushIntegrationStatusWebhookRequest from a dict
push_integration_status_webhook_request_from_dict = PushIntegrationStatusWebhookRequest.from_dict(push_integration_status_webhook_request_dict)

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