Netsutie PHP Toolkit
BudgetCategory.php
Go to the documentation of this file.
1 <?php
8 class BudgetCategory extends Record {
9 
18  public $name;
19 
28  public $budgetType;
29 
38  public $isInactive;
39 
48  public $internalId;
49 
50 
51 
52  static $paramtypesmap = array(
53 
54  "name" => "string",
55 
56  "budgetType" => "boolean",
57 
58  "isInactive" => "boolean",
59 
60  "internalId" => "string",
61 
62  );
63 
64 }
Definition: Record.php:8