Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.51 KB

CampaignEvaluationGroup.md

File metadata and controls

31 lines (24 loc) · 1.51 KB

TalonOne::CampaignEvaluationGroup

Properties

Name Type Description Notes
application_id Integer The ID of the application that owns this entity.
name String The name of the campaign evaluation group.
parent_id Integer The ID of the parent group that contains the campaign evaluation group.
description String A description of the campaign evaluation group. [optional]
evaluation_mode String The mode by which campaigns in the campaign evaluation group are evaluated.
evaluation_scope String The evaluation scope of the campaign evaluation group.
locked Boolean An indicator of whether the campaign evaluation group is locked for modification.
id Integer Unique ID for this entity. Not to be confused with the Integration ID, which is set by your integration layer and used in most endpoints.

Code Sample

require 'TalonOne'

instance = TalonOne::CampaignEvaluationGroup.new(application_id: 322,
                                 name: Summer campaigns,
                                 parent_id: 2,
                                 description: This campaign evaluation group contains all campaigns that are running in the summer.,
                                 evaluation_mode: null,
                                 evaluation_scope: null,
                                 locked: false,
                                 id: 6)