Skip to content

Commit

Permalink
fix: accept 0% as tax rate (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshkonni authored Aug 14, 2023
1 parent df47445 commit befae5c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tax.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ type TaxParams struct {
}

type TaxInput struct {
Name string `json:"name,omitempty"`
Code string `json:"code,omitempty"`
Rate float32 `json:"rate,omitempty"`
Description string `json:"description,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`
Name string `json:"name,omitempty"`
Code string `json:"code,omitempty"`
Rate *float32 `json:"rate,omitempty"`
Description string `json:"description,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`

CreatedAt time.Time `json:"created_at,omitempty"`
}
Expand All @@ -42,7 +42,7 @@ type Tax struct {
LagoID uuid.UUID `json:"lago_id,omitempty"`
Name string `json:"name,omitempty"`
Code string `json:"code,omitempty"`
Rate float32 `json:"rate"`
Rate float32 `json:"rate,omitempty"`
Description string `json:"description,omitempty"`
CustomersCount int `json:"customers_count,omitempty"`
PlansCount int `json:"plans_count,omitempty"`
Expand Down

0 comments on commit befae5c

Please sign in to comment.