Skip to content

Latest commit

 

History

History
221 lines (118 loc) · 5.99 KB

NewCustomEffect.md

File metadata and controls

221 lines (118 loc) · 5.99 KB

NewCustomEffect

Properties

Name Type Description Notes
ApplicationIds Pointer to []int32 The IDs of the Applications that are related to this entity.
IsPerItem Pointer to bool Indicates if this effect is per item or not. [optional]
Name Pointer to string The name of this effect.
Title Pointer to string The title of this effect.
Payload Pointer to string The JSON payload of this effect.
Description Pointer to string The description of this effect. [optional]
Enabled Pointer to bool Determines if this effect is active.
Params Pointer to []TemplateArgDef Array of template argument definitions. [optional]

Methods

GetApplicationIds

func (o *NewCustomEffect) GetApplicationIds() []int32

GetApplicationIds returns the ApplicationIds field if non-nil, zero value otherwise.

GetApplicationIdsOk

func (o *NewCustomEffect) GetApplicationIdsOk() ([]int32, bool)

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

HasApplicationIds

func (o *NewCustomEffect) HasApplicationIds() bool

HasApplicationIds returns a boolean if a field has been set.

SetApplicationIds

func (o *NewCustomEffect) SetApplicationIds(v []int32)

SetApplicationIds gets a reference to the given []int32 and assigns it to the ApplicationIds field.

GetIsPerItem

func (o *NewCustomEffect) GetIsPerItem() bool

GetIsPerItem returns the IsPerItem field if non-nil, zero value otherwise.

GetIsPerItemOk

func (o *NewCustomEffect) GetIsPerItemOk() (bool, bool)

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

HasIsPerItem

func (o *NewCustomEffect) HasIsPerItem() bool

HasIsPerItem returns a boolean if a field has been set.

SetIsPerItem

func (o *NewCustomEffect) SetIsPerItem(v bool)

SetIsPerItem gets a reference to the given bool and assigns it to the IsPerItem field.

GetName

func (o *NewCustomEffect) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *NewCustomEffect) 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.

HasName

func (o *NewCustomEffect) HasName() bool

HasName returns a boolean if a field has been set.

SetName

func (o *NewCustomEffect) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

GetTitle

func (o *NewCustomEffect) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *NewCustomEffect) GetTitleOk() (string, bool)

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

HasTitle

func (o *NewCustomEffect) HasTitle() bool

HasTitle returns a boolean if a field has been set.

SetTitle

func (o *NewCustomEffect) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

GetPayload

func (o *NewCustomEffect) GetPayload() string

GetPayload returns the Payload field if non-nil, zero value otherwise.

GetPayloadOk

func (o *NewCustomEffect) GetPayloadOk() (string, bool)

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

HasPayload

func (o *NewCustomEffect) HasPayload() bool

HasPayload returns a boolean if a field has been set.

SetPayload

func (o *NewCustomEffect) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

GetDescription

func (o *NewCustomEffect) GetDescription() string

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

GetDescriptionOk

func (o *NewCustomEffect) 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 *NewCustomEffect) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescription

func (o *NewCustomEffect) SetDescription(v string)

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

GetEnabled

func (o *NewCustomEffect) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *NewCustomEffect) GetEnabledOk() (bool, bool)

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

HasEnabled

func (o *NewCustomEffect) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

SetEnabled

func (o *NewCustomEffect) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

GetParams

func (o *NewCustomEffect) GetParams() []TemplateArgDef

GetParams returns the Params field if non-nil, zero value otherwise.

GetParamsOk

func (o *NewCustomEffect) GetParamsOk() ([]TemplateArgDef, bool)

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

HasParams

func (o *NewCustomEffect) HasParams() bool

HasParams returns a boolean if a field has been set.

SetParams

func (o *NewCustomEffect) SetParams(v []TemplateArgDef)

SetParams gets a reference to the given []TemplateArgDef and assigns it to the Params field.

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