Netsutie PHP Toolkit
SupportCaseOrigin.php
Go to the documentation of this file.
1 <?php
8 class SupportCaseOrigin extends Record {
9 
18  public $name;
19 
28  public $insertBefore;
29 
38  public $description;
39 
48  public $isInactive;
49 
58  public $internalId;
59 
68  public $externalId;
69 
70 
71 
72  static $paramtypesmap = array(
73 
74  "name" => "string",
75 
76  "insertBefore" => "RecordRef",
77 
78  "description" => "string",
79 
80  "isInactive" => "boolean",
81 
82  "internalId" => "string",
83 
84  "externalId" => "string",
85 
86  );
87 
88 }
Definition: Record.php:8