diff --git a/api/crm/crm_models/account.go b/api/crm/crm_models/account.go index f3eb394..cd36a1c 100644 --- a/api/crm/crm_models/account.go +++ b/api/crm/crm_models/account.go @@ -43,6 +43,9 @@ type Account struct { // Contact ID BillingContactID *string `json:"BillingContactID,omitempty"` + // Channels + Channels *string `json:"Channels,omitempty"` + // Closed Date ClosedDate *string `json:"ClosedDate,omitempty"` diff --git a/api/crm/crm_models/contact.go b/api/crm/crm_models/contact.go index bf80faa..5a592c7 100644 --- a/api/crm/crm_models/contact.go +++ b/api/crm/crm_models/contact.go @@ -34,6 +34,9 @@ type Contact struct { // Birthdate BirthDate *string `json:"BirthDate,omitempty"` + // Channels + Channels *string `json:"Channels,omitempty"` + // Created By User ID CreatedByID *string `json:"CreatedByID,omitempty"` diff --git a/api/sfgate/sfgate_models/account.go b/api/sfgate/sfgate_models/account.go index c302519..5c728f6 100644 --- a/api/sfgate/sfgate_models/account.go +++ b/api/sfgate/sfgate_models/account.go @@ -43,6 +43,9 @@ type Account struct { // Contact ID BillingContactID *string `json:"BillingContactID,omitempty"` + // Marketing Channels (Multiselect Picklist) + Channels *string `json:"Channels,omitempty"` + // Closed Date ClosedDate *string `json:"ClosedDate,omitempty"` diff --git a/api/sfgate/sfgate_models/contact.go b/api/sfgate/sfgate_models/contact.go index 8068de9..525c331 100644 --- a/api/sfgate/sfgate_models/contact.go +++ b/api/sfgate/sfgate_models/contact.go @@ -34,6 +34,9 @@ type Contact struct { // Birthdate BirthDate *string `json:"BirthDate,omitempty"` + // Marketing Channels (Multiselect Picklist) + Channels *string `json:"Channels,omitempty"` + // Created By User ID CreatedByID *string `json:"CreatedByID,omitempty"` diff --git a/swagger/defs/account.yaml b/swagger/defs/account.yaml index 6a1b859..0c6a983 100644 --- a/swagger/defs/account.yaml +++ b/swagger/defs/account.yaml @@ -27,6 +27,10 @@ Account: description: Contact ID type: string x-nullable: true + Channels: + description: Channels + type: string + x-nullable: true ClosedDate: description: Closed Date type: string diff --git a/swagger/defs/contact.yaml b/swagger/defs/contact.yaml index 88d859a..1e1225c 100644 --- a/swagger/defs/contact.yaml +++ b/swagger/defs/contact.yaml @@ -19,6 +19,10 @@ Contact: description: Birthdate type: string x-nullable: true + Channels: + description: Channels + type: string + x-nullable: true CrunchbaseURL: type: string x-nullable: true diff --git a/swagger/external/sf-gate-vernonkeenan.yaml b/swagger/external/sf-gate-vernonkeenan.yaml index 9420ea6..5d0c583 100644 --- a/swagger/external/sf-gate-vernonkeenan.yaml +++ b/swagger/external/sf-gate-vernonkeenan.yaml @@ -2909,6 +2909,10 @@ definitions: description: Contact ID type: string x-nullable: true + Channels: + description: Marketing Channels (Multiselect Picklist) + type: string + x-nullable: true ClosedDate: description: Closed Date type: string @@ -3667,6 +3671,10 @@ definitions: description: Birthdate type: string x-nullable: true + Channels: + description: Marketing Channels (Multiselect Picklist) + type: string + x-nullable: true CreatedByID: description: Created By User ID type: string diff --git a/swagger/sf-gate-vernonkeenan.yaml b/swagger/sf-gate-vernonkeenan.yaml index 521bea7..de1f757 100644 --- a/swagger/sf-gate-vernonkeenan.yaml +++ b/swagger/sf-gate-vernonkeenan.yaml @@ -2909,6 +2909,10 @@ definitions: description: Contact ID type: string x-nullable: true + Channels: + description: Marketing Channels (Multiselect Picklist) + type: string + x-nullable: true ClosedDate: description: Closed Date type: string @@ -3667,6 +3671,10 @@ definitions: description: Birthdate type: string x-nullable: true + Channels: + description: Marketing Channels (Multiselect Picklist) + type: string + x-nullable: true CreatedByID: description: Created By User ID type: string