Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

PartnerOauthRequest

Information about GrabFood getting an OAuth access token from partners.

Properties

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]

Example

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)

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