Netsutie PHP Toolkit
CampaignEmail.php
Go to the documentation of this file.
1 <?php
8 class CampaignEmail {
9 
18  public $internalId;
19 
29 
38  public $template;
39 
48  public $description;
49 
58  public $subscription;
59 
68  public $channel;
69 
78  public $cost;
79 
88  public $status;
89 
99 
108  public $promoCode;
109 
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "internalId" => "string",
125 
126  "campaignGroup" => "RecordRef",
127 
128  "template" => "RecordRef",
129 
130  "description" => "string",
131 
132  "subscription" => "RecordRef",
133 
134  "channel" => "RecordRef",
135 
136  "cost" => "float",
137 
138  "status" => "CampaignCampaignEmailStatus",
139 
140  "dateScheduled" => "dateTime",
141 
142  "promoCode" => "RecordRef",
143 
144  "customFieldList" => "CustomFieldList",
145 
146  );
147 
148 }
static $paramtypesmap