Skip to content

Commit

Permalink
fix: Remove omitempty flag from type.
Browse files Browse the repository at this point in the history
  • Loading branch information
gowizzard committed Nov 16, 2023
1 parent 243890c commit 8c02b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion products.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type ProductBodyVariants struct {
Option1 string `json:"option1,omitempty"`
Option2 string `json:"option2,omitempty"`
Option3 string `json:"option3,omitempty"`
Taxable bool `json:"taxable,omitempty"`
Taxable bool `json:"taxable"`
Barcode string `json:"barcode"`
Grams int `json:"grams"`
Weight float64 `json:"weight"`
Expand Down

0 comments on commit 8c02b55

Please sign in to comment.