Skip to content

Commit

Permalink
Merge pull request #483 from recurly/mandate_reference
Browse files Browse the repository at this point in the history
Add mandate_reference attribute to BillingInfo
  • Loading branch information
bhelx committed Mar 26, 2020
2 parents 57dd842 + bdc8716 commit 1ba5b29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/recurly/billing_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* @property string $currency Currency in which invoices will be posted. Only applicable if this account is enrolled in a plan has a different currency than your site's default.
* @property string $first_name First name
* @property string $last_name Last name
* @property string $mandate_reference A specific ID used in a payment system to show that an agreement was made between the customer and the merchant.
* @property string $number Credit card number, spaces and dashes are accepted
* @property int $month Expiration month
* @property int $year Expiration year
Expand Down Expand Up @@ -98,7 +99,7 @@ protected function getNodeName() {
}
protected function getWriteableAttributes() {
return array(
'first_name', 'last_name', 'name_on_account', 'company', 'ip_address',
'first_name', 'last_name', 'mandate_reference', 'name_on_account', 'company', 'ip_address',
'address1', 'address2', 'city', 'state', 'country', 'zip', 'phone',
'vat_number', 'number', 'month', 'year', 'verification_value',
'account_number', 'routing_number', 'account_type',
Expand Down

0 comments on commit 1ba5b29

Please sign in to comment.