Netsutie PHP Toolkit
ItemVendor.php
Go to the documentation of this file.
1 <?php
8 class ItemVendor {
9 
18  public $vendor;
19 
28  public $vendorCode;
29 
39 
49 
59 
69 
78  public $schedule;
79 
88  public $subsidiary;
89 
90 
91 
92  static $paramtypesmap = array(
93 
94  "vendor" => "RecordRef",
95 
96  "vendorCode" => "string",
97 
98  "vendorCurrencyName" => "string",
99 
100  "vendorCurrency" => "RecordRef",
101 
102  "purchasePrice" => "float",
103 
104  "preferredVendor" => "boolean",
105 
106  "schedule" => "RecordRef",
107 
108  "subsidiary" => "string",
109 
110  );
111 
112 }
static $paramtypesmap
Definition: ItemVendor.php:92