Netsutie PHP Toolkit
ItemRevision.php
Go to the documentation of this file.
1 <?php
8 class ItemRevision extends Record {
9 
18  public $item;
19 
28  public $name;
29 
39 
48  public $obsoleteDate;
49 
58  public $memo;
59 
68  public $inactive;
69 
78  public $internalId;
79 
88  public $externalId;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "item" => "RecordRef",
95 
96  "name" => "string",
97 
98  "effectiveDate" => "dateTime",
99 
100  "obsoleteDate" => "dateTime",
101 
102  "memo" => "string",
103 
104  "inactive" => "boolean",
105 
106  "internalId" => "string",
107 
108  "externalId" => "string",
109 
110  );
111 
112 }
static $paramtypesmap
Definition: Record.php:8