scope_metadata.go 278 B

12345678910
  1. package report
  2. type MetadataRow struct {
  3. ID string `json:"id"`
  4. Label string `json:"label"`
  5. Value string `json:"value"`
  6. Priority float64 `json:"priority,omitempty"`
  7. Datatype string `json:"dataType,omitempty"`
  8. Truncate int `json:"truncate,omitempty"`
  9. }