Netsutie PHP Toolkit
VendorCreditApply.php
Go to the documentation of this file.
1 <?php
9 
18  public $apply;
19 
28  public $applyDate;
29 
38  public $doc;
39 
48  public $line;
49 
58  public $type;
59 
68  public $refNum;
69 
78  public $total;
79 
88  public $due;
89 
98  public $currency;
99 
108  public $amount;
109 
110 
111 
112  static $paramtypesmap = array(
113 
114  "apply" => "boolean",
115 
116  "applyDate" => "dateTime",
117 
118  "doc" => "integer",
119 
120  "line" => "integer",
121 
122  "type" => "string",
123 
124  "refNum" => "string",
125 
126  "total" => "float",
127 
128  "due" => "float",
129 
130  "currency" => "string",
131 
132  "amount" => "float",
133 
134  );
135 
136 }