Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.12 KB

CreateSelfServeJourneyResponse.md

File metadata and controls

30 lines (20 loc) · 1.12 KB

CreateSelfServeJourneyResponse

Properties

Name Type Description Notes
activation_url str A JSON object containing store information

Example

from grabfood.models.create_self_serve_journey_response import CreateSelfServeJourneyResponse

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

# convert the object into a dict
create_self_serve_journey_response_dict = create_self_serve_journey_response_instance.to_dict()
# create an instance of CreateSelfServeJourneyResponse from a dict
create_self_serve_journey_response_from_dict = CreateSelfServeJourneyResponse.from_dict(create_self_serve_journey_response_dict)

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