Skip to content

Commit

Permalink
Merge pull request #24 from clearbooks/ADHOC-3894-make-bankAccount-fo…
Browse files Browse the repository at this point in the history
…r-create-entity-non-mandatory-2

make the bankAccount field non-mandatory for createEntity calls a bit differently (ADHOC-3894)
  • Loading branch information
peter-horvath authored May 29, 2018
2 parents 6f0bcde + a8294fb commit df7baa7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Clearbooks/Soap/1/0/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ class Clearbooks_Soap_1_0_Entity
*/
public $customer = null;

/** @var \Clearbooks_Soap_1_0_BankAccount */
public $bankAccount = '';
/**
* @var \Clearbooks_Soap_1_0_BankAccount
* @optional
*/
public $bankAccount = null;

/** @var int */
public $id = 0;
Expand Down

0 comments on commit df7baa7

Please sign in to comment.