Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 948 Bytes

SlotDef.md

File metadata and controls

27 lines (20 loc) · 948 Bytes

TalonOne::SlotDef

Properties

Name Type Description Notes
name String The dot-separated path to this slot for use in Talang.
type String The type of this slot, one of string, number, boolean, or list[type].
title String Campaigner-friendly name for the slot.
description String A short description of the slot. [optional]
help String Extended help text for the slot. [optional]
writable Boolean Whether or not this slot can be updated by rule effects.

Code Sample

require 'TalonOne'

instance = TalonOne::SlotDef.new(name: null,
                                 type: null,
                                 title: null,
                                 description: null,
                                 help: null,
                                 writable: null)