Skip to content

Key🔗

Definition🔗

type Key struct {
    Tick float64 `json:"tick"`
    Type string `json:"type"`
    Uid *string `json:"uid,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

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

Equals🔗

Equals tests the equality of two Key objects.

func (key *Key) Equals(other Key) bool

Validate🔗

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

func (key *Key) Validate() error

See also🔗