Netsutie PHP Toolkit
Term.php
Go to the documentation of this file.
1 <?php
8 class Term extends Record {
9 
18  public $name;
19 
28  public $dateDriven;
29 
39 
49 
59 
69 
79 
89 
99 
108  public $preferred;
109 
118  public $isInactive;
119 
128  public $internalId;
129 
138  public $externalId;
139 
140 
141 
142  static $paramtypesmap = array(
143 
144  "name" => "string",
145 
146  "dateDriven" => "boolean",
147 
148  "daysUntilNetDue" => "integer",
149 
150  "discountPercent" => "float",
151 
152  "daysUntilExpiry" => "integer",
153 
154  "dayOfMonthNetDue" => "integer",
155 
156  "dueNextMonthIfWithinDays" => "integer",
157 
158  "discountPercentDateDriven" => "float",
159 
160  "dayDiscountExpires" => "integer",
161 
162  "preferred" => "boolean",
163 
164  "isInactive" => "boolean",
165 
166  "internalId" => "string",
167 
168  "externalId" => "string",
169 
170  );
171 
172 }
$internalId
Definition: Term.php:128
$dueNextMonthIfWithinDays
Definition: Term.php:78
$dayOfMonthNetDue
Definition: Term.php:68
$discountPercentDateDriven
Definition: Term.php:88
$daysUntilExpiry
Definition: Term.php:58
$daysUntilNetDue
Definition: Term.php:38
$isInactive
Definition: Term.php:118
Definition: Term.php:8
$preferred
Definition: Term.php:108
$dayDiscountExpires
Definition: Term.php:98
$discountPercent
Definition: Term.php:48
static $paramtypesmap
Definition: Term.php:142
$externalId
Definition: Term.php:138
$dateDriven
Definition: Term.php:28
$name
Definition: Term.php:18
Definition: Record.php:8