| Name |
Type |
Description |
Notes |
| name |
str |
The name of the campaign access group. |
|
| description |
str |
A longer description of the campaign access group. |
[optional] |
| subscribed_applications_ids |
List[int] |
A list of IDs of the Applications that this campaign access group is enabled for. |
[optional] |
| campaign_ids |
List[int] |
A list of IDs of the campaigns that are part of the campaign access group. |
[optional] |
from talon_one.models.update_campaign_group import UpdateCampaignGroup
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCampaignGroup from a JSON string
update_campaign_group_instance = UpdateCampaignGroup.from_json(json)
# print the JSON string representation of the object
print(UpdateCampaignGroup.to_json())
# convert the object into a dict
update_campaign_group_dict = update_campaign_group_instance.to_dict()
# create an instance of UpdateCampaignGroup from a dict
update_campaign_group_from_dict = UpdateCampaignGroup.from_dict(update_campaign_group_dict)
[Back to Model list] [Back to API list] [Back to README]