Skip to content

Latest commit

 

History

History
119 lines (64 loc) · 3.31 KB

RulesEngineCriteria.md

File metadata and controls

119 lines (64 loc) · 3.31 KB

RulesEngineCriteria

Properties

Name Type Description Notes
Conditional string
Variable string
Operator string
InputValue Pointer to string [optional]

Methods

NewRulesEngineCriteria

func NewRulesEngineCriteria(conditional string, variable string, operator string, ) *RulesEngineCriteria

NewRulesEngineCriteria instantiates a new RulesEngineCriteria 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

NewRulesEngineCriteriaWithDefaults

func NewRulesEngineCriteriaWithDefaults() *RulesEngineCriteria

NewRulesEngineCriteriaWithDefaults instantiates a new RulesEngineCriteria 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

GetConditional

func (o *RulesEngineCriteria) GetConditional() string

GetConditional returns the Conditional field if non-nil, zero value otherwise.

GetConditionalOk

func (o *RulesEngineCriteria) GetConditionalOk() (*string, bool)

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

SetConditional

func (o *RulesEngineCriteria) SetConditional(v string)

SetConditional sets Conditional field to given value.

GetVariable

func (o *RulesEngineCriteria) GetVariable() string

GetVariable returns the Variable field if non-nil, zero value otherwise.

GetVariableOk

func (o *RulesEngineCriteria) GetVariableOk() (*string, bool)

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

SetVariable

func (o *RulesEngineCriteria) SetVariable(v string)

SetVariable sets Variable field to given value.

GetOperator

func (o *RulesEngineCriteria) GetOperator() string

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

GetOperatorOk

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

SetOperator

func (o *RulesEngineCriteria) SetOperator(v string)

SetOperator sets Operator field to given value.

GetInputValue

func (o *RulesEngineCriteria) GetInputValue() string

GetInputValue returns the InputValue field if non-nil, zero value otherwise.

GetInputValueOk

func (o *RulesEngineCriteria) GetInputValueOk() (*string, bool)

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

SetInputValue

func (o *RulesEngineCriteria) SetInputValue(v string)

SetInputValue sets InputValue field to given value.

HasInputValue

func (o *RulesEngineCriteria) HasInputValue() bool

HasInputValue returns a boolean if a field has been set.

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