type
CodeField
type CodeField struct {
Language string `json:"language,omitempty"`
MinLength *int `json:"minLength,omitempty"`
MaxLength *int `json:"maxLength,omitempty"`
}Code editor language plus string length bounds.
Languagestring- The Language value.
MinLength*int- The MinLength value.
MaxLength*int- The MaxLength value.