You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: recurly/resources.py
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -422,7 +422,7 @@ class GatewayAttributes(Resource):
422
422
Attributes
423
423
----------
424
424
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.
426
426
"""
427
427
428
428
schema= {
@@ -671,6 +671,8 @@ class Transaction(Resource):
671
671
----------
672
672
account : AccountMini
673
673
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.
674
676
amount : float
675
677
Total transaction amount sent to the payment gateway.
676
678
avs_check : str
@@ -754,6 +756,7 @@ class Transaction(Resource):
754
756
755
757
schema= {
756
758
"account": "AccountMini",
759
+
"action_result": dict,
757
760
"amount": float,
758
761
"avs_check": str,
759
762
"backup_payment_method_used": bool,
@@ -1844,6 +1847,8 @@ class Subscription(Resource):
1844
1847
----------
1845
1848
account : AccountMini
1846
1849
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.
1847
1852
activated_at : datetime
1848
1853
Activated at
1849
1854
active_invoice_id : str
@@ -1966,6 +1971,7 @@ class Subscription(Resource):
0 commit comments