Netsutie PHP Toolkit
AccountingPeriod.php
Go to the documentation of this file.
1 <?php
8 class AccountingPeriod extends Record {
9 
18  public $periodName;
19 
28  public $parent;
29 
38  public $startDate;
39 
48  public $endDate;
49 
59 
68  public $closedOnDate;
69 
78  public $isAdjust;
79 
89 
98  public $isQuarter;
99 
108  public $isYear;
109 
118  public $closed;
119 
128  public $apLocked;
129 
138  public $arLocked;
139 
149 
158  public $allLocked;
159 
169 
178  public $internalId;
179 
180 
181 
182  static $paramtypesmap = array(
183 
184  "periodName" => "string",
185 
186  "parent" => "RecordRef",
187 
188  "startDate" => "dateTime",
189 
190  "endDate" => "dateTime",
191 
192  "fiscalCalendar" => "RecordRef",
193 
194  "closedOnDate" => "dateTime",
195 
196  "isAdjust" => "boolean",
197 
198  "fiscalCalendarsList" => "AccountingPeriodFiscalCalendarsList",
199 
200  "isQuarter" => "boolean",
201 
202  "isYear" => "boolean",
203 
204  "closed" => "boolean",
205 
206  "apLocked" => "boolean",
207 
208  "arLocked" => "boolean",
209 
210  "payrollLocked" => "boolean",
211 
212  "allLocked" => "boolean",
213 
214  "allowNonGLChanges" => "boolean",
215 
216  "internalId" => "string",
217 
218  );
219 
220 }
Definition: Record.php:8