Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 991 Bytes

File metadata and controls

29 lines (20 loc) · 991 Bytes

CampaignCreateResponse

Properties

Name Type Description Notes
id int

Example

from upstream_api_client.models.campaign_create_response import CampaignCreateResponse

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

# convert the object into a dict
campaign_create_response_dict = campaign_create_response_instance.to_dict()
# create an instance of CampaignCreateResponse from a dict
campaign_create_response_from_dict = CampaignCreateResponse.from_dict(campaign_create_response_dict)

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