Netsutie PHP Toolkit
PaymentMethodSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $account;
19 
28  public $creditCard;
29 
38  public $externalId;
39 
49 
58  public $internalId;
59 
69 
78  public $isDebitCard;
79 
88  public $isInactive;
89 
98  public $name;
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "account" => "SearchMultiSelectField",
105 
106  "creditCard" => "SearchBooleanField",
107 
108  "externalId" => "SearchMultiSelectField",
109 
110  "externalIdString" => "SearchStringField",
111 
112  "internalId" => "SearchMultiSelectField",
113 
114  "internalIdNumber" => "SearchLongField",
115 
116  "isDebitCard" => "SearchBooleanField",
117 
118  "isInactive" => "SearchBooleanField",
119 
120  "name" => "SearchStringField",
121 
122  );
123 
124 }