Netsutie PHP Toolkit
GlobalAccountMapping.php
Go to the documentation of this file.
1 <?php
8 class GlobalAccountMapping extends Record {
9 
18  public $customForm;
19 
29 
38  public $endDate;
39 
49 
58  public $subsidiary;
59 
69 
78  public $class;
79 
88  public $department;
89 
98  public $location;
99 
109 
119 
129 
138  public $internalId;
139 
148  public $externalId;
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "customForm" => "RecordRef",
155 
156  "effectiveDate" => "dateTime",
157 
158  "endDate" => "dateTime",
159 
160  "accountingBook" => "RecordRef",
161 
162  "subsidiary" => "RecordRef",
163 
164  "sourceAccount" => "RecordRef",
165 
166  "class" => "RecordRef",
167 
168  "department" => "RecordRef",
169 
170  "location" => "RecordRef",
171 
172  "destinationAccount" => "RecordRef",
173 
174  "customDimension" => "BaseRef",
175 
176  "customFieldList" => "CustomFieldList",
177 
178  "internalId" => "string",
179 
180  "externalId" => "string",
181 
182  );
183 
184 }
Definition: Record.php:8