Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.28 KB

TemplateArgDef.md

File metadata and controls

29 lines (22 loc) · 1.28 KB

TalonOne::TemplateArgDef

Properties

Name Type Description Notes
type String The type of value this argument expects.
description String A campaigner-friendly description of the argument, this will also be shown in the rule editor. [optional]
title String A campaigner friendly name for the argument, this will be shown in the rule editor.
ui Object Arbitrary metadata that may be used to render an input for this argument.
key String The identifier for the associated value within the JSON object. [optional]
picklist_id Integer ID of the picklist linked to a template. [optional]
restricted_by_picklist Boolean Whether or not this attribute's value is restricted by picklist (`picklist` property) [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::TemplateArgDef.new(type: null,
                                 description: null,
                                 title: null,
                                 ui: null,
                                 key: null,
                                 picklist_id: null,
                                 restricted_by_picklist: null)