Netsutie PHP Toolkit
EmployeeDirectDeposit.php
Go to the documentation of this file.
1 <?php
9 
18  public $id;
19 
28  public $netAccount;
29 
39 
49 
59 
68  public $bankName;
69 
78  public $bankId;
79 
88  public $bankNumber;
89 
99 
109 
118  public $amount;
119 
128  public $inactive;
129 
130 
131 
132  static $paramtypesmap = array(
133 
134  "id" => "integer",
135 
136  "netAccount" => "boolean",
137 
138  "savingsAccount" => "boolean",
139 
140  "accountPrenoted" => "boolean",
141 
142  "accountStatus" => "EmployeeDirectDepositAccountStatus",
143 
144  "bankName" => "string",
145 
146  "bankId" => "string",
147 
148  "bankNumber" => "string",
149 
150  "bankRoutingNumber" => "string",
151 
152  "bankAccountNumber" => "string",
153 
154  "amount" => "float",
155 
156  "inactive" => "boolean",
157 
158  );
159 
160 }