Skip to content

Commit

Permalink
fix: price type
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed May 20, 2024
1 parent 71fc83a commit df15984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event/params/item.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type Item struct {
ItemName string `json:"item_name,omitempty"`
ItemVariant string `json:"item_variant,omitempty"`
LocationID string `json:"location_id,omitempty"`
Price string `json:"price,omitempty"`
Price float64 `json:"price,omitempty"`
PromotionID string `json:"promotion_id,omitempty"`
PromotionName string `json:"promotion_name,omitempty"`
Quantity float64 `json:"quantity,omitempty"`
Expand Down

0 comments on commit df15984

Please sign in to comment.