Skip to content

ScaleDimensionConfig🔗

Definition🔗

type ScaleDimensionConfig struct {
    Min float64 `json:"min"`
    Max float64 `json:"max"`
    Fixed *float64 `json:"fixed,omitempty"`
    // fixed: T -- will be added by each element
    Field *string `json:"field,omitempty"`
    // | *"linear"
    Mode *common.ScaleDimensionMode `json:"mode,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

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

Equals🔗

Equals tests the equality of two ScaleDimensionConfig objects.

func (scaleDimensionConfig *ScaleDimensionConfig) Equals(other ScaleDimensionConfig) bool

Validate🔗

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

func (scaleDimensionConfig *ScaleDimensionConfig) Validate() error

See also🔗