Netsutie PHP Toolkit
CustomerPaymentCredit.php
Go to the documentation of this file.
1 <?php
9 
18  public $apply;
19 
28  public $doc;
29 
38  public $line;
39 
48  public $creditDate;
49 
58  public $type;
59 
68  public $refNum;
69 
78  public $appliedTo;
79 
88  public $total;
89 
98  public $due;
99 
108  public $currency;
109 
118  public $amount;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "apply" => "boolean",
125 
126  "doc" => "integer",
127 
128  "line" => "integer",
129 
130  "creditDate" => "dateTime",
131 
132  "type" => "string",
133 
134  "refNum" => "string",
135 
136  "appliedTo" => "string",
137 
138  "total" => "float",
139 
140  "due" => "float",
141 
142  "currency" => "string",
143 
144  "amount" => "float",
145 
146  );
147 
148 }