Netsutie PHP Toolkit
BillingSchedule.php
Go to the documentation of this file.
1 <?php
8 class BillingSchedule extends Record {
9 
18  public $scheduleType;
19 
28  public $name;
29 
38  public $project;
39 
49 
58  public $initialTerms;
59 
68  public $frequency;
69 
79 
88  public $yearMode;
89 
98  public $yearDowim;
99 
108  public $yearDow;
109 
119 
128  public $yearMonth;
129 
138  public $yearDom;
139 
148  public $monthMode;
149 
158  public $monthDowim;
159 
168  public $monthDow;
169 
178  public $monthDom;
179 
188  public $dayPeriod;
189 
198  public $repeatEvery;
199 
209 
219 
228  public $inArrears;
229 
239 
248  public $isPublic;
249 
259 
268  public $transaction;
269 
278  public $isInactive;
279 
289 
299 
309 
318  public $internalId;
319 
328  public $externalId;
329 
330 
331 
332  static $paramtypesmap = array(
333 
334  "scheduleType" => "BillingScheduleType",
335 
336  "name" => "string",
337 
338  "project" => "RecordRef",
339 
340  "initialAmount" => "string",
341 
342  "initialTerms" => "RecordRef",
343 
344  "frequency" => "BillingScheduleFrequency",
345 
346  "recurrenceDowMaskList" => "RecurrenceDowMaskList",
347 
348  "yearMode" => "BillingScheduleRecurrenceMode",
349 
350  "yearDowim" => "BillingScheduleYearDowim",
351 
352  "yearDow" => "BillingScheduleYearDow",
353 
354  "yearDowimMonth" => "BillingScheduleYearDowimMonth",
355 
356  "yearMonth" => "BillingScheduleYearMonth",
357 
358  "yearDom" => "integer",
359 
360  "monthMode" => "BillingScheduleRecurrenceMode",
361 
362  "monthDowim" => "BillingScheduleMonthDowim",
363 
364  "monthDow" => "BillingScheduleMonthDow",
365 
366  "monthDom" => "integer",
367 
368  "dayPeriod" => "integer",
369 
370  "repeatEvery" => "BillingScheduleRepeatEvery",
371 
372  "billForActuals" => "boolean",
373 
374  "numberRemaining" => "integer",
375 
376  "inArrears" => "boolean",
377 
378  "recurrenceTerms" => "RecordRef",
379 
380  "isPublic" => "boolean",
381 
382  "applyToSubtotal" => "boolean",
383 
384  "transaction" => "RecordRef",
385 
386  "isInactive" => "boolean",
387 
388  "seriesStartDate" => "dateTime",
389 
390  "recurrenceList" => "BillingScheduleRecurrenceList",
391 
392  "milestoneList" => "BillingScheduleMilestoneList",
393 
394  "internalId" => "string",
395 
396  "externalId" => "string",
397 
398  );
399 
400 }
Definition: Record.php:8