Skip to content

Latest commit

 

History

History
117 lines (62 loc) · 3.12 KB

CampaignSetBranchNode.md

File metadata and controls

117 lines (62 loc) · 3.12 KB

CampaignSetBranchNode

Properties

Name Type Description Notes
Type Pointer to string Indicates the node type.
Name Pointer to string Name of the set
Operator Pointer to string How does the set operates on its elements.
Elements Pointer to []CampaignSetNode Child elements of this set.

Methods

GetType

func (o *CampaignSetBranchNode) GetType() string

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

GetTypeOk

func (o *CampaignSetBranchNode) 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 *CampaignSetBranchNode) HasType() bool

HasType returns a boolean if a field has been set.

SetType

func (o *CampaignSetBranchNode) SetType(v string)

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

GetName

func (o *CampaignSetBranchNode) GetName() string

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

GetNameOk

func (o *CampaignSetBranchNode) 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 *CampaignSetBranchNode) HasName() bool

HasName returns a boolean if a field has been set.

SetName

func (o *CampaignSetBranchNode) SetName(v string)

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

GetOperator

func (o *CampaignSetBranchNode) GetOperator() string

GetOperator returns the Operator field if non-nil, zero value otherwise.

GetOperatorOk

func (o *CampaignSetBranchNode) GetOperatorOk() (string, bool)

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

HasOperator

func (o *CampaignSetBranchNode) HasOperator() bool

HasOperator returns a boolean if a field has been set.

SetOperator

func (o *CampaignSetBranchNode) SetOperator(v string)

SetOperator gets a reference to the given string and assigns it to the Operator field.

GetElements

func (o *CampaignSetBranchNode) GetElements() []CampaignSetNode

GetElements returns the Elements field if non-nil, zero value otherwise.

GetElementsOk

func (o *CampaignSetBranchNode) GetElementsOk() ([]CampaignSetNode, bool)

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

HasElements

func (o *CampaignSetBranchNode) HasElements() bool

HasElements returns a boolean if a field has been set.

SetElements

func (o *CampaignSetBranchNode) SetElements(v []CampaignSetNode)

SetElements gets a reference to the given []CampaignSetNode and assigns it to the Elements field.

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