bitrix/internal/models/getListFields.go

19 lines
243 B
Go
Raw Normal View History

2024-09-20 14:41:33 +00:00
package models
type FieldsType string
const (
FieldTypeLeads FieldsType = "leads"
FieldTypeCompany FieldsType = "company"
FieldTypeContact FieldsType = "contact"
)
type Company struct {
}
type Lead struct {
}
type Contact struct {
}