mirror of https://github.com/vernonkeenan/lib
feat: Add enrichment fields to Account, CompanyProduct, and CompanyService models
parent
18bfdecdbe
commit
6f44181e08
|
@ -79,6 +79,9 @@ type Account struct {
|
||||||
// Main Account Email
|
// Main Account Email
|
||||||
Email *string `json:"Email,omitempty"`
|
Email *string `json:"Email,omitempty"`
|
||||||
|
|
||||||
|
// Enrichment Status
|
||||||
|
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||||
|
|
||||||
// The amount of equity EquityFunding
|
// The amount of equity EquityFunding
|
||||||
EquityFunding *float64 `json:"EquityFunding,omitempty"`
|
EquityFunding *float64 `json:"EquityFunding,omitempty"`
|
||||||
|
|
||||||
|
@ -112,6 +115,12 @@ type Account struct {
|
||||||
// Industry
|
// Industry
|
||||||
Industry *string `json:"Industry,omitempty"`
|
Industry *string `json:"Industry,omitempty"`
|
||||||
|
|
||||||
|
// Last Enriched By User ID
|
||||||
|
LastEnrichedByID *string `json:"LastEnrichedByID,omitempty"`
|
||||||
|
|
||||||
|
// Last Enriched Date
|
||||||
|
LastEnrichmentDate *string `json:"LastEnrichmentDate,omitempty"`
|
||||||
|
|
||||||
// Last Modified By User ID
|
// Last Modified By User ID
|
||||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,9 @@ type CompanyProduct struct {
|
||||||
// Description of product
|
// Description of product
|
||||||
Description *string `json:"Description,omitempty"`
|
Description *string `json:"Description,omitempty"`
|
||||||
|
|
||||||
|
// Enrichment Status
|
||||||
|
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||||
|
|
||||||
// Full Description of product
|
// Full Description of product
|
||||||
FullDescription *string `json:"FullDescription,omitempty"`
|
FullDescription *string `json:"FullDescription,omitempty"`
|
||||||
|
|
||||||
|
@ -48,6 +51,12 @@ type CompanyProduct struct {
|
||||||
// Image URL
|
// Image URL
|
||||||
ImageURL *string `json:"ImageURL,omitempty"`
|
ImageURL *string `json:"ImageURL,omitempty"`
|
||||||
|
|
||||||
|
// Last Enriched By User ID
|
||||||
|
LastEnrichedByID *string `json:"LastEnrichedByID,omitempty"`
|
||||||
|
|
||||||
|
// Last Enriched Date
|
||||||
|
LastEnrichmentDate *string `json:"LastEnrichmentDate,omitempty"`
|
||||||
|
|
||||||
// Last Modified By User ID
|
// Last Modified By User ID
|
||||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,9 @@ type CompanyService struct {
|
||||||
// Description of service
|
// Description of service
|
||||||
Description *string `json:"Description,omitempty"`
|
Description *string `json:"Description,omitempty"`
|
||||||
|
|
||||||
|
// Enrichment Status
|
||||||
|
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||||
|
|
||||||
// Full Description of service
|
// Full Description of service
|
||||||
FullDescription *string `json:"FullDescription,omitempty"`
|
FullDescription *string `json:"FullDescription,omitempty"`
|
||||||
|
|
||||||
|
@ -53,6 +56,12 @@ type CompanyService struct {
|
||||||
// Industries
|
// Industries
|
||||||
Industries []*Industry `json:"Industries"`
|
Industries []*Industry `json:"Industries"`
|
||||||
|
|
||||||
|
// Last Enriched By User ID
|
||||||
|
LastEnrichedByID *string `json:"LastEnrichedByID,omitempty"`
|
||||||
|
|
||||||
|
// Last Enriched Date
|
||||||
|
LastEnrichmentDate *string `json:"LastEnrichmentDate,omitempty"`
|
||||||
|
|
||||||
// Last Modified By User ID
|
// Last Modified By User ID
|
||||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -2955,6 +2955,10 @@ definitions:
|
||||||
description: Main Account Email
|
description: Main Account Email
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
EquityFunding:
|
EquityFunding:
|
||||||
description: The amount of equity EquityFunding
|
description: The amount of equity EquityFunding
|
||||||
type: number
|
type: number
|
||||||
|
@ -3000,6 +3004,14 @@ definitions:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedDate:
|
LastModifiedDate:
|
||||||
description: Last Modified Date
|
description: Last Modified Date
|
||||||
type: string
|
type: string
|
||||||
|
@ -3475,6 +3487,10 @@ definitions:
|
||||||
description: Description of product
|
description: Description of product
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
FullDescription:
|
FullDescription:
|
||||||
description: Full Description of product
|
description: Full Description of product
|
||||||
type: string
|
type: string
|
||||||
|
@ -3490,6 +3506,14 @@ definitions:
|
||||||
description: Image URL
|
description: Image URL
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedByID:
|
LastModifiedByID:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3573,6 +3597,10 @@ definitions:
|
||||||
description: Description of service
|
description: Description of service
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
FullDescription:
|
FullDescription:
|
||||||
description: Full Description of service
|
description: Full Description of service
|
||||||
type: string
|
type: string
|
||||||
|
@ -3594,6 +3622,14 @@ definitions:
|
||||||
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
||||||
type: array
|
type: array
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedByID:
|
LastModifiedByID:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -2955,6 +2955,10 @@ definitions:
|
||||||
description: Main Account Email
|
description: Main Account Email
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
EquityFunding:
|
EquityFunding:
|
||||||
description: The amount of equity EquityFunding
|
description: The amount of equity EquityFunding
|
||||||
type: number
|
type: number
|
||||||
|
@ -3000,6 +3004,14 @@ definitions:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedDate:
|
LastModifiedDate:
|
||||||
description: Last Modified Date
|
description: Last Modified Date
|
||||||
type: string
|
type: string
|
||||||
|
@ -3475,6 +3487,10 @@ definitions:
|
||||||
description: Description of product
|
description: Description of product
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
FullDescription:
|
FullDescription:
|
||||||
description: Full Description of product
|
description: Full Description of product
|
||||||
type: string
|
type: string
|
||||||
|
@ -3490,6 +3506,14 @@ definitions:
|
||||||
description: Image URL
|
description: Image URL
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedByID:
|
LastModifiedByID:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3573,6 +3597,10 @@ definitions:
|
||||||
description: Description of service
|
description: Description of service
|
||||||
type: string
|
type: string
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
EnrichmentStatus:
|
||||||
|
description: Enrichment Status
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
FullDescription:
|
FullDescription:
|
||||||
description: Full Description of service
|
description: Full Description of service
|
||||||
type: string
|
type: string
|
||||||
|
@ -3594,6 +3622,14 @@ definitions:
|
||||||
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
||||||
type: array
|
type: array
|
||||||
x-nullable: true
|
x-nullable: true
|
||||||
|
LastEnrichedByID:
|
||||||
|
description: Last Enriched By User ID
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
|
LastEnrichmentDate:
|
||||||
|
description: Last Enriched Date
|
||||||
|
type: string
|
||||||
|
x-nullable: true
|
||||||
LastModifiedByID:
|
LastModifiedByID:
|
||||||
description: Last Modified By User ID
|
description: Last Modified By User ID
|
||||||
type: string
|
type: string
|
||||||
|
|
Loading…
Reference in New Issue