47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
|
package app
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
// Product is a first class object type
|
||
|
type Product struct {
|
||
|
ID string
|
||
|
AccountID string
|
||
|
AgencyType string
|
||
|
AssetTracking bool
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
Description string
|
||
|
DescriptionSKU string
|
||
|
DisplayURL string
|
||
|
Family string
|
||
|
Image500 string
|
||
|
ImageFull string
|
||
|
InventoryTracking bool
|
||
|
IsActive bool
|
||
|
IsGeneric bool
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
Manufacturer string
|
||
|
ManufacturerProductCode string
|
||
|
MRCInterval int64
|
||
|
MSRP float64
|
||
|
Name string
|
||
|
ProductCode string
|
||
|
Prorateable bool
|
||
|
Publish bool
|
||
|
PublishUPC string
|
||
|
QuantityUnitOfMeasure string
|
||
|
Refundable bool
|
||
|
ShippingWeight float64
|
||
|
SKU string
|
||
|
Specifications string
|
||
|
TaxnexusCode string
|
||
|
TaxnexusCodeID string
|
||
|
TenantID string
|
||
|
Units string
|
||
|
VendorID string
|
||
|
VendorName string
|
||
|
VendorPartNumber string
|
||
|
VendorPrice float64
|
||
|
}
|