Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.07 KB

File metadata and controls

35 lines (26 loc) · 1.07 KB

CampaignsIn

Properties

Name Type Description Notes
name str
contact_name str [optional]
contact_email str [optional]
description str [optional]
start_date datetime [optional]
end_date datetime [optional]
allocation str

Example

from upstream_api_client.models.campaigns_in import CampaignsIn

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

# convert the object into a dict
campaigns_in_dict = campaigns_in_instance.to_dict()
# create an instance of CampaignsIn from a dict
campaigns_in_from_dict = CampaignsIn.from_dict(campaigns_in_dict)

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