Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 798 Bytes

FunctionDef.md

File metadata and controls

25 lines (18 loc) · 798 Bytes

TalonOne::FunctionDef

Properties

Name Type Description Notes
name String The function name used in Talang.
type String The type of this function argument.
description String A short description of the function. [optional]
help String Extended help text for the function. [optional]
args Array<FuncArgDef> An array of argument definitions.

Code Sample

require 'TalonOne'

instance = TalonOne::FunctionDef.new(name: null,
                                 type: null,
                                 description: null,
                                 help: null,
                                 args: null)