type
SelectOption
One normalized select value and label.
Properties
| Property | Type | Description |
|---|---|---|
Value | string | The Value value. |
Label | string | The Label value. |
LabelTranslations | map[string]string | The LabelTranslations value. |
Full signature
type SelectOption struct {
Value string `json:"value"`
Label string `json:"label"`
LabelTranslations map[string]string `json:"labelTranslations,omitempty"`
}