Skip to content

Commit

Permalink
feat(default-currency): Add organization default currency
Browse files Browse the repository at this point in the history
  • Loading branch information
ivannovosad committed Nov 3, 2023
1 parent 3aec74d commit 5cf0c2b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions organization.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ type OrganizationInput struct {
Zipcode string `json:"zipcode,omitempty"`
State string `json:"state,omitempty"`
Country string `json:"country,omitempty"`
DefaultCurrency Currency `json:"default_currency,omitempty"`
LegalName string `json:"legal_name,omitempty"`
LegalNumber string `json:"legal_number,omitempty"`
NetPaymentTerm int `json:"net_payment_term,omitempty"`
Expand All @@ -60,6 +61,7 @@ type Organization struct {
Zipcode string `json:"zipcode,omitempty"`
State string `json:"state,omitempty"`
Country string `json:"country,omitempty"`
DefaultCurrency Currency `json:"default_currency,omitempty"`
LegalName string `json:"legal_name,omitempty"`
LegalNumber string `json:"legal_number,omitempty"`
NetPaymentTerm int `json:"net_payment_term,omitempty"`
Expand Down

0 comments on commit 5cf0c2b

Please sign in to comment.