Skip to content

Filter🔗

Query filter representation.

Definition🔗

type Filter struct {
    // Filter key.
    Key string `json:"key"`
    // Filter operator.
    Operator string `json:"operator"`
    // Filter value.
    Value string `json:"value"`
    // Filter condition.
    Condition *string `json:"condition,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

UnmarshalJSONStrict implements a custom JSON unmarshalling logic to decode Filter from JSON.

Note: the unmarshalling done by this function is strict. It will fail over required fields being absent from the input, fields having an incorrect type, unexpected fields being present, …

func (filter *Filter) UnmarshalJSONStrict(raw []byte) error

Equals🔗

Equals tests the equality of two Filter objects.

func (filter *Filter) Equals(other Filter) bool

Validate🔗

Validate checks all the validation constraints that may be defined on Filter fields for violations and returns them.

func (filter *Filter) Validate() error

See also🔗