Netsutie PHP Toolkit
PaymentMethod.php
Go to the documentation of this file.
1 <?php
8 class PaymentMethod extends Record {
9 
18  public $name;
19 
28  public $creditCard;
29 
38  public $undepFunds;
39 
48  public $account;
49 
58  public $isInactive;
59 
68  public $isOnline;
69 
78  public $visualsList;
79 
88  public $isDebitCard;
89 
99 
109 
119 
129 
138  public $internalId;
139 
148  public $externalId;
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "name" => "string",
155 
156  "creditCard" => "boolean",
157 
158  "undepFunds" => "boolean",
159 
160  "account" => "RecordRef",
161 
162  "isInactive" => "boolean",
163 
164  "isOnline" => "boolean",
165 
166  "visualsList" => "PaymentMethodVisualsList",
167 
168  "isDebitCard" => "boolean",
169 
170  "merchantAccountsList" => "RecordRefList",
171 
172  "payPalEmailAddress" => "string",
173 
174  "expressCheckoutArrangement" => "string",
175 
176  "useExpressCheckout" => "boolean",
177 
178  "internalId" => "string",
179 
180  "externalId" => "string",
181 
182  );
183 
184 }
static $paramtypesmap
Definition: Record.php:8