Skip to content

Latest commit

 

History

History
166 lines (89 loc) · 4.46 KB

File metadata and controls

166 lines (89 loc) · 4.46 KB

EventFilter

Properties

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'.

Methods

NewEventFilter

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

NewEventFilterWithDefaults

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

GetType

func (o *EventFilter) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

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.

SetType

func (o *EventFilter) SetType(v string)

SetType sets Type field to given value.

GetAttribute

func (o *EventFilter) GetAttribute() string

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

GetAttributeOk

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.

SetAttribute

func (o *EventFilter) SetAttribute(v string)

SetAttribute sets Attribute field to given value.

HasAttribute

func (o *EventFilter) HasAttribute() bool

HasAttribute returns a boolean if a field has been set.

GetOp

func (o *EventFilter) GetOp() string

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

GetOpOk

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.

SetOp

func (o *EventFilter) SetOp(v string)

SetOp sets Op field to given value.

GetValues

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

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

GetValuesOk

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.

SetValues

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

SetValues sets Values field to given value.

GetContextKind

func (o *EventFilter) GetContextKind() string

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

GetContextKindOk

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.

SetContextKind

func (o *EventFilter) SetContextKind(v string)

SetContextKind sets ContextKind field to given value.

HasContextKind

func (o *EventFilter) HasContextKind() bool

HasContextKind returns a boolean if a field has been set.

GetNegate

func (o *EventFilter) GetNegate() bool

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

GetNegateOk

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.

SetNegate

func (o *EventFilter) SetNegate(v bool)

SetNegate sets Negate field to given value.

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