Netsutie PHP Toolkit
CouponCode.php
Go to the documentation of this file.
1 <?php
8 class CouponCode extends Record {
9 
18  public $promotion;
19 
28  public $code;
29 
38  public $recipient;
39 
48  public $dateSent;
49 
58  public $used;
59 
68  public $useCount;
69 
78  public $internalId;
79 
88  public $externalId;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "promotion" => "RecordRef",
95 
96  "code" => "string",
97 
98  "recipient" => "RecordRef",
99 
100  "dateSent" => "dateTime",
101 
102  "used" => "boolean",
103 
104  "useCount" => "integer",
105 
106  "internalId" => "string",
107 
108  "externalId" => "string",
109 
110  );
111 
112 }
static $paramtypesmap
Definition: CouponCode.php:92
Definition: Record.php:8