Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.18 #26

Merged
merged 1 commit into from
Apr 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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