Netsutie PHP Toolkit
CampaignEvent.php
Go to the documentation of this file.
1 <?php
8 class CampaignEvent {
9 
18  public $internalId;
19 
29 
38  public $description;
39 
48  public $subscription;
49 
58  public $channel;
59 
68  public $cost;
69 
78  public $status;
79 
89 
98  public $promoCode;
99 
109 
110 
111 
112  static $paramtypesmap = array(
113 
114  "internalId" => "string",
115 
116  "campaignGroup" => "RecordRef",
117 
118  "description" => "string",
119 
120  "subscription" => "RecordRef",
121 
122  "channel" => "RecordRef",
123 
124  "cost" => "float",
125 
126  "status" => "CampaignCampaignEventStatus",
127 
128  "dateScheduled" => "dateTime",
129 
130  "promoCode" => "RecordRef",
131 
132  "customFieldList" => "CustomFieldList",
133 
134  );
135 
136 }
static $paramtypesmap