mirror of https://github.com/vernonkeenan/lib
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
parent
4d2d5bf861
commit
6846446ffa
|
@ -24,6 +24,9 @@ type CompanyProduct struct {
|
|||
// ID of the Company that owns this Product
|
||||
AccountID string `json:"AccountID,omitempty"`
|
||||
|
||||
// Salesforce AppExchange URL
|
||||
AppExchange *string `json:"AppExchange,omitempty"`
|
||||
|
||||
// Created By User ID
|
||||
CreatedByID *string `json:"CreatedByID,omitempty"`
|
||||
|
||||
|
|
|
@ -3455,6 +3455,10 @@ definitions:
|
|||
AccountID:
|
||||
description: ID of the Company that owns this Product
|
||||
type: string
|
||||
AppExchange:
|
||||
description: Salesforce AppExchange URL
|
||||
type: string
|
||||
x-nullable: true
|
||||
CreatedByID:
|
||||
description: Created By User ID
|
||||
type: string
|
||||
|
|
|
@ -3455,6 +3455,10 @@ definitions:
|
|||
AccountID:
|
||||
description: ID of the Company that owns this Product
|
||||
type: string
|
||||
AppExchange:
|
||||
description: Salesforce AppExchange URL
|
||||
type: string
|
||||
x-nullable: true
|
||||
CreatedByID:
|
||||
description: Created By User ID
|
||||
type: string
|
||||
|
|
Loading…
Reference in New Issue