Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1014 Bytes

CreateCampaignResponse.md

File metadata and controls

30 lines (20 loc) · 1014 Bytes

CreateCampaignResponse

Properties

Name Type Description Notes
id str The campaign's ID. [optional]

Example

from grabfood.models.create_campaign_response import CreateCampaignResponse

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

# convert the object into a dict
create_campaign_response_dict = create_campaign_response_instance.to_dict()
# create an instance of CreateCampaignResponse from a dict
create_campaign_response_from_dict = CreateCampaignResponse.from_dict(create_campaign_response_dict)

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