Skip to content
Merged
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
9 changes: 9 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19032,6 +19032,13 @@ components:
description: The outstanding balance remaining on this invoice.
tax_info:
"$ref": "#/components/schemas/TaxInfo"
used_tax_service:
type: boolean
title: Used Tax Service?
description: Will be `true` when the invoice had a successful response from
the tax service and `false` when the invoice was not sent to tax service
due to a lack of address or enabled jurisdiction or was processed without
tax due to a non-blocking error returned from the tax service.
vat_number:
type: string
title: VAT number
Expand Down Expand Up @@ -24043,7 +24050,9 @@ components:
- es-MX
- es-US
- fi-FI
- fr-BE
- fr-CA
- fr-CH
- fr-FR
- hi-IN
- it-IT
Expand Down
3 changes: 3 additions & 0 deletions recurly/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -1391,6 +1391,8 @@ class Invoice(Resource):
Invoices are either charge, credit, or legacy invoices.
updated_at : datetime
Last updated at
used_tax_service : bool
Will be `true` when the invoice had a successful response from the tax service and `false` when the invoice was not sent to tax service due to a lack of address or enabled jurisdiction or was processed without tax due to a non-blocking error returned from the tax service.
uuid : str
Invoice UUID
vat_number : str
Expand Down Expand Up @@ -1437,6 +1439,7 @@ class Invoice(Resource):
"transactions": ["Transaction"],
"type": str,
"updated_at": datetime,
"used_tax_service": bool,
"uuid": str,
"vat_number": str,
"vat_reverse_charge_notes": str,
Expand Down