Skip to content

Commit

Permalink
fix misspellings
Browse files Browse the repository at this point in the history
  • Loading branch information
annvelents committed Jan 14, 2025
1 parent 1363fec commit bd63f90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion customer.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ type InvoiceCustomSection struct {
Description string `json:"description,omitempty"`
Details string `json:"details,omitempty"`
DisplayName string `json:"display_name,omitempty"`
SelectedForOrganization bool `json:"selected_for_organization,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
}

Expand Down Expand Up @@ -266,6 +266,7 @@ type Customer struct {
Currency Currency `json:"currency,omitempty"`
Timezone string `json:"timezone,omitempty"`
ApplicableTimezone string `json:"applicable_timezone,omitempty"`
SkipInvoiceCustomSections bool `json:"skip_invoice_custom_sections,omitempty"`

Taxes []Tax `json:"taxes,omitempty"`
ApplicableInvoiceCustomSections []InvoiceCustomSection `json:"applicable_invoice_custom_sections,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion invoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ type Invoice struct {

Fees []Fee `json:"fees,omitempty"`
Credits []InvoiceCredit `json:"credits,omitempty"`
AppliedInvoiceCustomSections []InvoiceAppliedInvoiceCustomSection `json:"applied_invoice_custom_section,omitempty"`
AppliedInvoiceCustomSections []InvoiceAppliedInvoiceCustomSection `json:"applied_invoice_custom_sections,omitempty"`
AppliedTaxes []InvoiceAppliedTax `json:"applied_taxes,omitempty"`
ErrorDetails []InvoiceErrorDetail `json:"error_details,omitempty"`
AppliedUsageThreshold []AppliedUsageThreshold `json:"applied_usage_threshold,omitempty"`
Expand Down

0 comments on commit bd63f90

Please sign in to comment.