package monitoring type ReadListDto struct { ReferenceType ReferenceType `json:"-"` PathValue1 string `json:"-"` PathValue2 string `json:"-"` PathValue3 string `json:"-"` } type ReferenceType string const ( RTVisit ReferenceType = "visit" RTHist ReferenceType = "hist" )