Netsutie PHP Toolkit
CreditMemoApply.php
Go to the documentation of this file.
1 <?php
9 
18  public $apply;
19 
28  public $doc;
29 
38  public $applyDate;
39 
48  public $job;
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 
118  public $line;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "apply" => "boolean",
125 
126  "doc" => "integer",
127 
128  "applyDate" => "dateTime",
129 
130  "job" => "string",
131 
132  "type" => "string",
133 
134  "refNum" => "string",
135 
136  "total" => "float",
137 
138  "due" => "float",
139 
140  "currency" => "string",
141 
142  "amount" => "float",
143 
144  "line" => "integer",
145 
146  );
147 
148 }