Netsutie PHP Toolkit
CampaignEventResponse.php
Go to the documentation of this file.
1 <?php
9 
18  public $name;
19 
28  public $type;
29 
38  public $dateSent;
39 
48  public $sent;
49 
58  public $opened;
59 
68  public $openedRatio;
69 
78  public $clickedThru;
79 
89 
98  public $responded;
99 
109 
119 
129 
138  public $bounced;
139 
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "name" => "string",
155 
156  "type" => "string",
157 
158  "dateSent" => "dateTime",
159 
160  "sent" => "float",
161 
162  "opened" => "float",
163 
164  "openedRatio" => "float",
165 
166  "clickedThru" => "float",
167 
168  "clickedThruRatio" => "float",
169 
170  "responded" => "integer",
171 
172  "respondedRatio" => "float",
173 
174  "unsubscribed" => "integer",
175 
176  "unsubscribedRatio" => "float",
177 
178  "bounced" => "integer",
179 
180  "bouncedRatio" => "float",
181 
182  );
183 
184 }