Information about GrabFood getting an OAuth access token from partners.
| Name | Type | Description | Notes |
|---|---|---|---|
| client_id | str | The client identifier issued to obtain the OAuth access token. | |
| client_secret | str | The client secret issued to obtain the OAuth access token. | |
| grant_type | str | Refers to the way an application gets OAuth access token. | |
| scope | str | A space delimited list of partner scopes. | [optional] |
from grabfood.models.partner_oauth_request import PartnerOauthRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PartnerOauthRequest from a JSON string
partner_oauth_request_instance = PartnerOauthRequest.from_json(json)
# print the JSON string representation of the object
print(PartnerOauthRequest.to_json())
# convert the object into a dict
partner_oauth_request_dict = partner_oauth_request_instance.to_dict()
# create an instance of PartnerOauthRequest from a dict
partner_oauth_request_from_dict = PartnerOauthRequest.from_dict(partner_oauth_request_dict)