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
@@ -268,6 +268,8 @@ class BillingInfo(Resource):
268
268
----------
269
269
account_id : str
270
270
address : Address
271
+
backup_payment_method : bool
272
+
The `backup_payment_method` indicator is used to designate a billing info as a backup on the account that will be tried if the billing info marked `primary_payment_method` fails.
271
273
company : str
272
274
created_at : datetime
273
275
When the billing information was created.
@@ -292,6 +294,7 @@ class BillingInfo(Resource):
292
294
schema= {
293
295
"account_id": str,
294
296
"address": "Address",
297
+
"backup_payment_method": bool,
295
298
"company": str,
296
299
"created_at": datetime,
297
300
"first_name": str,
@@ -881,6 +884,8 @@ class Transaction(Resource):
881
884
Total transaction amount sent to the payment gateway.
882
885
avs_check : str
883
886
When processed, result from checking the overall AVS on the transaction.
887
+
backup_payment_method_used : bool
888
+
Indicates if the transaction was completed using a backup payment
884
889
billing_address : AddressWithName
885
890
collected_at : datetime
886
891
Collected at, or if not collected yet, the time the transaction was created.
0 commit comments