Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

CampaignSetNode

Properties

Name Type Description Notes
type str

Example

from talon_one.models.campaign_set_node import CampaignSetNode

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

# convert the object into a dict
campaign_set_node_dict = campaign_set_node_instance.to_dict()
# create an instance of CampaignSetNode from a dict
campaign_set_node_from_dict = CampaignSetNode.from_dict(campaign_set_node_dict)

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