TemplateListParamsResponse.go 579 B

1234567891011121314151617
  1. package common
  2. type TemplateListParamsResponse struct {
  3. // 【模板参数名称】模板参数名称
  4. Name string `json:"name,omitempty"`
  5. // 【参数类型】参数类型
  6. Type_ string `json:"type,omitempty"`
  7. // 【是否必填】是否必填 【回参说明】 true 必填;false 非必填
  8. Required *bool `json:"required,omitempty"`
  9. // 【默认值】默认值
  10. DefaultValue string `json:"defaultValue,omitempty"`
  11. // 【模板参数Key值】模板参数Key值
  12. ParamKey string `json:"paramKey,omitempty"`
  13. // 【参数ID】参数ID
  14. Id string `json:"id,omitempty"`
  15. }