Netsutie PHP Toolkit
BinTransfer.php
Go to the documentation of this file.
1 <?php
8 class BinTransfer extends Record {
9 
18  public $createdDate;
19 
29 
38  public $tranDate;
39 
48  public $memo;
49 
58  public $location;
59 
69 
78  public $subsidiary;
79 
88  public $tranId;
89 
98  public $internalId;
99 
108  public $externalId;
109 
110 
111 
112  static $paramtypesmap = array(
113 
114  "createdDate" => "dateTime",
115 
116  "lastModifiedDate" => "dateTime",
117 
118  "tranDate" => "dateTime",
119 
120  "memo" => "string",
121 
122  "location" => "RecordRef",
123 
124  "inventoryList" => "BinTransferInventoryList",
125 
126  "subsidiary" => "RecordRef",
127 
128  "tranId" => "string",
129 
130  "internalId" => "string",
131 
132  "externalId" => "string",
133 
134  );
135 
136 }
static $paramtypesmap
Definition: Record.php:8