Netsutie PHP Toolkit
Folder.php
Go to the documentation of this file.
1 <?php
8 class Folder extends Record {
9 
18  public $name;
19 
28  public $department;
29 
38  public $description;
39 
48  public $isInactive;
49 
58  public $isPrivate;
59 
68  public $bundleable;
69 
78  public $hideInBundle;
79 
88  public $isOnline;
89 
98  public $group;
99 
108  public $parent;
109 
118  public $folderType;
119 
128  public $class;
129 
138  public $location;
139 
148  public $subsidiary;
149 
158  public $internalId;
159 
168  public $externalId;
169 
170 
171 
172  static $paramtypesmap = array(
173 
174  "name" => "string",
175 
176  "department" => "RecordRef",
177 
178  "description" => "string",
179 
180  "isInactive" => "boolean",
181 
182  "isPrivate" => "boolean",
183 
184  "bundleable" => "boolean",
185 
186  "hideInBundle" => "boolean",
187 
188  "isOnline" => "boolean",
189 
190  "group" => "RecordRef",
191 
192  "parent" => "RecordRef",
193 
194  "folderType" => "FolderFolderType",
195 
196  "class" => "RecordRef",
197 
198  "location" => "RecordRef",
199 
200  "subsidiary" => "RecordRef",
201 
202  "internalId" => "string",
203 
204  "externalId" => "string",
205 
206  );
207 
208 }
$bundleable
Definition: Folder.php:68
$subsidiary
Definition: Folder.php:148
$location
Definition: Folder.php:138
$internalId
Definition: Folder.php:158
$externalId
Definition: Folder.php:168
$isInactive
Definition: Folder.php:48
static $paramtypesmap
Definition: Folder.php:172
$folderType
Definition: Folder.php:118
$class
Definition: Folder.php:128
$parent
Definition: Folder.php:108
$name
Definition: Folder.php:18
$hideInBundle
Definition: Folder.php:78
$group
Definition: Folder.php:98
Definition: Folder.php:8
$isOnline
Definition: Folder.php:88
$description
Definition: Folder.php:38
$isPrivate
Definition: Folder.php:58
$department
Definition: Folder.php:28
Definition: Record.php:8