Skip to content

Commit

Permalink
Remove the omitempty from requires_shipping (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmateus authored May 22, 2023
1 parent f855f5e commit 5c220cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variant.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type Variant struct {
Weight *decimal.Decimal `json:"weight,omitempty"`
WeightUnit string `json:"weight_unit,omitempty"`
OldInventoryQuantity int `json:"old_inventory_quantity,omitempty"`
RequireShipping bool `json:"requires_shipping,omitempty"`
RequireShipping bool `json:"requires_shipping"`
AdminGraphqlAPIID string `json:"admin_graphql_api_id,omitempty"`
Metafields []Metafield `json:"metafields,omitempty"`
}
Expand Down

0 comments on commit 5c220cb

Please sign in to comment.