Netsutie PHP Toolkit
RevRecTemplate.php
Go to the documentation of this file.
1 <?php
8 class RevRecTemplate extends Record {
9 
18  public $name;
19 
29 
39 
49 
59 
68  public $periodOffset;
69 
78  public $revRecOffset;
79 
89 
98  public $isInactive;
99 
109 
118  public $internalId;
119 
128  public $externalId;
129 
130 
131 
132  static $paramtypesmap = array(
133 
134  "name" => "string",
135 
136  "amortizationType" => "RevRecScheduleAmortizationType",
137 
138  "recurrenceType" => "RevRecScheduleRecurrenceType",
139 
140  "recogIntervalSrc" => "RevRecScheduleRecogIntervalSrc",
141 
142  "amortizationPeriod" => "integer",
143 
144  "periodOffset" => "integer",
145 
146  "revRecOffset" => "integer",
147 
148  "initialAmount" => "float",
149 
150  "isInactive" => "boolean",
151 
152  "recurrenceList" => "RevRecTemplateRecurrenceList",
153 
154  "internalId" => "string",
155 
156  "externalId" => "string",
157 
158  );
159 
160 }
Definition: Record.php:8