Skip to content

Commit ddf7d4d

Browse files
authored
Merge pull request #660 from recurly/v3-v2021-02-25-5813158059
Generated Latest Changes for v2021-02-25 (action_result)
2 parents 8e07805 + f352348 commit ddf7d4d

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

openapi/api.yaml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18204,9 +18204,10 @@ components:
1820418204
properties:
1820518205
account_reference:
1820618206
type: string
18207-
description: Used by Adyen gateways. The Shopper Reference value used
18208-
when the external token was created. Must be used in conjunction with
18209-
gateway_token and gateway_code.
18207+
description: Used by Adyen and Braintree gateways. For Adyen the Shopper
18208+
Reference value used when the external token was created. Must be
18209+
used in conjunction with gateway_token and gateway_code. For Braintree
18210+
the PayPal PayerID is populated in the response.
1821018211
maxLength: 264
1821118212
amazon_billing_agreement_id:
1821218213
type: string
@@ -21712,6 +21713,12 @@ components:
2171221713
format: date-time
2171321714
description: When the subscription was converted from a gift card.
2171421715
title: Converted at
21716+
action_result:
21717+
type: object
21718+
description: Action result params to be used in Recurly-JS to complete a
21719+
payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
21720+
Sofort.
21721+
title: Action result
2171521722
SubscriptionAddOn:
2171621723
type: object
2171721724
title: Subscription Add-on
@@ -23027,6 +23034,12 @@ components:
2302723034
format: date-time
2302823035
title: Collected at, or if not collected yet, the time the transaction was
2302923036
created.
23037+
action_result:
23038+
type: object
23039+
description: Action result params to be used in Recurly-JS to complete a
23040+
payment when using asynchronous payment methods, e.g., Boleto, iDEAL and
23041+
Sofort.
23042+
title: Action result
2303023043
ExternalTransaction:
2303123044
type: object
2303223045
properties:
@@ -24149,8 +24162,9 @@ components:
2414924162
properties:
2415024163
account_reference:
2415124164
type: string
24152-
description: Used by Adyen gateways. The Shopper Reference value used
24153-
when the external token was created.
24165+
description: Used by Adyen and Braintree gateways. For Adyen the Shopper
24166+
Reference value used when the external token was created. For Braintree
24167+
the PayPal PayerID is populated in the response.
2415424168
maxLength: 264
2415524169
billing_agreement_id:
2415624170
type: string

recurly/resources.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ class GatewayAttributes(Resource):
422422
Attributes
423423
----------
424424
account_reference : str
425-
Used by Adyen gateways. The Shopper Reference value used when the external token was created.
425+
Used by Adyen and Braintree gateways. For Adyen the Shopper Reference value used when the external token was created. For Braintree the PayPal PayerID is populated in the response.
426426
"""
427427

428428
schema = {
@@ -671,6 +671,8 @@ class Transaction(Resource):
671671
----------
672672
account : AccountMini
673673
Account mini details
674+
action_result : dict
675+
Action result params to be used in Recurly-JS to complete a payment when using asynchronous payment methods, e.g., Boleto, iDEAL and Sofort.
674676
amount : float
675677
Total transaction amount sent to the payment gateway.
676678
avs_check : str
@@ -754,6 +756,7 @@ class Transaction(Resource):
754756

755757
schema = {
756758
"account": "AccountMini",
759+
"action_result": dict,
757760
"amount": float,
758761
"avs_check": str,
759762
"backup_payment_method_used": bool,
@@ -1844,6 +1847,8 @@ class Subscription(Resource):
18441847
----------
18451848
account : AccountMini
18461849
Account mini details
1850+
action_result : dict
1851+
Action result params to be used in Recurly-JS to complete a payment when using asynchronous payment methods, e.g., Boleto, iDEAL and Sofort.
18471852
activated_at : datetime
18481853
Activated at
18491854
active_invoice_id : str
@@ -1966,6 +1971,7 @@ class Subscription(Resource):
19661971

19671972
schema = {
19681973
"account": "AccountMini",
1974+
"action_result": dict,
19691975
"activated_at": datetime,
19701976
"active_invoice_id": str,
19711977
"add_ons": ["SubscriptionAddOn"],

0 commit comments

Comments
 (0)