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
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1161,6 +1161,8 @@ class Invoice(Resource):
1161
1161
Invoices are either charge, credit, or legacy invoices.
1162
1162
updated_at : datetime
1163
1163
Last updated at
1164
+
used_tax_service : bool
1165
+
Will be `true` when the invoice had a successful response from the tax service and `false` when the invoice was not sent to tax service due to a lack of address or enabled jurisdiction or was processed without tax due to a non-blocking error returned from the tax service.
1164
1166
vat_number : str
1165
1167
VAT registration number for the customer on this invoice. This will come from the VAT Number field in the Billing Info or the Account Info depending on your tax settings and the invoice collection method.
1166
1168
vat_reverse_charge_notes : str
@@ -1202,6 +1204,7 @@ class Invoice(Resource):
1202
1204
"transactions": ["Transaction"],
1203
1205
"type": str,
1204
1206
"updated_at": datetime,
1207
+
"used_tax_service": bool,
1205
1208
"vat_number": str,
1206
1209
"vat_reverse_charge_notes": str,
1207
1210
}
@@ -2086,6 +2089,7 @@ class CustomFieldDefinition(Resource):
2086
2089
- `read_only` - Users with the Customers role will be able to view this field's data via the admin UI, but
2087
2090
editing will only be available via the API.
2088
2091
- `write` - Users with the Customers role will be able to view and edit this field's data via the admin UI.
2092
+
- `set_only` - Users with the Customers role will be able to set this field's data via the admin console.
0 commit comments