Netsutie PHP Toolkit
CustomerCreditCards.php
Go to the documentation of this file.
1 <?php
9 
18  public $internalId;
19 
28  public $ccNumber;
29 
38  public $ccExpireDate;
39 
48  public $ccName;
49 
59 
68  public $cardState;
69 
78  public $stateFrom;
79 
89 
98  public $ccMemo;
99 
108  public $validfrom;
109 
118  public $ccDefault;
119 
120 
121 
122  static $paramtypesmap = array(
123 
124  "internalId" => "string",
125 
126  "ccNumber" => "string",
127 
128  "ccExpireDate" => "dateTime",
129 
130  "ccName" => "string",
131 
132  "paymentMethod" => "RecordRef",
133 
134  "cardState" => "RecordRef",
135 
136  "stateFrom" => "dateTime",
137 
138  "debitcardIssueNo" => "string",
139 
140  "ccMemo" => "string",
141 
142  "validfrom" => "dateTime",
143 
144  "ccDefault" => "boolean",
145 
146  );
147 
148 }