Netsutie PHP Toolkit
SearchResult.php
Go to the documentation of this file.
1 <?php
8 class SearchResult {
9 
18  public $status;
19 
28  public $totalRecords;
29 
38  public $pageSize;
39 
48  public $totalPages;
49 
58  public $pageIndex;
59 
68  public $searchId;
69 
78  public $recordList;
79 
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "status" => "Status",
95 
96  "totalRecords" => "integer",
97 
98  "pageSize" => "integer",
99 
100  "totalPages" => "integer",
101 
102  "pageIndex" => "integer",
103 
104  "searchId" => "string",
105 
106  "recordList" => "RecordList",
107 
108  "searchRowList" => "SearchRowList",
109 
110  );
111 
112 }
static $paramtypesmap