19 lines
516 B
Go
19 lines
516 B
Go
package models
|
|
|
|
type CompanyReq struct {
|
|
Fields CompanyFields `json:"fields"`
|
|
}
|
|
|
|
type CompanyFields struct {
|
|
Title string `json:"TITLE"`
|
|
AssignedByID int `json:"ASSIGNED_BY_ID,"`
|
|
Opened string `json:"OPENED"`
|
|
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"`
|
|
ContactID int32 `json:"CONTACT_ID"`
|
|
}
|