Skip to content

Commit

Permalink
Merge pull request #26 from Dwolla/1.0.18
Browse files Browse the repository at this point in the history
1.0.18
  • Loading branch information
spencerhunter authored Apr 26, 2018
2 parents 6fef583 + 53e28ec commit 9c0fd0d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The new Dwolla API V2 SDK, as generated by [this fork of swagger-codegen](https:

## Version

1.0.17
1.0.18

## Installation

Expand Down Expand Up @@ -151,6 +151,9 @@ Each model represents the different kinds of requests and responses that can be

## Changelog

1.0.18
* Patch controller in CreateCustomer model.

1.0.17
* API schema updated, `CustomersApi` updated to support beneficial owner related endpoints, as well as support added for status filter on Customer search.
* New `BeneficialownersApi`.
Expand Down
4 changes: 2 additions & 2 deletions lib/models/CreateCustomer.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class CreateCustomer implements ArrayAccess {
'ein' => 'ein',
'doing_business_as' => 'doingBusinessAs',
'website' => 'website',
'controller' => 'object'
'controller' => 'controller'
);


Expand Down Expand Up @@ -115,7 +115,7 @@ public function __construct(array $data = null) {
$this->ein = $data["ein"];
$this->doing_business_as = $data["doing_business_as"];
$this->website = $data["website"];
$this->controller = $data["controller"]
$this->controller = $data["controller"];
}

public function offsetExists($offset) {
Expand Down

0 comments on commit 9c0fd0d

Please sign in to comment.