Skip to content

Commit

Permalink
Merge pull request #156 from recurly/bank_account_authorized_at
Browse files Browse the repository at this point in the history
Add bank_account_authorized_at to subscriptions
  • Loading branch information
drewish committed May 26, 2015
2 parents 38359ea + 5772e17 commit f6fe53d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion lib/recurly/subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit f6fe53d

Please sign in to comment.