Name | Type | Description | Notes |
---|---|---|---|
Name | Pointer to string | The function name used in Talang. | |
Type | Pointer to string | The type of this function argument. | |
Description | Pointer to string | A short description of the function. | [optional] |
Help | Pointer to string | Extended help text for the function. | [optional] |
Args | Pointer to []FuncArgDef | An array of argument definitions. |
func (o *FunctionDef) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *FunctionDef) GetNameOk() (string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionDef) HasName() bool
HasName returns a boolean if a field has been set.
func (o *FunctionDef) SetName(v string)
SetName gets a reference to the given string and assigns it to the Name field.
func (o *FunctionDef) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *FunctionDef) 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.
func (o *FunctionDef) HasType() bool
HasType returns a boolean if a field has been set.
func (o *FunctionDef) SetType(v string)
SetType gets a reference to the given string and assigns it to the Type field.
func (o *FunctionDef) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *FunctionDef) 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.
func (o *FunctionDef) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *FunctionDef) SetDescription(v string)
SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *FunctionDef) GetHelp() string
GetHelp returns the Help field if non-nil, zero value otherwise.
func (o *FunctionDef) GetHelpOk() (string, bool)
GetHelpOk returns a tuple with the Help field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionDef) HasHelp() bool
HasHelp returns a boolean if a field has been set.
func (o *FunctionDef) SetHelp(v string)
SetHelp gets a reference to the given string and assigns it to the Help field.
func (o *FunctionDef) GetArgs() []FuncArgDef
GetArgs returns the Args field if non-nil, zero value otherwise.
func (o *FunctionDef) GetArgsOk() ([]FuncArgDef, bool)
GetArgsOk returns a tuple with the Args field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionDef) HasArgs() bool
HasArgs returns a boolean if a field has been set.
func (o *FunctionDef) SetArgs(v []FuncArgDef)
SetArgs gets a reference to the given []FuncArgDef and assigns it to the Args field.