Netsutie PHP Toolkit
SiteCategory.php
Go to the documentation of this file.
1 <?php
8 class SiteCategory extends Record {
9 
18  public $website;
19 
28  public $itemId;
29 
39 
49 
59 
69 
79 
88  public $isOnline;
89 
98  public $isInactive;
99 
108  public $description;
109 
119 
129 
139 
148  public $pageTitle;
149 
158  public $metaTagHtml;
159 
169 
179 
189 
199 
209 
219 
228  public $internalId;
229 
238  public $externalId;
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "website" => "RecordRef",
245 
246  "itemId" => "string",
247 
248  "parentCategory" => "RecordRef",
249 
250  "categoryListLayout" => "RecordRef",
251 
252  "itemListLayout" => "RecordRef",
253 
254  "relatedItemsListLayout" => "RecordRef",
255 
256  "correlatedItemsListLayout" => "RecordRef",
257 
258  "isOnline" => "boolean",
259 
260  "isInactive" => "boolean",
261 
262  "description" => "string",
263 
264  "storeDetailedDescription" => "string",
265 
266  "storeDisplayThumbnail" => "RecordRef",
267 
268  "storeDisplayImage" => "RecordRef",
269 
270  "pageTitle" => "string",
271 
272  "metaTagHtml" => "string",
273 
274  "excludeFromSitemap" => "boolean",
275 
276  "urlComponent" => "string",
277 
278  "sitemapPriority" => "SitemapPriority",
279 
280  "searchKeywords" => "string",
281 
282  "presentationItemList" => "SiteCategoryPresentationItemList",
283 
284  "translationsList" => "SiteCategoryTranslationList",
285 
286  "internalId" => "string",
287 
288  "externalId" => "string",
289 
290  );
291 
292 }
static $paramtypesmap
Definition: Record.php:8