22 lines
636 B
Go
22 lines
636 B
Go
package models
|
|
|
|
type CreateContactReq struct {
|
|
Fields ContactFields `json:"fields"`
|
|
}
|
|
|
|
type ContactFields struct {
|
|
Name string `json:"NAME"`
|
|
SecondName string `json:"SECOND_NAME"`
|
|
LastName string `json:"LAST_NAME"`
|
|
TypeID string `json:"TYPE_ID"`
|
|
SourceID string `json:"SOURCE_ID"`
|
|
Opened string `json:"OPENED"`
|
|
CompanyIDs []int32 `json:"COMPANY_IDS"`
|
|
LeadID int32 `json:"LEAD_ID"`
|
|
UtmSource string `json:"UTM_SOURCE"`
|
|
UtmMedium string `json:"UTM_MEDIUM"`
|
|
UtmCampaign string `json:"UTM_CAMPAIGN"`
|
|
UtmContent string `json:"UTM_CONTENT"`
|
|
UtmTerm string `json:"UTM_TERM"`
|
|
}
|