Skip to content

Latest commit

 

History

History
166 lines (89 loc) · 3.89 KB

File metadata and controls

166 lines (89 loc) · 3.89 KB

Clause

Properties

Name Type Description Notes
Id Pointer to string [optional]
Attribute string
Op string
Values []interface{}
ContextKind Pointer to string [optional]
Negate bool

Methods

NewClause

func NewClause(attribute string, op string, values []interface{}, negate bool, ) *Clause

NewClause instantiates a new Clause 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

NewClauseWithDefaults

func NewClauseWithDefaults() *Clause

NewClauseWithDefaults instantiates a new Clause 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

GetId

func (o *Clause) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Clause) GetIdOk() (*string, bool)

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

SetId

func (o *Clause) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *Clause) HasId() bool

HasId returns a boolean if a field has been set.

GetAttribute

func (o *Clause) GetAttribute() string

GetAttribute returns the Attribute field if non-nil, zero value otherwise.

GetAttributeOk

func (o *Clause) GetAttributeOk() (*string, bool)

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

SetAttribute

func (o *Clause) SetAttribute(v string)

SetAttribute sets Attribute field to given value.

GetOp

func (o *Clause) GetOp() string

GetOp returns the Op field if non-nil, zero value otherwise.

GetOpOk

func (o *Clause) GetOpOk() (*string, bool)

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

SetOp

func (o *Clause) SetOp(v string)

SetOp sets Op field to given value.

GetValues

func (o *Clause) GetValues() []interface{}

GetValues returns the Values field if non-nil, zero value otherwise.

GetValuesOk

func (o *Clause) GetValuesOk() (*[]interface{}, bool)

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

SetValues

func (o *Clause) SetValues(v []interface{})

SetValues sets Values field to given value.

GetContextKind

func (o *Clause) GetContextKind() string

GetContextKind returns the ContextKind field if non-nil, zero value otherwise.

GetContextKindOk

func (o *Clause) GetContextKindOk() (*string, bool)

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

SetContextKind

func (o *Clause) SetContextKind(v string)

SetContextKind sets ContextKind field to given value.

HasContextKind

func (o *Clause) HasContextKind() bool

HasContextKind returns a boolean if a field has been set.

GetNegate

func (o *Clause) GetNegate() bool

GetNegate returns the Negate field if non-nil, zero value otherwise.

GetNegateOk

func (o *Clause) GetNegateOk() (*bool, bool)

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

SetNegate

func (o *Clause) SetNegate(v bool)

SetNegate sets Negate field to given value.

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