Netsutie PHP Toolkit
GiftCertificate.php
Go to the documentation of this file.
1 <?php
8 class GiftCertificate extends Record {
9 
18  public $giftCertCode;
19 
28  public $sender;
29 
38  public $name;
39 
48  public $email;
49 
58  public $message;
59 
69 
78  public $createdDate;
79 
89 
99 
109 
118  public $internalId;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "giftCertCode" => "string",
125 
126  "sender" => "string",
127 
128  "name" => "string",
129 
130  "email" => "string",
131 
132  "message" => "string",
133 
134  "expirationDate" => "dateTime",
135 
136  "createdDate" => "dateTime",
137 
138  "lastModifiedDate" => "dateTime",
139 
140  "originalAmount" => "float",
141 
142  "amountRemaining" => "float",
143 
144  "internalId" => "string",
145 
146  );
147 
148 }
Definition: Record.php:8