| Name | Type | Description | Notes |
|---|---|---|---|
| type | str |
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)