Netsutie PHP Toolkit
CustomerStatus.php
Go to the documentation of this file.
1 <?php
8 class CustomerStatus extends Record {
9 
18  public $name;
19 
28  public $stage;
29 
38  public $probability;
39 
48  public $description;
49 
59 
68  public $isInactive;
69 
78  public $internalId;
79 
88  public $externalId;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "name" => "string",
95 
96  "stage" => "CustomerStatusStage",
97 
98  "probability" => "float",
99 
100  "description" => "string",
101 
102  "includeInLeadReports" => "boolean",
103 
104  "isInactive" => "boolean",
105 
106  "internalId" => "string",
107 
108  "externalId" => "string",
109 
110  );
111 
112 }
Definition: Record.php:8