type
BlockType
type BlockType struct {
Key string `json:"key"`
Label string `json:"label"`
LabelTranslations map[string]string `json:"labelTranslations,omitempty"`
Fields []Field `json:"fields"`
}One normalized discriminated block layout.
Keystring- The Key value.
Labelstring- The Label value.
LabelTranslationsmap[string]string- The LabelTranslations value.
Fields[]Field- The Fields value.