Skip to content

Commit 919b6c4

Browse files
authored
Merge pull request #662 from recurly/v3-v2021-02-25-6004207465
Generated Latest Changes for v2021-02-25 (`VATNumber`, `LifecycleDecline`)
2 parents 2aa55fe + ede825f commit 919b6c4

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

openapi/api.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23040,6 +23040,13 @@ components:
2304023040
payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
2304123041
Sofort.
2304223042
title: Action result
23043+
vat_number:
23044+
type: string
23045+
description: VAT number for the customer on this transaction. If the customer's
23046+
Billing Info country is BR or AR, then this will be their Tax Identifier.
23047+
For all other countries this will come from the VAT Number field in the
23048+
Billing Info.
23049+
title: VAT Number
2304323050
ExternalTransaction:
2304423051
type: object
2304523052
properties:
@@ -25336,6 +25343,7 @@ components:
2533625343
- invalid_payment_method_hard
2533725344
- invalid_transaction
2533825345
- issuer_unavailable
25346+
- lifecycle_decline
2533925347
- merch_max_transaction_limit_exceeded
2534025348
- moneybot_disconnect
2534125349
- moneybot_unavailable

recurly/resources.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@ class Transaction(Resource):
748748
Updated at
749749
uuid : str
750750
The UUID is useful for matching data with the CSV exports and building URLs into Recurly's UI.
751+
vat_number : str
752+
VAT number for the customer on this transaction. If the customer's Billing Info country is BR or AR, then this will be their Tax Identifier. For all other countries this will come from the VAT Number field in the Billing Info.
751753
voided_at : datetime
752754
Voided at
753755
voided_by_invoice : InvoiceMini
@@ -792,6 +794,7 @@ class Transaction(Resource):
792794
"type": str,
793795
"updated_at": datetime,
794796
"uuid": str,
797+
"vat_number": str,
795798
"voided_at": datetime,
796799
"voided_by_invoice": "InvoiceMini",
797800
}

0 commit comments

Comments
 (0)