Netsutie PHP Toolkit
CostCategory.php
Go to the documentation of this file.
1 <?php
8 class CostCategory extends Record {
9 
18  public $name;
19 
28  public $account;
29 
38  public $itemCostType;
39 
48  public $isInactive;
49 
58  public $internalId;
59 
68  public $externalId;
69 
70 
71 
72  static $paramtypesmap = array(
73 
74  "name" => "string",
75 
76  "account" => "RecordRef",
77 
78  "itemCostType" => "CostCategoryItemCostType",
79 
80  "isInactive" => "boolean",
81 
82  "internalId" => "string",
83 
84  "externalId" => "string",
85 
86  );
87 
88 }
static $paramtypesmap
Definition: Record.php:8