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
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -784,6 +784,8 @@ class Transaction(Resource):
784
784
Language code for the message
785
785
cvv_check : str
786
786
When processed, result from checking the CVV/CVC value on the transaction.
787
+
description : str
788
+
The description that gets sent to the gateway.
787
789
fraud_info : TransactionFraudInfo
788
790
Fraud information
789
791
gateway_approval_code : str
@@ -876,6 +878,7 @@ class Transaction(Resource):
876
878
"customer_message": str,
877
879
"customer_message_locale": str,
878
880
"cvv_check": str,
881
+
"description": str,
879
882
"fraud_info": "TransactionFraudInfo",
880
883
"gateway_approval_code": str,
881
884
"gateway_message": str,
@@ -2331,6 +2334,8 @@ class Subscription(Resource):
2331
2334
Null unless subscription is paused or will pause at the end of the current billing period.
2332
2335
renewal_billing_cycles : int
2333
2336
If `auto_renew=true`, when a term completes, `total_billing_cycles` takes this value as the length of subsequent terms. Defaults to the plan's `total_billing_cycles`.
2337
+
resume_at : datetime
2338
+
The date the subscription billing resumes following a pause. Null unless the subscription is paused or scheduled to be paused.
2334
2339
revenue_schedule_type : str
2335
2340
Revenue schedule type
2336
2341
shipping : SubscriptionShipping
@@ -2406,6 +2411,7 @@ class Subscription(Resource):
0 commit comments