Netsutie PHP Toolkit
CouponCodeSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $code;
19 
28  public $dateSent;
29 
38  public $id;
39 
48  public $internalId;
49 
59 
68  public $promotion;
69 
78  public $recipient;
79 
88  public $useCount;
89 
98  public $used;
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "code" => "SearchStringField",
105 
106  "dateSent" => "SearchDateField",
107 
108  "id" => "SearchLongField",
109 
110  "internalId" => "SearchMultiSelectField",
111 
112  "internalIdNumber" => "SearchLongField",
113 
114  "promotion" => "SearchMultiSelectField",
115 
116  "recipient" => "SearchMultiSelectField",
117 
118  "useCount" => "SearchLongField",
119 
120  "used" => "SearchBooleanField",
121 
122  );
123 
124 }