Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 864 Bytes

CampaignTemplateParams.md

File metadata and controls

23 lines (16 loc) · 864 Bytes

TalonOne::CampaignTemplateParams

Properties

Name Type Description Notes
name String Name of the campaign template parameter.
type String Defines the type of parameter value.
description String Explains the meaning of this template parameter and the placeholder value that will define it. It is used on campaign creation from this template.
attribute_id Integer ID of the corresponding attribute. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::CampaignTemplateParams.new(name: discount_value,
                                 type: number,
                                 description: This is a template parameter of type `number`.,
                                 attribute_id: 42)