Skip to content

PipelineVariable🔗

Definition🔗

type PipelineVariable struct {
    Name string `json:"name"`
    PipelineAgg string `json:"pipelineAgg"`
}

Methods🔗

UnmarshalJSONStrict🔗

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

Equals🔗

Equals tests the equality of two PipelineVariable objects.

func (pipelineVariable *PipelineVariable) Equals(other PipelineVariable) bool

Validate🔗

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

func (pipelineVariable *PipelineVariable) Validate() error

See also🔗