Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/schemas/DunningCampaignFinishedObject.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@ properties:
$ref: "./Currency.yaml"
description: The currency of the balance.
example: "EUR"
overdue_balances:
type: array
description: Overdue balance broken down per currency.
items:
$ref: "./OverdueBalancePerCurrencyObject.yaml"
13 changes: 13 additions & 0 deletions src/schemas/OverdueBalancePerCurrencyObject.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
type: object
required:
- amount_cents
- currency
properties:
amount_cents:
type: integer
description: The amount of the overdue balance for this currency, expressed in cents.
example: 120
currency:
$ref: "./Currency.yaml"
description: The currency of the overdue balance.
example: "EUR"
Loading