parent
1c63381dba
commit
0cd421f2fb
|
@ -20,13 +20,11 @@ type AccountActivityWrapper struct {
|
||||||
CannabisCustomer bool
|
CannabisCustomer bool
|
||||||
CompanyID string
|
CompanyID string
|
||||||
CoordinateID string
|
CoordinateID string
|
||||||
Coordinate Coordinate
|
|
||||||
CustomerID string
|
CustomerID string
|
||||||
CustomerPriority string
|
CustomerPriority string
|
||||||
DBA string
|
DBA string
|
||||||
DefaultAddress Address
|
DefaultAddress Address
|
||||||
DefaultBackendID string
|
DefaultBackendID string
|
||||||
DefaultBackend Backend
|
|
||||||
DefaultDeliveryContactID string
|
DefaultDeliveryContactID string
|
||||||
DefaultDeliveryContact string
|
DefaultDeliveryContact string
|
||||||
DefaultEndUserID string
|
DefaultEndUserID string
|
||||||
|
@ -73,6 +71,7 @@ type Account struct {
|
||||||
Balance float64
|
Balance float64
|
||||||
BillingAddress *Address
|
BillingAddress *Address
|
||||||
BillingContactID string
|
BillingContactID string
|
||||||
|
BillingContact *Contact
|
||||||
BillingPreference string
|
BillingPreference string
|
||||||
BusinessAddress *Address
|
BusinessAddress *Address
|
||||||
CannabisCustomer bool
|
CannabisCustomer bool
|
||||||
|
@ -81,6 +80,7 @@ type Account struct {
|
||||||
ClientEndDate sql.NullTime
|
ClientEndDate sql.NullTime
|
||||||
ClientStartDate sql.NullTime
|
ClientStartDate sql.NullTime
|
||||||
CompanyID string
|
CompanyID string
|
||||||
|
Coordinate *Coordinate
|
||||||
CoordinateID string
|
CoordinateID string
|
||||||
CreatedByID string
|
CreatedByID string
|
||||||
CreatedDate sql.NullTime
|
CreatedDate sql.NullTime
|
||||||
|
@ -90,6 +90,7 @@ type Account struct {
|
||||||
DBA string
|
DBA string
|
||||||
DefaultAddress *Address
|
DefaultAddress *Address
|
||||||
DefaultBackendID string
|
DefaultBackendID string
|
||||||
|
DefaultBackend *Backend
|
||||||
DefaultDeliveryContactID string
|
DefaultDeliveryContactID string
|
||||||
DefaultEndUserID string
|
DefaultEndUserID string
|
||||||
Description string
|
Description string
|
||||||
|
@ -113,6 +114,7 @@ type Account struct {
|
||||||
NumberOfLocations int64
|
NumberOfLocations int64
|
||||||
OpenCharges float64
|
OpenCharges float64
|
||||||
OrderContactID string
|
OrderContactID string
|
||||||
|
OrderContact *Contact
|
||||||
OrderEmail string
|
OrderEmail string
|
||||||
OwnerID string
|
OwnerID string
|
||||||
Ownership string
|
Ownership string
|
||||||
|
@ -130,6 +132,7 @@ type Account struct {
|
||||||
ShippingAddress *Address
|
ShippingAddress *Address
|
||||||
ShippingCensusTract string
|
ShippingCensusTract string
|
||||||
ShippingContactID string
|
ShippingContactID string
|
||||||
|
ShippingContact *Contact
|
||||||
ShippingCounty string
|
ShippingCounty string
|
||||||
SIC string
|
SIC string
|
||||||
SicDesc string
|
SicDesc string
|
||||||
|
|
Loading…
Reference in New Issue