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