Netsutie PHP Toolkit
CustomTransactionLine.php
Go to the documentation of this file.
1 <?php
9 
18  public $account;
19 
28  public $line;
29 
38  public $debit;
39 
48  public $credit;
49 
58  public $amount;
59 
68  public $memo;
69 
78  public $entity;
79 
88  public $department;
89 
98  public $class;
99 
108  public $location;
109 
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "account" => "RecordRef",
125 
126  "line" => "integer",
127 
128  "debit" => "float",
129 
130  "credit" => "float",
131 
132  "amount" => "float",
133 
134  "memo" => "string",
135 
136  "entity" => "RecordRef",
137 
138  "department" => "RecordRef",
139 
140  "class" => "RecordRef",
141 
142  "location" => "RecordRef",
143 
144  "customFieldList" => "CustomFieldList",
145 
146  );
147 
148 }