| Name | Type | Description | Notes |
|---|---|---|---|
| Type | string | Filter type. One of [contextAttribute, eventProperty, group] | |
| Attribute | Pointer to string | If not a group node, the context attribute name or event property name to filter on | [optional] |
| Op | string | ||
| Values | []interface{} | The context attribute / event property values or group member nodes. Numeric values must not exceed 14 decimal places. | |
| ContextKind | Pointer to string | For context attribute filters, the context kind. | [optional] |
| Negate | bool | If set, then take the inverse of the operator. 'in' becomes 'not in'. |
func NewEventFilter(type_ string, op string, values []interface{}, negate bool, ) *EventFilter
NewEventFilter instantiates a new EventFilter 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 NewEventFilterWithDefaults() *EventFilter
NewEventFilterWithDefaults instantiates a new EventFilter 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 *EventFilter) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *EventFilter) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EventFilter) SetType(v string)
SetType sets Type field to given value.
func (o *EventFilter) GetAttribute() string
GetAttribute returns the Attribute field if non-nil, zero value otherwise.
func (o *EventFilter) 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 *EventFilter) SetAttribute(v string)
SetAttribute sets Attribute field to given value.
func (o *EventFilter) HasAttribute() bool
HasAttribute returns a boolean if a field has been set.
func (o *EventFilter) GetOp() string
GetOp returns the Op field if non-nil, zero value otherwise.
func (o *EventFilter) 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 *EventFilter) SetOp(v string)
SetOp sets Op field to given value.
func (o *EventFilter) GetValues() []interface{}
GetValues returns the Values field if non-nil, zero value otherwise.
func (o *EventFilter) 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 *EventFilter) SetValues(v []interface{})
SetValues sets Values field to given value.
func (o *EventFilter) GetContextKind() string
GetContextKind returns the ContextKind field if non-nil, zero value otherwise.
func (o *EventFilter) 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 *EventFilter) SetContextKind(v string)
SetContextKind sets ContextKind field to given value.
func (o *EventFilter) HasContextKind() bool
HasContextKind returns a boolean if a field has been set.
func (o *EventFilter) GetNegate() bool
GetNegate returns the Negate field if non-nil, zero value otherwise.
func (o *EventFilter) 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 *EventFilter) SetNegate(v bool)
SetNegate sets Negate field to given value.