Skip to content

Commit

Permalink
Merge pull request #4 from ewarehousing-solutions/variant-types
Browse files Browse the repository at this point in the history
Variant types
  • Loading branch information
Fichtme authored Sep 20, 2023
2 parents 5808777 + fc29a6f commit d98fe27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ewhs/variants.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type Variant struct {
Ean string `json:"ean,omitempty"`
Sku string `json:"sku,omitempty"`
HsTariffCode string `json:"hs_tariff_code,omitempty"`
Height string `json:"height,omitempty"`
Depth string `json:"depth,omitempty"`
Width string `json:"width,omitempty"`
Weight string `json:"weight,omitempty"`
Height int64 `json:"height,omitempty"`
Depth int64 `json:"depth,omitempty"`
Width int64 `json:"width,omitempty"`
Weight int64 `json:"weight,omitempty"`
Expirable bool `json:"expirable,omitempty"`
CountryOfOrigin string `json:"country_of_origin,omitempty"`
UsingSerialNumbers bool `json:"using_serial_numbers,omitempty"`
Expand Down

0 comments on commit d98fe27

Please sign in to comment.