Netsutie PHP Toolkit
BinWorksheet.php
Go to the documentation of this file.
1 <?php
8 class BinWorksheet extends Record {
9 
18  public $createdDate;
19 
29 
38  public $tranDate;
39 
48  public $memo;
49 
58  public $location;
59 
68  public $tranId;
69 
78  public $itemList;
79 
88  public $internalId;
89 
98  public $externalId;
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "createdDate" => "dateTime",
105 
106  "lastModifiedDate" => "dateTime",
107 
108  "tranDate" => "dateTime",
109 
110  "memo" => "string",
111 
112  "location" => "RecordRef",
113 
114  "tranId" => "string",
115 
116  "itemList" => "BinWorksheetItemList",
117 
118  "internalId" => "string",
119 
120  "externalId" => "string",
121 
122  );
123 
124 }
static $paramtypesmap
Definition: Record.php:8