Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

CampaignTemplateCollection

Properties

Name Type Description Notes
name str The name of this collection.
description str A short description of the purpose of this collection. [optional]

Example

from talon_one.models.campaign_template_collection import CampaignTemplateCollection

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

# convert the object into a dict
campaign_template_collection_dict = campaign_template_collection_instance.to_dict()
# create an instance of CampaignTemplateCollection from a dict
campaign_template_collection_from_dict = CampaignTemplateCollection.from_dict(campaign_template_collection_dict)

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