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]
Example
fromtalon_one.models.campaign_template_collectionimportCampaignTemplateCollection# TODO update the JSON string belowjson="{}"# create an instance of CampaignTemplateCollection from a JSON stringcampaign_template_collection_instance=CampaignTemplateCollection.from_json(json)
# print the JSON string representation of the objectprint(CampaignTemplateCollection.to_json())
# convert the object into a dictcampaign_template_collection_dict=campaign_template_collection_instance.to_dict()
# create an instance of CampaignTemplateCollection from a dictcampaign_template_collection_from_dict=CampaignTemplateCollection.from_dict(campaign_template_collection_dict)