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
|
||||
Email *string `json:"Email,omitempty"`
|
||||
|
||||
// Enrichment Status
|
||||
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||
|
||||
// The amount of equity EquityFunding
|
||||
EquityFunding *float64 `json:"EquityFunding,omitempty"`
|
||||
|
||||
|
@ -112,6 +115,12 @@ type Account struct {
|
|||
// Industry
|
||||
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
|
||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||
|
||||
|
|
|
@ -36,6 +36,9 @@ type CompanyProduct struct {
|
|||
// Description of product
|
||||
Description *string `json:"Description,omitempty"`
|
||||
|
||||
// Enrichment Status
|
||||
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||
|
||||
// Full Description of product
|
||||
FullDescription *string `json:"FullDescription,omitempty"`
|
||||
|
||||
|
@ -48,6 +51,12 @@ type CompanyProduct struct {
|
|||
// Image URL
|
||||
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
|
||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||
|
||||
|
|
|
@ -38,6 +38,9 @@ type CompanyService struct {
|
|||
// Description of service
|
||||
Description *string `json:"Description,omitempty"`
|
||||
|
||||
// Enrichment Status
|
||||
EnrichmentStatus *string `json:"EnrichmentStatus,omitempty"`
|
||||
|
||||
// Full Description of service
|
||||
FullDescription *string `json:"FullDescription,omitempty"`
|
||||
|
||||
|
@ -53,6 +56,12 @@ type CompanyService struct {
|
|||
// 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
|
||||
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
||||
|
||||
|
|
|
@ -2955,6 +2955,10 @@ definitions:
|
|||
description: Main Account Email
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
EquityFunding:
|
||||
description: The amount of equity EquityFunding
|
||||
type: number
|
||||
|
@ -3000,6 +3004,14 @@ definitions:
|
|||
description: Last Modified By User ID
|
||||
type: string
|
||||
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:
|
||||
description: Last Modified Date
|
||||
type: string
|
||||
|
@ -3475,6 +3487,10 @@ definitions:
|
|||
description: Description of product
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
FullDescription:
|
||||
description: Full Description of product
|
||||
type: string
|
||||
|
@ -3490,6 +3506,14 @@ definitions:
|
|||
description: Image URL
|
||||
type: string
|
||||
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:
|
||||
description: Last Modified By User ID
|
||||
type: string
|
||||
|
@ -3573,6 +3597,10 @@ definitions:
|
|||
description: Description of service
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
FullDescription:
|
||||
description: Full Description of service
|
||||
type: string
|
||||
|
@ -3594,6 +3622,14 @@ definitions:
|
|||
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
||||
type: array
|
||||
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:
|
||||
description: Last Modified By User ID
|
||||
type: string
|
||||
|
|
|
@ -2955,6 +2955,10 @@ definitions:
|
|||
description: Main Account Email
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
EquityFunding:
|
||||
description: The amount of equity EquityFunding
|
||||
type: number
|
||||
|
@ -3000,6 +3004,14 @@ definitions:
|
|||
description: Last Modified By User ID
|
||||
type: string
|
||||
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:
|
||||
description: Last Modified Date
|
||||
type: string
|
||||
|
@ -3475,6 +3487,10 @@ definitions:
|
|||
description: Description of product
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
FullDescription:
|
||||
description: Full Description of product
|
||||
type: string
|
||||
|
@ -3490,6 +3506,14 @@ definitions:
|
|||
description: Image URL
|
||||
type: string
|
||||
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:
|
||||
description: Last Modified By User ID
|
||||
type: string
|
||||
|
@ -3573,6 +3597,10 @@ definitions:
|
|||
description: Description of service
|
||||
type: string
|
||||
x-nullable: true
|
||||
EnrichmentStatus:
|
||||
description: Enrichment Status
|
||||
type: string
|
||||
x-nullable: true
|
||||
FullDescription:
|
||||
description: Full Description of service
|
||||
type: string
|
||||
|
@ -3594,6 +3622,14 @@ definitions:
|
|||
$ref: ../../lib/swagger/defs/industry.yaml#/Industry
|
||||
type: array
|
||||
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:
|
||||
description: Last Modified By User ID
|
||||
type: string
|
||||
|
|
Loading…
Reference in New Issue