package models type FieldsType string const ( FieldTypeLeads FieldsType = "leads" FieldTypeCompany FieldsType = "company" FieldTypeContact FieldsType = "contact" ) type Company struct { } type Lead struct { } type Contact struct { }