Skip to content

Commit

Permalink
Merge pull request #131 from getlago/feat-group-name
Browse files Browse the repository at this point in the history
feat(group_name): Add group_invoice_display_name to fee item
  • Loading branch information
ivannovosad authored Oct 16, 2023
2 parents e85c094 + 3b3ab65 commit 3eb0645
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,13 @@ type FeeListInput struct {
}

type FeeItem struct {
Type FeeType `json:"type,omitempty"`
Code string `json:"code,omitempty"`
Name string `json:"name,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
LagoItemID uuid.UUID `json:"lago_item_id,omitempty"`
ItemType FeeItemType `json:"item_type,omitempty"`
Type FeeType `json:"type,omitempty"`
Code string `json:"code,omitempty"`
Name string `json:"name,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
GroupInvoiceDisplayName string `json:"group_invoice_display_name,omitempty"`
LagoItemID uuid.UUID `json:"lago_item_id,omitempty"`
ItemType FeeItemType `json:"item_type,omitempty"`
}

type FeeAppliedTax struct {
Expand Down

0 comments on commit 3eb0645

Please sign in to comment.