36 lines
809 B
Go
36 lines
809 B
Go
|
package types
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
// Lead is a first-class object type
|
||
|
type Lead struct {
|
||
|
ID string
|
||
|
Address Address
|
||
|
Company string
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
Description string
|
||
|
Email string
|
||
|
FirstName string
|
||
|
LastName string
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
MobilePhone string
|
||
|
Name string
|
||
|
OwnerID string
|
||
|
PartnerAccountID string
|
||
|
Phone string
|
||
|
ProductID string
|
||
|
RefererURL string
|
||
|
Status string
|
||
|
TenantID string
|
||
|
Title string
|
||
|
Type string
|
||
|
UTMCampaign string
|
||
|
UTMContent string
|
||
|
UTMMedium string
|
||
|
UTMSource string
|
||
|
UTMTerm string
|
||
|
Website string
|
||
|
}
|