Skip to content

BuilderQueryEditorOperator🔗

Definition🔗

type BuilderQueryEditorOperator struct {
    Name string `json:"name"`
    Value string `json:"value"`
    LabelValue *string `json:"labelValue,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

UnmarshalJSONStrict implements a custom JSON unmarshalling logic to decode BuilderQueryEditorOperator 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 (builderQueryEditorOperator *BuilderQueryEditorOperator) UnmarshalJSONStrict(raw []byte) error

Equals🔗

Equals tests the equality of two BuilderQueryEditorOperator objects.

func (builderQueryEditorOperator *BuilderQueryEditorOperator) Equals(other BuilderQueryEditorOperator) bool

Validate🔗

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

func (builderQueryEditorOperator *BuilderQueryEditorOperator) Validate() error

See also🔗