Skip to content

Latest commit

 

History

History
56 lines (31 loc) · 1.64 KB

Operator.md

File metadata and controls

56 lines (31 loc) · 1.64 KB

Operator

Properties

Name Type Description Notes
Operator Pointer to string Strictly, this must be either `"OR"`, or `"AND"`. It can be used to compose Filters as part of a Filters object. [optional]

Methods

NewOperator

func NewOperator() *Operator

NewOperator instantiates a new Operator 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

NewOperatorWithDefaults

func NewOperatorWithDefaults() *Operator

NewOperatorWithDefaults instantiates a new Operator 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

GetOperator

func (o *Operator) GetOperator() string

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

GetOperatorOk

func (o *Operator) 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 *Operator) SetOperator(v string)

SetOperator sets Operator field to given value.

HasOperator

func (o *Operator) HasOperator() bool

HasOperator returns a boolean if a field has been set.

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