Netsutie PHP Toolkit
PaymentItem.php
Go to the documentation of this file.
1 <?php
8 class PaymentItem extends Record {
9 
18  public $createdDate;
19 
29 
38  public $description;
39 
49 
58  public $undepFunds;
59 
69 
78  public $issueProduct;
79 
88  public $account;
89 
98  public $customForm;
99 
108  public $itemId;
109 
118  public $displayName;
119 
128  public $isInactive;
129 
139 
148  public $department;
149 
158  public $class;
159 
168  public $location;
169 
179 
189 
199 
208  public $internalId;
209 
218  public $externalId;
219 
220 
221 
222  static $paramtypesmap = array(
223 
224  "createdDate" => "dateTime",
225 
226  "lastModifiedDate" => "dateTime",
227 
228  "description" => "string",
229 
230  "paymentMethod" => "RecordRef",
231 
232  "undepFunds" => "boolean",
233 
234  "includeChildren" => "boolean",
235 
236  "issueProduct" => "RecordRef",
237 
238  "account" => "RecordRef",
239 
240  "customForm" => "RecordRef",
241 
242  "itemId" => "string",
243 
244  "displayName" => "string",
245 
246  "isInactive" => "boolean",
247 
248  "availableToPartners" => "boolean",
249 
250  "department" => "RecordRef",
251 
252  "class" => "RecordRef",
253 
254  "location" => "RecordRef",
255 
256  "subsidiaryList" => "RecordRefList",
257 
258  "translationsList" => "TranslationList",
259 
260  "customFieldList" => "CustomFieldList",
261 
262  "internalId" => "string",
263 
264  "externalId" => "string",
265 
266  );
267 
268 }
static $paramtypesmap
Definition: Record.php:8