2024-09-20 14:41:33 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type FieldsType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
FieldTypeLeads FieldsType = "leads"
|
|
|
|
FieldTypeCompany FieldsType = "company"
|
|
|
|
FieldTypeContact FieldsType = "contact"
|
2024-09-22 08:13:04 +00:00
|
|
|
FieldTypeDeal FieldsType = "deal"
|
2024-09-20 14:41:33 +00:00
|
|
|
)
|
|
|
|
|
2024-09-22 08:13:04 +00:00
|
|
|
type CompanyFields struct {
|
2024-09-20 14:41:33 +00:00
|
|
|
}
|
|
|
|
|
2024-09-22 08:13:04 +00:00
|
|
|
type LeadFields struct {
|
2024-09-20 14:41:33 +00:00
|
|
|
}
|
|
|
|
|
2024-09-22 08:13:04 +00:00
|
|
|
type ContactFields struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
type DealFields struct {
|
2024-09-20 14:41:33 +00:00
|
|
|
}
|