2024-01-15 00:04:00 +03:00
|
|
|
package companies
|
|
|
|
|
2024-05-19 21:00:41 +03:00
|
|
|
import "surdeus.su/core/amo/common"
|
2024-01-15 00:04:00 +03:00
|
|
|
|
|
|
|
type Company struct {
|
2024-01-15 00:20:13 +03:00
|
|
|
Id int `json:"id"`
|
2024-01-15 00:04:00 +03:00
|
|
|
Name string `json:"name,omitempty"`
|
2024-01-15 00:20:13 +03:00
|
|
|
ResponsibleUserId int `json:"responsible_user_id,omitempty"`
|
|
|
|
GroupId int `json:"group_id,omitempty"`
|
2024-01-15 00:04:00 +03:00
|
|
|
CreatedBy int `json:"created_by,omitempty"`
|
|
|
|
UpdatedBy int `json:"updated_by,omitempty"`
|
|
|
|
CreatedAt int `json:"created_at,omitempty"`
|
|
|
|
UpdatedAt int `json:"updated_at,omitempty"`
|
|
|
|
ClosestTaskAt interface{} `json:"closest_task_at,omitempty"`
|
|
|
|
CustomFieldsValues []common.CustomFieldsValue `json:"custom_fields_values,omitempty"`
|
2024-01-15 00:20:13 +03:00
|
|
|
AccountId int `json:"account_id,omitempty"`
|
2024-01-15 00:04:00 +03:00
|
|
|
Links Links `json:"_links,omitempty"`
|
|
|
|
Embedded Embedded `json:"_embedded,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Self struct {
|
|
|
|
Href string `json:"href"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Links struct {
|
|
|
|
Self Self `json:"self"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Contacts struct {
|
2024-01-15 00:20:13 +03:00
|
|
|
Id int `json:"id"`
|
2024-01-15 00:04:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type Embedded struct {
|
|
|
|
Tags []interface{} `json:"tags"`
|
|
|
|
Contacts []*Contacts `json:"contacts"`
|
|
|
|
}
|