| 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 |
|
|
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]