You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A short description of the purpose of this collection.
[optional]
name
str
The name of this collection.
modified_by
int
ID of the user who last updated this effect if available.
[optional]
created_by
int
ID of the user who created this effect.
application_id
int
The ID of the Application that owns this entity.
[optional]
campaign_id
int
The ID of the campaign that owns this entity.
[optional]
Example
fromtalon_one.models.campaign_collection_without_payloadimportCampaignCollectionWithoutPayload# TODO update the JSON string belowjson="{}"# create an instance of CampaignCollectionWithoutPayload from a JSON stringcampaign_collection_without_payload_instance=CampaignCollectionWithoutPayload.from_json(json)
# print the JSON string representation of the objectprint(CampaignCollectionWithoutPayload.to_json())
# convert the object into a dictcampaign_collection_without_payload_dict=campaign_collection_without_payload_instance.to_dict()
# create an instance of CampaignCollectionWithoutPayload from a dictcampaign_collection_without_payload_from_dict=CampaignCollectionWithoutPayload.from_dict(campaign_collection_without_payload_dict)