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
The ID of the parent group that contains the campaign evaluation group.
description
str
A description of the campaign evaluation group.
[optional]
evaluation_mode
str
The mode by which campaigns in the campaign evaluation group are evaluated.
evaluation_scope
str
The evaluation scope of the campaign evaluation group.
locked
bool
An indicator of whether the campaign evaluation group is locked for modification.
Example
fromtalon_one.models.update_campaign_evaluation_groupimportUpdateCampaignEvaluationGroup# TODO update the JSON string belowjson="{}"# create an instance of UpdateCampaignEvaluationGroup from a JSON stringupdate_campaign_evaluation_group_instance=UpdateCampaignEvaluationGroup.from_json(json)
# print the JSON string representation of the objectprint(UpdateCampaignEvaluationGroup.to_json())
# convert the object into a dictupdate_campaign_evaluation_group_dict=update_campaign_evaluation_group_instance.to_dict()
# create an instance of UpdateCampaignEvaluationGroup from a dictupdate_campaign_evaluation_group_from_dict=UpdateCampaignEvaluationGroup.from_dict(update_campaign_evaluation_group_dict)