Skip to content

CellValues🔗

Controls cell value options

Definition🔗

type CellValues struct {
    // Controls the cell value unit
    Unit *string `json:"unit,omitempty"`
    // Controls the number of decimals for cell values
    Decimals *float32 `json:"decimals,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

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

Equals🔗

Equals tests the equality of two CellValues objects.

func (cellValues *CellValues) Equals(other CellValues) bool

Validate🔗

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

func (cellValues *CellValues) Validate() error

See also🔗