Name | Type | Description | Notes |
---|---|---|---|
IsOperand | Pointer to bool | always "false" for relations | [optional] [default to false] |
Relation | Pointer to string | "and", "or" | [optional] [default to "and"] |
Children | Pointer to []ConditionNode | [optional] |
func NewConditionRelation() *ConditionRelation
NewConditionRelation instantiates a new ConditionRelation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewConditionRelationWithDefaults() *ConditionRelation
NewConditionRelationWithDefaults instantiates a new ConditionRelation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ConditionRelation) GetIsOperand() bool
GetIsOperand returns the IsOperand field if non-nil, zero value otherwise.
func (o *ConditionRelation) GetIsOperandOk() (*bool, bool)
GetIsOperandOk returns a tuple with the IsOperand field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ConditionRelation) SetIsOperand(v bool)
SetIsOperand sets IsOperand field to given value.
func (o *ConditionRelation) HasIsOperand() bool
HasIsOperand returns a boolean if a field has been set.
func (o *ConditionRelation) GetRelation() string
GetRelation returns the Relation field if non-nil, zero value otherwise.
func (o *ConditionRelation) GetRelationOk() (*string, bool)
GetRelationOk returns a tuple with the Relation field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ConditionRelation) SetRelation(v string)
SetRelation sets Relation field to given value.
func (o *ConditionRelation) HasRelation() bool
HasRelation returns a boolean if a field has been set.
func (o *ConditionRelation) GetChildren() []*ConditionNode
GetChildren returns the Children field if non-nil, zero value otherwise.
func (o *ConditionRelation) GetChildrenOk() (*[]*ConditionNode, bool)
GetChildrenOk returns a tuple with the Children field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ConditionRelation) SetChildren(v []*ConditionNode)
SetChildren sets Children field to given value.
func (o *ConditionRelation) HasChildren() bool
HasChildren returns a boolean if a field has been set.