Netsutie PHP Toolkit
Deposit.php
Go to the documentation of this file.
1 <?php
8 class Deposit extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $currencyName;
49 
58  public $tranId;
59 
68  public $account;
69 
78  public $total;
79 
88  public $exchangeRate;
89 
98  public $tranDate;
99 
109 
118  public $memo;
119 
128  public $toBePrinted;
129 
138  public $subsidiary;
139 
148  public $department;
149 
158  public $class;
159 
168  public $location;
169 
178  public $paymentList;
179 
188  public $otherList;
189 
199 
209 
218  public $internalId;
219 
228  public $externalId;
229 
230 
231 
232  static $paramtypesmap = array(
233 
234  "createdDate" => "dateTime",
235 
236  "lastModifiedDate" => "dateTime",
237 
238  "customForm" => "RecordRef",
239 
240  "currencyName" => "string",
241 
242  "tranId" => "string",
243 
244  "account" => "RecordRef",
245 
246  "total" => "float",
247 
248  "exchangeRate" => "float",
249 
250  "tranDate" => "dateTime",
251 
252  "postingPeriod" => "RecordRef",
253 
254  "memo" => "string",
255 
256  "toBePrinted" => "boolean",
257 
258  "subsidiary" => "RecordRef",
259 
260  "department" => "RecordRef",
261 
262  "class" => "RecordRef",
263 
264  "location" => "RecordRef",
265 
266  "paymentList" => "DepositPaymentList",
267 
268  "otherList" => "DepositOtherList",
269 
270  "cashBackList" => "DepositCashBackList",
271 
272  "customFieldList" => "CustomFieldList",
273 
274  "internalId" => "string",
275 
276  "externalId" => "string",
277 
278  );
279 
280 }
$subsidiary
Definition: Deposit.php:138
$internalId
Definition: Deposit.php:218
$paymentList
Definition: Deposit.php:178
$account
Definition: Deposit.php:68
$toBePrinted
Definition: Deposit.php:128
$externalId
Definition: Deposit.php:228
$createdDate
Definition: Deposit.php:18
$tranDate
Definition: Deposit.php:98
$department
Definition: Deposit.php:148
$lastModifiedDate
Definition: Deposit.php:28
$currencyName
Definition: Deposit.php:48
$postingPeriod
Definition: Deposit.php:108
$customFieldList
Definition: Deposit.php:208
static $paramtypesmap
Definition: Deposit.php:232
$cashBackList
Definition: Deposit.php:198
$otherList
Definition: Deposit.php:188
$exchangeRate
Definition: Deposit.php:88
$customForm
Definition: Deposit.php:38
Definition: Record.php:8