Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

CreateSelfServeJourneyRequestPartner.md

File metadata and controls

30 lines (21 loc) · 1.26 KB

CreateSelfServeJourneyRequestPartner

A JSON object containing store information

Properties

Name Type Description Notes
merchant_id str The merchant's ID that is on the partner's database.

Example

from grabfood.models.create_self_serve_journey_request_partner import CreateSelfServeJourneyRequestPartner

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

# convert the object into a dict
create_self_serve_journey_request_partner_dict = create_self_serve_journey_request_partner_instance.to_dict()
# create an instance of CreateSelfServeJourneyRequestPartner from a dict
create_self_serve_journey_request_partner_from_dict = CreateSelfServeJourneyRequestPartner.from_dict(create_self_serve_journey_request_partner_dict)

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