| Name | Type | Description | Notes |
|---|---|---|---|
| Id | Pointer to string | [optional] | |
| Attribute | string | ||
| Op | string | ||
| Values | []interface{} | ||
| ContextKind | Pointer to string | [optional] | |
| Negate | bool |
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
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
func (o *Clause) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
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.
func (o *Clause) SetId(v string)
SetId sets Id field to given value.
func (o *Clause) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Clause) GetAttribute() string
GetAttribute returns the Attribute field if non-nil, zero value otherwise.
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.
func (o *Clause) SetAttribute(v string)
SetAttribute sets Attribute field to given value.
func (o *Clause) GetOp() string
GetOp returns the Op field if non-nil, zero value otherwise.
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.
func (o *Clause) SetOp(v string)
SetOp sets Op field to given value.
func (o *Clause) GetValues() []interface{}
GetValues returns the Values field if non-nil, zero value otherwise.
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.
func (o *Clause) SetValues(v []interface{})
SetValues sets Values field to given value.
func (o *Clause) GetContextKind() string
GetContextKind returns the ContextKind field if non-nil, zero value otherwise.
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.
func (o *Clause) SetContextKind(v string)
SetContextKind sets ContextKind field to given value.
func (o *Clause) HasContextKind() bool
HasContextKind returns a boolean if a field has been set.
func (o *Clause) GetNegate() bool
GetNegate returns the Negate field if non-nil, zero value otherwise.
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.
func (o *Clause) SetNegate(v bool)
SetNegate sets Negate field to given value.