From 5772e178652dbe858a72cdeeaf216cf94354e268 Mon Sep 17 00:00:00 2001 From: Chris Barton Date: Thu, 7 May 2015 13:27:41 -0700 Subject: [PATCH] Add bank_account_authorized_at to subscriptions --- CHANGELOG.md | 11 ++++++----- lib/recurly/subscription.php | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e72e12..cd91a319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,14 @@ ## Unreleased * Fixed bug where fetching an invoice PDF did not use the invoice number prefix [#155](https://github.com/recurly/recurly-client-php/pull/155) -* - Added bank account attributes to `Recurly_BillingInfo`, these include: - + - `name_on_account` - + - `account_type` (`checking` or `savings`) - + - `last_four` - + - `routing_number` +* Added bank account attributes to `Recurly_BillingInfo`, these include: + + `name_on_account` + + `account_type` (`checking` or `savings`) + + `last_four` + + `routing_number` * [#153](https://github.com/recurly/recurly-client-php/pull/153) * Added `ip_address` attribute to `Recurly_Transaction`[#157](https://github.com/recurly/recurly-client-php/pull/157) +* Added `bank_account_authorized_at` to `Recurly_Subscription` [#156](https://github.com/recurly/recurly-client-php/pull/156) ## Version 2.4.2 (Apr 14th, 2015) diff --git a/lib/recurly/subscription.php b/lib/recurly/subscription.php index 8a0fc4b0..42b30ad6 100644 --- a/lib/recurly/subscription.php +++ b/lib/recurly/subscription.php @@ -12,7 +12,7 @@ public static function init() 'currency','starts_at','trial_ends_at','total_billing_cycles', 'first_renewal_date', 'timeframe', 'subscription_add_ons', 'net_terms', 'po_number', 'collection_method', 'cost_in_cents', 'remaining_billing_cycles', 'bulk', 'terms_and_conditions', 'customer_notes', - 'vat_reverse_charge_notes' + 'vat_reverse_charge_notes', 'bank_account_authorized_at' ); Recurly_Subscription::$_nestedAttributes = array('account', 'subscription_add_ons'); }