Netsutie PHP Toolkit
SubtotalItem.php
Go to the documentation of this file.
1 <?php
8 class SubtotalItem extends Record {
9 
18  public $createdDate;
19 
29 
38  public $displayName;
39 
48  public $issueProduct;
49 
58  public $description;
59 
69 
78  public $customForm;
79 
88  public $itemId;
89 
98  public $isInactive;
99 
109 
118  public $department;
119 
128  public $class;
129 
138  public $location;
139 
149 
159 
169 
178  public $internalId;
179 
188  public $externalId;
189 
190 
191 
192  static $paramtypesmap = array(
193 
194  "createdDate" => "dateTime",
195 
196  "lastModifiedDate" => "dateTime",
197 
198  "displayName" => "string",
199 
200  "issueProduct" => "RecordRef",
201 
202  "description" => "string",
203 
204  "includeChildren" => "boolean",
205 
206  "customForm" => "RecordRef",
207 
208  "itemId" => "string",
209 
210  "isInactive" => "boolean",
211 
212  "availableToPartners" => "boolean",
213 
214  "department" => "RecordRef",
215 
216  "class" => "RecordRef",
217 
218  "location" => "RecordRef",
219 
220  "subsidiaryList" => "RecordRefList",
221 
222  "translationsList" => "TranslationList",
223 
224  "customFieldList" => "CustomFieldList",
225 
226  "internalId" => "string",
227 
228  "externalId" => "string",
229 
230  );
231 
232 }
static $paramtypesmap
Definition: Record.php:8