From 94b06fa5c7329a7b350d5c147efac59e5bd84728 Mon Sep 17 00:00:00 2001 From: Judith Hengeveld Date: Thu, 20 Nov 2014 14:17:05 -0800 Subject: [PATCH] Add tax_code to plan, add on and adjustment Used in tax calculations for VAT 2015 and Avalara integration taxes. --- recurly/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recurly/__init__.py b/recurly/__init__.py index 021bed37..f4144db0 100644 --- a/recurly/__init__.py +++ b/recurly/__init__.py @@ -403,6 +403,7 @@ class Adjustment(Resource): 'total_in_cents', 'currency', 'tax_exempt', + 'tax_code', 'tax_details', 'start_date', 'end_date', @@ -726,6 +727,7 @@ class Plan(Resource): 'accounting_code', 'created_at', 'tax_exempt', + 'tax_code', 'unit_amount_in_cents', 'setup_fee_in_cents', ) @@ -757,6 +759,7 @@ class AddOn(Resource): 'default_quantity', 'accounting_code', 'unit_amount_in_cents', + 'tax_code', 'created_at', )