Netsutie PHP Toolkit
ItemAccountMapping.php
Go to the documentation of this file.
1 <?php
8 class ItemAccountMapping extends Record {
9 
18  public $customForm;
19 
29 
38  public $endDate;
39 
49 
58  public $subsidiary;
59 
68  public $itemAccount;
69 
79 
88  public $class;
89 
98  public $department;
99 
108  public $location;
109 
119 
129 
139 
148  public $internalId;
149 
158  public $externalId;
159 
160 
161 
162  static $paramtypesmap = array(
163 
164  "customForm" => "RecordRef",
165 
166  "effectiveDate" => "dateTime",
167 
168  "endDate" => "dateTime",
169 
170  "accountingBook" => "RecordRef",
171 
172  "subsidiary" => "RecordRef",
173 
174  "itemAccount" => "ItemAccountMappingItemAccount",
175 
176  "sourceAccount" => "RecordRef",
177 
178  "class" => "RecordRef",
179 
180  "department" => "RecordRef",
181 
182  "location" => "RecordRef",
183 
184  "destinationAccount" => "RecordRef",
185 
186  "customDimension" => "BaseRef",
187 
188  "customFieldList" => "CustomFieldList",
189 
190  "internalId" => "string",
191 
192  "externalId" => "string",
193 
194  );
195 
196 }
Definition: Record.php:8