feat: Add AppExchange URL field to CompanyProduct model

The code changes include adding the `AppExchange` field to the `CompanyProduct` model in the `sfgate` package. This field is used to store the Salesforce AppExchange URL.
v0.6.3 v0.6.3
Vernon Keenan 2024-06-28 23:09:29 +00:00
parent 4d2d5bf861
commit 6846446ffa
3 changed files with 11 additions and 0 deletions

View File

@ -24,6 +24,9 @@ type CompanyProduct struct {
// ID of the Company that owns this Product // ID of the Company that owns this Product
AccountID string `json:"AccountID,omitempty"` AccountID string `json:"AccountID,omitempty"`
// Salesforce AppExchange URL
AppExchange *string `json:"AppExchange,omitempty"`
// Created By User ID // Created By User ID
CreatedByID *string `json:"CreatedByID,omitempty"` CreatedByID *string `json:"CreatedByID,omitempty"`

View File

@ -3455,6 +3455,10 @@ definitions:
AccountID: AccountID:
description: ID of the Company that owns this Product description: ID of the Company that owns this Product
type: string type: string
AppExchange:
description: Salesforce AppExchange URL
type: string
x-nullable: true
CreatedByID: CreatedByID:
description: Created By User ID description: Created By User ID
type: string type: string

View File

@ -3455,6 +3455,10 @@ definitions:
AccountID: AccountID:
description: ID of the Company that owns this Product description: ID of the Company that owns this Product
type: string type: string
AppExchange:
description: Salesforce AppExchange URL
type: string
x-nullable: true
CreatedByID: CreatedByID:
description: Created By User ID description: Created By User ID
type: string type: string