Skip to content

Latest commit

 

History

History
65 lines (34 loc) · 1.72 KB

FuncArgDef.md

File metadata and controls

65 lines (34 loc) · 1.72 KB

FuncArgDef

Properties

Name Type Description Notes
Type Pointer to string The type of value this argument expects.
Description Pointer to string A campaigner-friendly description of the argument, this will also be shown in the rule editor. [optional]

Methods

GetType

func (o *FuncArgDef) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *FuncArgDef) GetTypeOk() (string, bool)

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasType

func (o *FuncArgDef) HasType() bool

HasType returns a boolean if a field has been set.

SetType

func (o *FuncArgDef) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

GetDescription

func (o *FuncArgDef) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *FuncArgDef) GetDescriptionOk() (string, bool)

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasDescription

func (o *FuncArgDef) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescription

func (o *FuncArgDef) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

[Back to Model list] [Back to API list] [Back to README]