Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.48 KB

File metadata and controls

40 lines (31 loc) · 1.48 KB

GetCampaignResponse

Properties

Name Type Description Notes
id int
name str
description str [optional]
contact_name str [optional]
contact_email str [optional]
start_date datetime [optional]
end_date datetime [optional]
allocation str
location Location [optional]
summary SummaryGetCampaign
geometry object [optional]
stations List[StationsListResponseItem] [optional] [default to []]

Example

from upstream_api_client.models.get_campaign_response import GetCampaignResponse

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

# convert the object into a dict
get_campaign_response_dict = get_campaign_response_instance.to_dict()
# create an instance of GetCampaignResponse from a dict
get_campaign_response_from_dict = GetCampaignResponse.from_dict(get_campaign_response_dict)

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