type
SelectChoice
type SelectChoice struct {
Value string `json:"value"`
Label string `json:"label"`
LabelTranslations map[string]string `json:"labelTranslations,omitempty"`
}One normalized select value and label.
Valuestring- The Value value.
Labelstring- The Label value.
LabelTranslationsmap[string]string- The LabelTranslations value.