Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.58 KB

Filter.md

File metadata and controls

108 lines (59 loc) · 2.58 KB

Filter

Properties

Name Type Description Notes
Field Pointer to string [optional]
Operator Pointer to string [optional]
Value Pointer to string [optional]

Methods

NewFilter

func NewFilter() *Filter

NewFilter instantiates a new Filter 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

NewFilterWithDefaults

func NewFilterWithDefaults() *Filter

NewFilterWithDefaults instantiates a new Filter 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

GetField

func (o *Filter) GetField() string

GetField returns the Field field if non-nil, zero value otherwise.

GetFieldOk

func (o *Filter) GetFieldOk() (*string, bool)

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

SetField

func (o *Filter) SetField(v string)

SetField sets Field field to given value.

HasField

func (o *Filter) HasField() bool

HasField returns a boolean if a field has been set.

GetOperator

func (o *Filter) GetOperator() string

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

GetOperatorOk

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

SetOperator sets Operator field to given value.

HasOperator

func (o *Filter) HasOperator() bool

HasOperator returns a boolean if a field has been set.

GetValue

func (o *Filter) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *Filter) GetValueOk() (*string, bool)

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

SetValue

func (o *Filter) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *Filter) HasValue() bool

HasValue returns a boolean if a field has been set.

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