Netsutie PHP Toolkit
Department.php
Go to the documentation of this file.
1 <?php
8 class Department extends Record {
9 
18  public $name;
19 
29 
38  public $parent;
39 
48  public $isInactive;
49 
59 
69 
79 
88  public $internalId;
89 
98  public $externalId;
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "name" => "string",
105 
106  "includeChildren" => "boolean",
107 
108  "parent" => "RecordRef",
109 
110  "isInactive" => "boolean",
111 
112  "classTranslationList" => "ClassTranslationList",
113 
114  "subsidiaryList" => "RecordRefList",
115 
116  "customFieldList" => "CustomFieldList",
117 
118  "internalId" => "string",
119 
120  "externalId" => "string",
121 
122  );
123 
124 }
static $paramtypesmap
Definition: Department.php:102
$classTranslationList
Definition: Department.php:58
Definition: Record.php:8