Version Notes
Montée de version librairie PHP Payline v4.43
Modification du format d'identifiant du portefeuille client
Download this release
Release Info
Developer | Payline |
Extension | Payline |
Version | 1.8.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.8.3 to 1.8.3.1
- app/code/community/Monext/Payline/Block/Direct.php +2 -0
- app/code/community/Monext/Payline/Helper/Data.php +14 -17
- app/code/community/Monext/Payline/Model/Wallet.php +17 -5
- app/code/community/Monext/Payline/etc/config.xml +1 -1
- app/code/community/Monext/Payline/lib/PaylineByMonext.wsdl +169 -0
- app/code/community/Monext/Payline/lib/paylineSDK.php +43 -7
- app/code/community/Monext/Payline/lib/{v4.41.wsdl → v4.43.wsdl} +3451 -3444
- package.xml +6 -10
app/code/community/Monext/Payline/Block/Direct.php
CHANGED
@@ -64,6 +64,8 @@ class Monext_Payline_Block_Direct extends Mage_Payment_Block_Form
|
|
64 |
$years[$index1 + 1] = $years[$index1] + 1;
|
65 |
$years[$index1 + 2] = $years[$index1] + 2;
|
66 |
$years[$index1 + 3] = $years[$index1] + 3;
|
|
|
|
|
67 |
return $years;
|
68 |
}
|
69 |
|
64 |
$years[$index1 + 1] = $years[$index1] + 1;
|
65 |
$years[$index1 + 2] = $years[$index1] + 2;
|
66 |
$years[$index1 + 3] = $years[$index1] + 3;
|
67 |
+
$years[$index1 + 4] = $years[$index1] + 4;
|
68 |
+
$years[$index1 + 5] = $years[$index1] + 5;
|
69 |
return $years;
|
70 |
}
|
71 |
|
app/code/community/Monext/Payline/Helper/Data.php
CHANGED
@@ -304,19 +304,19 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data
|
|
304 |
public function createWalletForCurrentCustomer($paylineSDK, $array)
|
305 |
{
|
306 |
if ($this->canSubscribeWallet()) {
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
->setWalletContractNumber($array['contractNumber'])
|
315 |
->save();
|
316 |
-
} catch (Mage_Core_Exception $e) {
|
317 |
-
Mage::logException($e);
|
318 |
}
|
319 |
-
|
|
|
|
|
320 |
}
|
321 |
}
|
322 |
|
@@ -806,7 +806,7 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data
|
|
806 |
|
807 |
/**
|
808 |
*
|
809 |
-
*
|
810 |
* @param $paylineSDK the current sdk instance
|
811 |
* @param $order the current order
|
812 |
* @param $sendPaylineproductCat flag to determine wether store or Payline product categories shall be sent
|
@@ -831,7 +831,7 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data
|
|
831 |
$categorySet = false;
|
832 |
$subcategory1Set = false;
|
833 |
$subcategory2Set = false;
|
834 |
-
for($c=0;$c<$productCategoryDepth
|
835 |
$productCategory = Mage::getModel('catalog/category')->load($productCategoryTree[$c]);
|
836 |
$productCategoryData = $productCategory->getData();
|
837 |
if(!in_array($productCategoryData['entity_id'],array(1,2))){
|
@@ -861,11 +861,8 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data
|
|
861 |
}
|
862 |
}
|
863 |
}
|
864 |
-
|
865 |
-
|
866 |
-
$product['subcategory1'] = Mage::helper('payline')->encodeString(substr(str_replace(array("\r","\n","\t",), array('','',''),$product['subcategory1']),0,50));
|
867 |
-
$product['subcategory2'] = Mage::helper('payline')->encodeString(substr(str_replace(array("\r","\n","\t",), array('','',''),$product['subcategory2']),0,50));
|
868 |
-
*/
|
869 |
$product['category'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['category']),0,50));
|
870 |
$product['subcategory1'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['subcategory1']),0,50));
|
871 |
$product['subcategory2'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['subcategory2']),0,50));
|
304 |
public function createWalletForCurrentCustomer($paylineSDK, $array)
|
305 |
{
|
306 |
if ($this->canSubscribeWallet()) {
|
307 |
+
try {
|
308 |
+
$customer = Mage::getSingleton('customer/session')->getCustomer();
|
309 |
+
$array['contractNumber'] = $array['payment']['contractNumber'];
|
310 |
+
$array['wallet']['walletId'] = Mage::getModel('payline/wallet')->generateWalletId($customer->id); // TODO
|
311 |
+
$walletResult = $paylineSDK->createWallet($array);
|
312 |
+
if (isset($walletResult['result']['code']) && $walletResult['result']['code'] == '02500') {
|
313 |
+
$customer->setWalletId($array['wallet']['walletId'])
|
314 |
->setWalletContractNumber($array['contractNumber'])
|
315 |
->save();
|
|
|
|
|
316 |
}
|
317 |
+
} catch (Mage_Core_Exception $e) {
|
318 |
+
Mage::logException($e);
|
319 |
+
}
|
320 |
}
|
321 |
}
|
322 |
|
806 |
|
807 |
/**
|
808 |
*
|
809 |
+
* Sets order details in Payline request, from cart content
|
810 |
* @param $paylineSDK the current sdk instance
|
811 |
* @param $order the current order
|
812 |
* @param $sendPaylineproductCat flag to determine wether store or Payline product categories shall be sent
|
831 |
$categorySet = false;
|
832 |
$subcategory1Set = false;
|
833 |
$subcategory2Set = false;
|
834 |
+
for($c=0;$c<$productCategoryDepth-1;$c++){
|
835 |
$productCategory = Mage::getModel('catalog/category')->load($productCategoryTree[$c]);
|
836 |
$productCategoryData = $productCategory->getData();
|
837 |
if(!in_array($productCategoryData['entity_id'],array(1,2))){
|
861 |
}
|
862 |
}
|
863 |
}
|
864 |
+
|
865 |
+
// delete special characters
|
|
|
|
|
|
|
866 |
$product['category'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['category']),0,50));
|
867 |
$product['subcategory1'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['subcategory1']),0,50));
|
868 |
$product['subcategory2'] = preg_replace('/[^A-Za-z0-9\-]/', '', substr(str_replace(array("\r","\n","\t"," "), array('','','',''),$product['subcategory2']),0,50));
|
app/code/community/Monext/Payline/Model/Wallet.php
CHANGED
@@ -178,13 +178,25 @@ class Monext_Payline_Model_Wallet extends Mage_Payment_Model_Method_Abstract
|
|
178 |
* @param int $length
|
179 |
* @return string
|
180 |
*/
|
181 |
-
public function generateWalletId($length=
|
|
|
|
|
|
|
182 |
$characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWZ";
|
183 |
-
$
|
184 |
-
|
185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
}
|
187 |
-
|
|
|
188 |
}
|
189 |
|
190 |
/**
|
178 |
* @param int $length
|
179 |
* @return string
|
180 |
*/
|
181 |
+
public function generateWalletId($length=10){
|
182 |
+
$customer = Mage::getSingleton('customer/session')->getCustomer();
|
183 |
+
$prefix = $customer->getId() ? $customer->getId() : "XXX"; // prefix start with current customer ID if set, XXX otherwise
|
184 |
+
$prefix .= '_'.date('Ymd',time()); // current date (format YYYYMMDD) is added to the prefix
|
185 |
$characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWZ";
|
186 |
+
$customerData = array('1','1'); // fake data in order to enter while loop
|
187 |
+
$walletId = "";
|
188 |
+
|
189 |
+
while(sizeof($customerData) != 0){ // this loop make sure that generated wallet ID is not already used
|
190 |
+
$string = '_';
|
191 |
+
for ($p = 0; $p < $length; $p++) {
|
192 |
+
$string .= $characters[mt_rand(0, strlen($characters)-1)];
|
193 |
+
}
|
194 |
+
$walletId = $prefix.$string;
|
195 |
+
$customerModel = Mage::getModel('customer/customer')->getCollection()->addFieldToFilter('wallet_id',$walletId); // search for a cistomer having this wallet ID
|
196 |
+
$customerData = $customerModel->getFirstItem()->getData();
|
197 |
}
|
198 |
+
|
199 |
+
return $walletId;
|
200 |
}
|
201 |
|
202 |
/**
|
app/code/community/Monext/Payline/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Monext_Payline>
|
5 |
-
<version>1.8.3</version>
|
6 |
</Monext_Payline>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Monext_Payline>
|
5 |
+
<version>1.8.3.1</version>
|
6 |
</Monext_Payline>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Monext/Payline/lib/PaylineByMonext.wsdl
ADDED
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<definitions name="PaylinebyMonext" targetNamespace="urn:PaylinebyMonext"
|
3 |
+
xmlns:typens="urn:PaylinebyMonext" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4 |
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
|
5 |
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">
|
6 |
+
<types>
|
7 |
+
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:PaylinebyMonext">
|
8 |
+
<complexType name="paymentMean">
|
9 |
+
<annotation>
|
10 |
+
<documentation>This element contains infos aboout a payment mean</documentation>
|
11 |
+
</annotation>
|
12 |
+
<sequence>
|
13 |
+
<element name="code" type="xsd:string"/>
|
14 |
+
<element name="logoUrl" type="xsd:string"/>
|
15 |
+
</sequence>
|
16 |
+
</complexType>
|
17 |
+
<complexType name="getPaymentMeansResponse">
|
18 |
+
<annotation>
|
19 |
+
<documentation>This element is the response from getPaymentMeans service</documentation>
|
20 |
+
</annotation>
|
21 |
+
<sequence>
|
22 |
+
<element name="result" nillable="false" type="xsd:string"/>
|
23 |
+
<element name="listPaymentMean" nillable="false">
|
24 |
+
<complexType>
|
25 |
+
<sequence>
|
26 |
+
<element maxOccurs="unbounded" minOccurs="0" name="paymentMean" type="typens:paymentMean"/>
|
27 |
+
</sequence>
|
28 |
+
</complexType>
|
29 |
+
</element>
|
30 |
+
</sequence>
|
31 |
+
</complexType>
|
32 |
+
<complexType name="pointOfSale">
|
33 |
+
<annotation>
|
34 |
+
<documentation>
|
35 |
+
This element contains all information about point of sale
|
36 |
+
</documentation>
|
37 |
+
</annotation>
|
38 |
+
<sequence>
|
39 |
+
<element name="label" nillable="true" type="xsd:string"/>
|
40 |
+
<element name="webmasterEmail" nillable="true" type="xsd:string"/>
|
41 |
+
<element name="webstoreURL" nillable="true" type="xsd:string"/>
|
42 |
+
<element name="contracts">
|
43 |
+
<annotation>
|
44 |
+
<documentation>list of contract</documentation>
|
45 |
+
</annotation>
|
46 |
+
<complexType>
|
47 |
+
<sequence>
|
48 |
+
<element maxOccurs="unbounded" minOccurs="0" name="contract" type="typens:contract"/>
|
49 |
+
</sequence>
|
50 |
+
</complexType>
|
51 |
+
</element>
|
52 |
+
<element name="customPaymentPageCodeList">
|
53 |
+
<annotation>
|
54 |
+
<documentation>list of custom payment page code</documentation>
|
55 |
+
</annotation>
|
56 |
+
<complexType>
|
57 |
+
<sequence>
|
58 |
+
<element maxOccurs="unbounded" minOccurs="0" name="customPaymentPageCode" type="typens:customPaymentPageCode"/>
|
59 |
+
</sequence>
|
60 |
+
</complexType>
|
61 |
+
</element>
|
62 |
+
</sequence>
|
63 |
+
</complexType>
|
64 |
+
<complexType name="customPaymentPageCode">
|
65 |
+
<annotation>
|
66 |
+
<documentation>
|
67 |
+
This element contains all information about customPaymentPageCode
|
68 |
+
</documentation>
|
69 |
+
</annotation>
|
70 |
+
<sequence>
|
71 |
+
<element name="code" nillable="true" type="xsd:string"/>
|
72 |
+
<element name="label" nillable="true" type="xsd:string"/>
|
73 |
+
<element name="type" nillable="true" type="xsd:string"/>
|
74 |
+
</sequence>
|
75 |
+
</complexType>
|
76 |
+
<complexType name="contract">
|
77 |
+
<annotation>
|
78 |
+
<documentation>
|
79 |
+
This element contains all information about contract
|
80 |
+
</documentation>
|
81 |
+
</annotation>
|
82 |
+
<sequence>
|
83 |
+
<element name="cardType" nillable="true" type="xsd:string"/>
|
84 |
+
<element minOccurs="0" name="label" nillable="true" type="xsd:string"/>
|
85 |
+
<element name="contractNumber" nillable="true" type="xsd:string"/>
|
86 |
+
<element maxOccurs="1" minOccurs="0" name="enrolment3DS" type="xsd:string"/>
|
87 |
+
</sequence>
|
88 |
+
</complexType>
|
89 |
+
<complexType name="insertMerchantSettingsRequest">
|
90 |
+
<annotation>
|
91 |
+
<documentation>
|
92 |
+
This element contains request parameters for service insertMerchantSettings
|
93 |
+
</documentation>
|
94 |
+
</annotation>
|
95 |
+
<sequence>
|
96 |
+
<element name="cryptedMerchantID" nillable="true" type="xsd:string"/>
|
97 |
+
<element name="environment" nillable="true" type="xsd:string"/>
|
98 |
+
<element name="listPointOfSale" nillable="false">
|
99 |
+
<complexType>
|
100 |
+
<sequence>
|
101 |
+
<element maxOccurs="unbounded" minOccurs="0" name="pointOfSale" type="typens:pointOfSale"/>
|
102 |
+
</sequence>
|
103 |
+
</complexType>
|
104 |
+
</element>
|
105 |
+
</sequence>
|
106 |
+
</complexType>
|
107 |
+
<complexType name="insertMerchantSettingsResponse">
|
108 |
+
<annotation>
|
109 |
+
<documentation>
|
110 |
+
This element contains response from service insertMerchantSettings
|
111 |
+
</documentation>
|
112 |
+
</annotation>
|
113 |
+
<sequence>
|
114 |
+
<element name="code" nillable="true" type="xsd:string"/>
|
115 |
+
<element name="message" nillable="true" type="xsd:string"/>
|
116 |
+
<element name="returnUrl" nillable="true" type="xsd:string"/>
|
117 |
+
</sequence>
|
118 |
+
</complexType>
|
119 |
+
</xsd:schema>
|
120 |
+
</types>
|
121 |
+
<message name="getPaymentMeansRequest">
|
122 |
+
</message>
|
123 |
+
<message name="getPaymentMeansResponse">
|
124 |
+
<part name="return" type="typens:getPaymentMeansResponse" />
|
125 |
+
</message>
|
126 |
+
<message name="insertMerchantSettingsRequest">
|
127 |
+
<part name="request" type="typens:insertMerchantSettingsRequest" />
|
128 |
+
</message>
|
129 |
+
<message name="insertMerchantSettingsResponse">
|
130 |
+
<part name="return" type="typens:insertMerchantSettingsResponse" />
|
131 |
+
</message>
|
132 |
+
<portType name="PaylinebyMonextPort">
|
133 |
+
<operation name="getPaymentMeans">
|
134 |
+
<input message="typens:getPaymentMeansRequest" />
|
135 |
+
<output message="typens:getPaymentMeansResponse" />
|
136 |
+
</operation>
|
137 |
+
<operation name="insertMerchantSettings">
|
138 |
+
<input message="typens:insertMerchantSettingsRequest" />
|
139 |
+
<output message="typens:insertMerchantSettingsResponse" />
|
140 |
+
</operation>
|
141 |
+
</portType>
|
142 |
+
<binding name="PaylinebyMonextBinding" type="typens:PaylinebyMonextPort">
|
143 |
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
|
144 |
+
<operation name="getPaymentMeans">
|
145 |
+
<soap:operation soapAction="PaylinebyMonextAction" />
|
146 |
+
<input name="getPaymentMeansRequest">
|
147 |
+
<soap:body use="encoded" namespace="urn:PaylinebyMonext" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
148 |
+
</input>
|
149 |
+
<output name="getPaymentMeansResponse">
|
150 |
+
<soap:body use="encoded" namespace="urn:PaylinebyMonext" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
151 |
+
</output>
|
152 |
+
</operation>
|
153 |
+
<operation name="insertMerchantSettings">
|
154 |
+
<soap:operation soapAction="PaylinebyMonextAction" />
|
155 |
+
<input name="insertMerchantSettingsRequest">
|
156 |
+
<soap:body use="encoded" namespace="urn:PaylinebyMonext" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
157 |
+
</input>
|
158 |
+
<output name="insertMerchantSettingsResponse">
|
159 |
+
<soap:body use="encoded" namespace="urn:PaylinebyMonext" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
160 |
+
</output>
|
161 |
+
</operation>
|
162 |
+
</binding>
|
163 |
+
<service name="PaylinebyMonextService">
|
164 |
+
<documentation>general information about Payline by Monext</documentation>
|
165 |
+
<port name="PaylinebyMonextPort" binding="typens:PaylinebyMonextBinding">
|
166 |
+
<soap:address location="http://demo.payline.com/~product/PaylinebyMonextEndpoint.php" />
|
167 |
+
</port>
|
168 |
+
</service>
|
169 |
+
</definitions>
|
app/code/community/Monext/Payline/lib/paylineSDK.php
CHANGED
@@ -124,7 +124,9 @@ class pl_address{
|
|
124 |
public $cityName;
|
125 |
public $zipCode;
|
126 |
public $country;
|
|
|
127 |
public $state;
|
|
|
128 |
public $phone;
|
129 |
}
|
130 |
|
@@ -163,6 +165,10 @@ class pl_buyer{
|
|
163 |
public $accountOrderCount;
|
164 |
public $ip;
|
165 |
public $mobilePhone;
|
|
|
|
|
|
|
|
|
166 |
|
167 |
function __construct() {
|
168 |
$this->accountCreateDate = date('d/m/y', time());
|
@@ -404,7 +410,7 @@ final class paylineLog {
|
|
404 |
class paylineSDK{
|
405 |
|
406 |
// kit version
|
407 |
-
const KIT_VERSION = 'module Magento 1.8.3';
|
408 |
|
409 |
// trace log
|
410 |
var $logger;
|
@@ -418,7 +424,7 @@ class paylineSDK{
|
|
418 |
|
419 |
// SOAP URL's
|
420 |
const PAYLINE_NAMESPACE = 'http://obj.ws.payline.experian.com';
|
421 |
-
const WSDL = 'v4.
|
422 |
const DEV_ENDPOINT = 'https://ws.dev.payline.com/V4/services/';
|
423 |
const HOMO_ENDPOINT = 'https://homologation.payline.com/V4/services/';
|
424 |
const PROD_ENDPOINT = 'https://services.payline.com/V4/services/';
|
@@ -486,6 +492,7 @@ class paylineSDK{
|
|
486 |
|
487 |
// getMerchantSettings Array
|
488 |
private $posData;
|
|
|
489 |
|
490 |
/**
|
491 |
* contructor of PAYLINESDK CLASS
|
@@ -501,7 +508,7 @@ class paylineSDK{
|
|
501 |
}
|
502 |
|
503 |
$this->writeTrace('----------------------------------------------------------');
|
504 |
-
$this->writeTrace('paylineSDK::__construct('.$this->hideChars($merchant_id,6,1).', '.$this->hideChars($access_key,1,3).", $proxy_host, $proxy_port, $proxy_login, $proxy_password, $environment)");
|
505 |
$this->header_soap = array();
|
506 |
$this->header_soap['login'] = $merchant_id;
|
507 |
$this->header_soap['password'] = $access_key;
|
@@ -1559,6 +1566,24 @@ class paylineSDK{
|
|
1559 |
return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getMerchantSettings');
|
1560 |
}
|
1561 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1562 |
private function addPOSFromObject($oPointOfSell,$pos){
|
1563 |
if(isset($oPointOfSell->contracts->contract)){
|
1564 |
$this->posData[$pos] = array();
|
@@ -1572,7 +1597,7 @@ class paylineSDK{
|
|
1572 |
$this->posData[$pos]['contracts'][$ctr]['cardType'] = $contract->cardType;
|
1573 |
$this->posData[$pos]['contracts'][$ctr]['label'] = $contract->label;
|
1574 |
$this->posData[$pos]['contracts'][$ctr]['contractNumber'] = $contract->contractNumber;
|
1575 |
-
$this->posData[$pos]['contracts'][$ctr]['logo'] = '';
|
1576 |
if($contract->logoEnable){
|
1577 |
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->downloadCustomLogo($contract->normalLogo, $contract->normalLogoMime, $contract->contractNumber, $oPointOfSell->label);
|
1578 |
}
|
@@ -1583,7 +1608,7 @@ class paylineSDK{
|
|
1583 |
$this->posData[$pos]['contracts'][0]['cardType'] = $oPointOfSell->contracts->contract->cardType;
|
1584 |
$this->posData[$pos]['contracts'][0]['label'] = $oPointOfSell->contracts->contract->label;
|
1585 |
$this->posData[$pos]['contracts'][0]['contractNumber'] = $oPointOfSell->contracts->contract->contractNumber;
|
1586 |
-
$this->posData[$pos]['contracts'][0]['logo'] = '';
|
1587 |
if($oPointOfSell->contracts->contract->logoEnable){
|
1588 |
$this->posData[$pos]['contracts'][0]['logo'] = $this->downloadCustomLogo($oPointOfSell->contracts->contract->normalLogo, $oPointOfSell->contracts->contract->normalLogoMime, $oPointOfSell->contracts->contract->contractNumber, $oPointOfSell->label);
|
1589 |
}
|
@@ -1606,7 +1631,7 @@ class paylineSDK{
|
|
1606 |
$this->posData[$pos]['contracts'][0]['cardType'] = $aPointOfSell['contracts']['contract']['cardType'];
|
1607 |
$this->posData[$pos]['contracts'][0]['label'] = $aPointOfSell['contracts']['contract']['label'];
|
1608 |
$this->posData[$pos]['contracts'][0]['contractNumber'] = $aPointOfSell['contracts']['contract']['contractNumber'];
|
1609 |
-
$this->posData[$pos]['contracts'][0]['logo'] = '';
|
1610 |
if($aPointOfSell['contracts']['contract']['logoEnable']){
|
1611 |
$this->posData[$pos]['contracts'][0]['logo'] = $this->downloadCustomLogo($aPointOfSell['contracts']['contract']['normalLogo'], $aPointOfSell['contracts']['contract']['normalLogoMime'], $aPointOfSell['contracts']['contract']['contractNumber'], $aPointOfSell['label']);
|
1612 |
}
|
@@ -1617,7 +1642,7 @@ class paylineSDK{
|
|
1617 |
$this->posData[$pos]['contracts'][$ctr]['cardType'] = $contract->cardType;
|
1618 |
$this->posData[$pos]['contracts'][$ctr]['label'] = $contract->label;
|
1619 |
$this->posData[$pos]['contracts'][$ctr]['contractNumber'] = $contract->contractNumber;
|
1620 |
-
$this->posData[$pos]['contracts'][$ctr]['logo'] = '';
|
1621 |
if($contract->logoEnable){
|
1622 |
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->downloadCustomLogo($contract->normalLogo, $contract->normalLogoMime, $contract->contractNumber, $aPointOfSell['label']);
|
1623 |
}
|
@@ -1668,6 +1693,17 @@ class paylineSDK{
|
|
1668 |
}
|
1669 |
|
1670 |
public function getMerchantSettingsToArray($array){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1671 |
if(isset($array['logoPath'])){
|
1672 |
$this->customLogoPath = $array['logoPath'];
|
1673 |
}
|
124 |
public $cityName;
|
125 |
public $zipCode;
|
126 |
public $country;
|
127 |
+
public $county;
|
128 |
public $state;
|
129 |
+
public $phoneType;
|
130 |
public $phone;
|
131 |
}
|
132 |
|
165 |
public $accountOrderCount;
|
166 |
public $ip;
|
167 |
public $mobilePhone;
|
168 |
+
public $legalStatus;
|
169 |
+
public $legalDocument;
|
170 |
+
public $birthDate;
|
171 |
+
public $fingerprintID;
|
172 |
|
173 |
function __construct() {
|
174 |
$this->accountCreateDate = date('d/m/y', time());
|
410 |
class paylineSDK{
|
411 |
|
412 |
// kit version
|
413 |
+
const KIT_VERSION = 'module Magento 1.8.3.1';
|
414 |
|
415 |
// trace log
|
416 |
var $logger;
|
424 |
|
425 |
// SOAP URL's
|
426 |
const PAYLINE_NAMESPACE = 'http://obj.ws.payline.experian.com';
|
427 |
+
const WSDL = 'v4.43.wsdl';
|
428 |
const DEV_ENDPOINT = 'https://ws.dev.payline.com/V4/services/';
|
429 |
const HOMO_ENDPOINT = 'https://homologation.payline.com/V4/services/';
|
430 |
const PROD_ENDPOINT = 'https://services.payline.com/V4/services/';
|
492 |
|
493 |
// getMerchantSettings Array
|
494 |
private $posData;
|
495 |
+
private $paymentMeansLogos;
|
496 |
|
497 |
/**
|
498 |
* contructor of PAYLINESDK CLASS
|
508 |
}
|
509 |
|
510 |
$this->writeTrace('----------------------------------------------------------');
|
511 |
+
$this->writeTrace('paylineSDK::__construct('.$this->hideChars($merchant_id,6,1).', '.$this->hideChars($access_key,1,3).", $proxy_host, $proxy_port, $proxy_login, ".$this->hideChars($proxy_password,1,1).", $environment)");
|
512 |
$this->header_soap = array();
|
513 |
$this->header_soap['login'] = $merchant_id;
|
514 |
$this->header_soap['password'] = $access_key;
|
1566 |
return $this->webServiceRequest($array,$WSRequest,paylineSDK::DIRECT_API,'getMerchantSettings');
|
1567 |
}
|
1568 |
|
1569 |
+
private function getPaymentMeans(){
|
1570 |
+
$this->writeTrace('getPaymentMeans');
|
1571 |
+
try{
|
1572 |
+
$client = new SoapClient(dirname(__FILE__).'/PaylineByMonext.wsdl', $this->header_soap);
|
1573 |
+
$WSresponse = $client->getPaymentMeans();
|
1574 |
+
$response = paylineUtil::responseToArray($WSresponse);
|
1575 |
+
$this->writeTrace($response['result']);
|
1576 |
+
return $response;
|
1577 |
+
}catch ( Exception $e ) {
|
1578 |
+
$this->writeTrace("Exception : ".$e->getMessage());
|
1579 |
+
$ERROR = array();
|
1580 |
+
$ERROR['result']['code'] = paylineSDK::ERR_CODE;
|
1581 |
+
$ERROR['result']['longMessage'] = $e->getMessage();
|
1582 |
+
$ERROR['result']['shortMessage'] = $e->getMessage();
|
1583 |
+
return $ERROR;
|
1584 |
+
}
|
1585 |
+
}
|
1586 |
+
|
1587 |
private function addPOSFromObject($oPointOfSell,$pos){
|
1588 |
if(isset($oPointOfSell->contracts->contract)){
|
1589 |
$this->posData[$pos] = array();
|
1597 |
$this->posData[$pos]['contracts'][$ctr]['cardType'] = $contract->cardType;
|
1598 |
$this->posData[$pos]['contracts'][$ctr]['label'] = $contract->label;
|
1599 |
$this->posData[$pos]['contracts'][$ctr]['contractNumber'] = $contract->contractNumber;
|
1600 |
+
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->paymentMeansLogos[$this->posData[$pos]['contracts'][$ctr]['cardType']]; // default logo
|
1601 |
if($contract->logoEnable){
|
1602 |
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->downloadCustomLogo($contract->normalLogo, $contract->normalLogoMime, $contract->contractNumber, $oPointOfSell->label);
|
1603 |
}
|
1608 |
$this->posData[$pos]['contracts'][0]['cardType'] = $oPointOfSell->contracts->contract->cardType;
|
1609 |
$this->posData[$pos]['contracts'][0]['label'] = $oPointOfSell->contracts->contract->label;
|
1610 |
$this->posData[$pos]['contracts'][0]['contractNumber'] = $oPointOfSell->contracts->contract->contractNumber;
|
1611 |
+
$this->posData[$pos]['contracts'][0]['logo'] = $this->paymentMeansLogos[$this->posData[$pos]['contracts'][0]['cardType']]; // default logo
|
1612 |
if($oPointOfSell->contracts->contract->logoEnable){
|
1613 |
$this->posData[$pos]['contracts'][0]['logo'] = $this->downloadCustomLogo($oPointOfSell->contracts->contract->normalLogo, $oPointOfSell->contracts->contract->normalLogoMime, $oPointOfSell->contracts->contract->contractNumber, $oPointOfSell->label);
|
1614 |
}
|
1631 |
$this->posData[$pos]['contracts'][0]['cardType'] = $aPointOfSell['contracts']['contract']['cardType'];
|
1632 |
$this->posData[$pos]['contracts'][0]['label'] = $aPointOfSell['contracts']['contract']['label'];
|
1633 |
$this->posData[$pos]['contracts'][0]['contractNumber'] = $aPointOfSell['contracts']['contract']['contractNumber'];
|
1634 |
+
$this->posData[$pos]['contracts'][0]['logo'] = $this->paymentMeansLogos[$this->posData[$pos]['contracts'][0]['cardType']]; // default logo
|
1635 |
if($aPointOfSell['contracts']['contract']['logoEnable']){
|
1636 |
$this->posData[$pos]['contracts'][0]['logo'] = $this->downloadCustomLogo($aPointOfSell['contracts']['contract']['normalLogo'], $aPointOfSell['contracts']['contract']['normalLogoMime'], $aPointOfSell['contracts']['contract']['contractNumber'], $aPointOfSell['label']);
|
1637 |
}
|
1642 |
$this->posData[$pos]['contracts'][$ctr]['cardType'] = $contract->cardType;
|
1643 |
$this->posData[$pos]['contracts'][$ctr]['label'] = $contract->label;
|
1644 |
$this->posData[$pos]['contracts'][$ctr]['contractNumber'] = $contract->contractNumber;
|
1645 |
+
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->paymentMeansLogos[$this->posData[$pos]['contracts'][$ctr]['cardType']]; // default logo
|
1646 |
if($contract->logoEnable){
|
1647 |
$this->posData[$pos]['contracts'][$ctr]['logo'] = $this->downloadCustomLogo($contract->normalLogo, $contract->normalLogoMime, $contract->contractNumber, $aPointOfSell['label']);
|
1648 |
}
|
1693 |
}
|
1694 |
|
1695 |
public function getMerchantSettingsToArray($array){
|
1696 |
+
/*
|
1697 |
+
* Association between Payment mean types and logos URL
|
1698 |
+
*/
|
1699 |
+
$getPaymentMeansResponse = $this->getPaymentMeans();
|
1700 |
+
if($getPaymentMeansResponse['result']['code'] != paylineSDK::ERR_CODE){
|
1701 |
+
$this->paymentMeansLogos = array();
|
1702 |
+
for($i=0 ; $i<sizeof($getPaymentMeansResponse['listPaymentMean']['paymentMean']) ; $i++){
|
1703 |
+
$this->paymentMeansLogos[$getPaymentMeansResponse['listPaymentMean']['paymentMean'][$i]->code] = $getPaymentMeansResponse['listPaymentMean']['paymentMean'][$i]->logoUrl;
|
1704 |
+
}
|
1705 |
+
}
|
1706 |
+
|
1707 |
if(isset($array['logoPath'])){
|
1708 |
$this->customLogoPath = $array['logoPath'];
|
1709 |
}
|
app/code/community/Monext/Payline/lib/{v4.41.wsdl → v4.43.wsdl}
RENAMED
@@ -1,3444 +1,3451 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<wsdl:definitions targetNamespace="http://impl.ws.payline.experian.com" xmlns:
|
3 |
-
<wsdl:types>
|
4 |
-
<schema elementFormDefault="qualified" targetNamespace="http://impl.ws.payline.experian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
5 |
-
<import namespace="http://obj.ws.payline.experian.com"/>
|
6 |
-
<element name="doWebPaymentRequest">
|
7 |
-
<complexType>
|
8 |
-
<annotation>
|
9 |
-
<documentation>
|
10 |
-
This element is the request for the
|
11 |
-
doWebPayment
|
12 |
-
method
|
13 |
-
</documentation>
|
14 |
-
</annotation>
|
15 |
-
<sequence>
|
16 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
17 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
18 |
-
<element name="returnURL" nillable="false" type="xsd:string"/>
|
19 |
-
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
20 |
-
<element name="order" nillable="false" type="tns1:order"/>
|
21 |
-
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
22 |
-
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
23 |
-
<element name="secondSelectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
24 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
25 |
-
<element name="languageCode" nillable="true" type="xsd:string"/>
|
26 |
-
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
27 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
28 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
29 |
-
<element name="securityMode" nillable="true" type="xsd:string"/>
|
30 |
-
<element name="recurring" nillable="true" type="tns1:recurring"/>
|
31 |
-
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
32 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
33 |
-
</sequence>
|
34 |
-
</complexType>
|
35 |
-
</element>
|
36 |
-
<element name="doWebPaymentResponse">
|
37 |
-
<complexType>
|
38 |
-
<annotation>
|
39 |
-
<documentation>
|
40 |
-
This element is the reponse from the
|
41 |
-
doWebPayment
|
42 |
-
method
|
43 |
-
</documentation>
|
44 |
-
</annotation>
|
45 |
-
<sequence>
|
46 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
47 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
48 |
-
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
49 |
-
<element minOccurs="0" name="stepCode" nillable="true" type="xsd:string"/>
|
50 |
-
<element minOccurs="0" name="reqCode" nillable="true" type="xsd:string"/>
|
51 |
-
<element minOccurs="0" name="method" nillable="true" type="xsd:string"/>
|
52 |
-
</sequence>
|
53 |
-
</complexType>
|
54 |
-
</element>
|
55 |
-
<element name="getWebPaymentDetailsRequest">
|
56 |
-
<complexType>
|
57 |
-
<annotation>
|
58 |
-
<documentation>
|
59 |
-
This element is the reponse from the
|
60 |
-
getWebPayment
|
61 |
-
method
|
62 |
-
</documentation>
|
63 |
-
</annotation>
|
64 |
-
<sequence>
|
65 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
66 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
67 |
-
</sequence>
|
68 |
-
</complexType>
|
69 |
-
</element>
|
70 |
-
<element name="getWebPaymentDetailsResponse">
|
71 |
-
<complexType>
|
72 |
-
<annotation>
|
73 |
-
<documentation>
|
74 |
-
This element is the reponse from the
|
75 |
-
doWebPayment
|
76 |
-
method
|
77 |
-
</documentation>
|
78 |
-
</annotation>
|
79 |
-
<sequence>
|
80 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
81 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
82 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
83 |
-
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
84 |
-
<element minOccurs="0" name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
85 |
-
<element minOccurs="0" name="paymentRecordId" nillable="true" type="xsd:string"/>
|
86 |
-
<element minOccurs="0" name="billingRecordList" nillable="true" type="tns1:billingRecordList"/>
|
87 |
-
<element minOccurs="0" name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
88 |
-
<element name="card" type="tns1:cardOut"/>
|
89 |
-
<element minOccurs="0" name="extendedCard" type="tns1:extendedCardType"/>
|
90 |
-
<element name="order" type="tns1:order"/>
|
91 |
-
<element minOccurs="0" name="paymentAdditionalList" nillable="true" type="tns1:paymentAdditionalList"/>
|
92 |
-
<element minOccurs="0" name="media" nillable="true" type="xsd:string"/>
|
93 |
-
<element minOccurs="0" name="numberOfAttempt" nillable="true" type="xsd:string"/>
|
94 |
-
<element minOccurs="0" name="wallet" nillable="true" type="tns1:wallet"/>
|
95 |
-
<element minOccurs="0" name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
96 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
97 |
-
</sequence>
|
98 |
-
</complexType>
|
99 |
-
</element>
|
100 |
-
<element name="doAuthorizationRequest">
|
101 |
-
<complexType>
|
102 |
-
<annotation>
|
103 |
-
<documentation>
|
104 |
-
This element is the request for the
|
105 |
-
doAuthorization
|
106 |
-
method
|
107 |
-
</documentation>
|
108 |
-
</annotation>
|
109 |
-
<sequence>
|
110 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
111 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
112 |
-
<element name="bankAccountData" nillable="false" type="tns1:bankAccountData"/>
|
113 |
-
<element name="card" nillable="false" type="tns1:card"/>
|
114 |
-
<element name="order" nillable="false" type="tns1:order"/>
|
115 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
116 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
117 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
118 |
-
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
119 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
120 |
-
</sequence>
|
121 |
-
</complexType>
|
122 |
-
</element>
|
123 |
-
<element name="doAuthorizationResponse">
|
124 |
-
<complexType>
|
125 |
-
<annotation>
|
126 |
-
<documentation>
|
127 |
-
This element is the reponse from the
|
128 |
-
doAuthorization method
|
129 |
-
</documentation>
|
130 |
-
</annotation>
|
131 |
-
<sequence>
|
132 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
133 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
134 |
-
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
135 |
-
<element name="card" type="tns1:cardOut"/>
|
136 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
137 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
138 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
139 |
-
</sequence>
|
140 |
-
</complexType>
|
141 |
-
</element>
|
142 |
-
<element name="doCaptureRequest">
|
143 |
-
<complexType>
|
144 |
-
<annotation>
|
145 |
-
<documentation>
|
146 |
-
This element is the request for the
|
147 |
-
doCapture method
|
148 |
-
</documentation>
|
149 |
-
</annotation>
|
150 |
-
<sequence>
|
151 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
152 |
-
<element name="transactionID" nillable="false" type="xsd:string"/>
|
153 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
154 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
155 |
-
<element name="sequenceNumber" nillable="true" type="xsd:string"/>
|
156 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
157 |
-
</sequence>
|
158 |
-
</complexType>
|
159 |
-
</element>
|
160 |
-
<element name="doCaptureResponse">
|
161 |
-
<complexType>
|
162 |
-
<annotation>
|
163 |
-
<documentation>
|
164 |
-
This element is the reponse from the
|
165 |
-
doCapture
|
166 |
-
method
|
167 |
-
</documentation>
|
168 |
-
</annotation>
|
169 |
-
<sequence>
|
170 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
171 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
172 |
-
<element name="reAuthorization" nillable="true" type="xsd:string"/>
|
173 |
-
</sequence>
|
174 |
-
</complexType>
|
175 |
-
</element>
|
176 |
-
<element name="doDebitRequest">
|
177 |
-
<complexType>
|
178 |
-
<sequence>
|
179 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
180 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
181 |
-
<element name="card" nillable="false" type="tns1:card"/>
|
182 |
-
<element name="order" nillable="false" type="tns1:order"/>
|
183 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
184 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
185 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
186 |
-
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
187 |
-
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
188 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
189 |
-
</sequence>
|
190 |
-
</complexType>
|
191 |
-
</element>
|
192 |
-
<element name="doDebitResponse">
|
193 |
-
<complexType>
|
194 |
-
<sequence>
|
195 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
196 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
197 |
-
<element name="card" type="tns1:cardOut"/>
|
198 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
199 |
-
</sequence>
|
200 |
-
</complexType>
|
201 |
-
</element>
|
202 |
-
<element name="doRefundRequest">
|
203 |
-
<complexType>
|
204 |
-
<annotation>
|
205 |
-
<documentation>
|
206 |
-
This element is the request for the doRefund
|
207 |
-
method
|
208 |
-
</documentation>
|
209 |
-
</annotation>
|
210 |
-
<sequence>
|
211 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
212 |
-
<element name="transactionID" nillable="false" type="xsd:string"/>
|
213 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
214 |
-
<element name="comment" nillable="true" type="xsd:string"/>
|
215 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
216 |
-
<element name="sequenceNumber" nillable="true" type="xsd:string"/>
|
217 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
218 |
-
</sequence>
|
219 |
-
</complexType>
|
220 |
-
</element>
|
221 |
-
<element name="doRefundResponse">
|
222 |
-
<complexType>
|
223 |
-
<annotation>
|
224 |
-
<documentation>
|
225 |
-
This element is the reponse from the
|
226 |
-
doRefund method
|
227 |
-
</documentation>
|
228 |
-
</annotation>
|
229 |
-
<sequence>
|
230 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
231 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
232 |
-
</sequence>
|
233 |
-
</complexType>
|
234 |
-
</element>
|
235 |
-
<element name="doResetRequest">
|
236 |
-
<complexType>
|
237 |
-
<annotation>
|
238 |
-
<documentation>
|
239 |
-
This element is the request for the doReset
|
240 |
-
method
|
241 |
-
</documentation>
|
242 |
-
</annotation>
|
243 |
-
<sequence>
|
244 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
245 |
-
<element name="transactionID" nillable="false" type="xsd:string"/>
|
246 |
-
<element name="comment" nillable="true" type="xsd:string"/>
|
247 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
248 |
-
</sequence>
|
249 |
-
</complexType>
|
250 |
-
</element>
|
251 |
-
<element name="doResetResponse">
|
252 |
-
<complexType>
|
253 |
-
<annotation>
|
254 |
-
<documentation>
|
255 |
-
This element is the reponse from the doReset
|
256 |
-
method
|
257 |
-
</documentation>
|
258 |
-
</annotation>
|
259 |
-
<sequence>
|
260 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
261 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
262 |
-
</sequence>
|
263 |
-
</complexType>
|
264 |
-
</element>
|
265 |
-
<element name="doCreditRequest">
|
266 |
-
<complexType>
|
267 |
-
<annotation>
|
268 |
-
<documentation>
|
269 |
-
This element is the request for the doCredit
|
270 |
-
method
|
271 |
-
</documentation>
|
272 |
-
</annotation>
|
273 |
-
<sequence>
|
274 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
275 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
276 |
-
<element name="card" nillable="false" type="tns1:card"/>
|
277 |
-
<element name="comment" nillable="true" type="xsd:string"/>
|
278 |
-
<element name="order" nillable="true" type="tns1:order"/>
|
279 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
280 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
281 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
282 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
283 |
-
</sequence>
|
284 |
-
</complexType>
|
285 |
-
</element>
|
286 |
-
<element name="doCreditResponse">
|
287 |
-
<complexType>
|
288 |
-
<annotation>
|
289 |
-
<documentation>
|
290 |
-
This element is the reponse from the
|
291 |
-
doCredit method
|
292 |
-
</documentation>
|
293 |
-
</annotation>
|
294 |
-
<sequence>
|
295 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
296 |
-
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
297 |
-
<element name="card" type="tns1:cardOut"/>
|
298 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
299 |
-
</sequence>
|
300 |
-
</complexType>
|
301 |
-
</element>
|
302 |
-
<element name="createWalletRequest">
|
303 |
-
<complexType>
|
304 |
-
<annotation>
|
305 |
-
<documentation>
|
306 |
-
This element is the request for the
|
307 |
-
createWallet
|
308 |
-
method
|
309 |
-
</documentation>
|
310 |
-
</annotation>
|
311 |
-
<sequence>
|
312 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
313 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
314 |
-
<element name="wallet" nillable="false" type="tns1:wallet"/>
|
315 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
316 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
317 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
318 |
-
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
319 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
320 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
321 |
-
</sequence>
|
322 |
-
</complexType>
|
323 |
-
</element>
|
324 |
-
<element name="createWalletResponse">
|
325 |
-
<complexType>
|
326 |
-
<annotation>
|
327 |
-
<documentation>
|
328 |
-
This element is the reponse from the
|
329 |
-
createWallet
|
330 |
-
method
|
331 |
-
</documentation>
|
332 |
-
</annotation>
|
333 |
-
<sequence>
|
334 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
335 |
-
<element name="card" type="tns1:cardOut"/>
|
336 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
337 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
338 |
-
<element name="fraudResultDetails" nillable="true" type="tns1:fraudResultDetails"/>
|
339 |
-
</sequence>
|
340 |
-
</complexType>
|
341 |
-
</element>
|
342 |
-
<element name="updateWalletRequest">
|
343 |
-
<complexType>
|
344 |
-
<annotation>
|
345 |
-
<documentation>
|
346 |
-
This element is the request for the
|
347 |
-
updateWallet
|
348 |
-
method
|
349 |
-
</documentation>
|
350 |
-
</annotation>
|
351 |
-
<sequence>
|
352 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
353 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
354 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
355 |
-
<element name="wallet" nillable="false" type="tns1:wallet"/>
|
356 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
357 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
358 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
359 |
-
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
360 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
361 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
362 |
-
</sequence>
|
363 |
-
</complexType>
|
364 |
-
</element>
|
365 |
-
<element name="updateWalletResponse">
|
366 |
-
<complexType>
|
367 |
-
<annotation>
|
368 |
-
<documentation>
|
369 |
-
This element is the reponse from the
|
370 |
-
updateWallet
|
371 |
-
method
|
372 |
-
</documentation>
|
373 |
-
</annotation>
|
374 |
-
<sequence>
|
375 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
376 |
-
<element name="card" type="tns1:cardOut"/>
|
377 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
378 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
379 |
-
</sequence>
|
380 |
-
</complexType>
|
381 |
-
</element>
|
382 |
-
<element name="getWalletRequest">
|
383 |
-
<complexType>
|
384 |
-
<annotation>
|
385 |
-
<documentation>
|
386 |
-
This element is the request for the
|
387 |
-
getWallet method
|
388 |
-
</documentation>
|
389 |
-
</annotation>
|
390 |
-
<sequence>
|
391 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
392 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
393 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
394 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
395 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
396 |
-
</sequence>
|
397 |
-
</complexType>
|
398 |
-
</element>
|
399 |
-
<element name="getWalletResponse">
|
400 |
-
<complexType>
|
401 |
-
<annotation>
|
402 |
-
<documentation>
|
403 |
-
This element is the reponse from the
|
404 |
-
getWallet
|
405 |
-
method
|
406 |
-
</documentation>
|
407 |
-
</annotation>
|
408 |
-
<sequence>
|
409 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
410 |
-
<element name="wallet" nillable="true" type="tns1:wallet"/>
|
411 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
412 |
-
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
413 |
-
<element name="disableDate" nillable="true" type="xsd:string"/>
|
414 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
415 |
-
<element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
|
416 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
417 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
418 |
-
</sequence>
|
419 |
-
</complexType>
|
420 |
-
</element>
|
421 |
-
<element name="getCardsRequest">
|
422 |
-
<complexType>
|
423 |
-
<annotation>
|
424 |
-
<documentation>
|
425 |
-
This element is the request for the
|
426 |
-
getCards method
|
427 |
-
</documentation>
|
428 |
-
</annotation>
|
429 |
-
<sequence>
|
430 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
431 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
432 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
433 |
-
</sequence>
|
434 |
-
</complexType>
|
435 |
-
</element>
|
436 |
-
<element name="getCardsResponse">
|
437 |
-
<complexType>
|
438 |
-
<annotation>
|
439 |
-
<documentation>
|
440 |
-
This element is the reponse from the
|
441 |
-
getCards method
|
442 |
-
</documentation>
|
443 |
-
</annotation>
|
444 |
-
<sequence>
|
445 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
446 |
-
<element name="cardsList" nillable="true" type="tns1:cardsList"/>
|
447 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
448 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
449 |
-
</sequence>
|
450 |
-
</complexType>
|
451 |
-
</element>
|
452 |
-
<element name="disableWalletRequest">
|
453 |
-
<complexType>
|
454 |
-
<annotation>
|
455 |
-
<documentation>
|
456 |
-
This element is the request for the
|
457 |
-
disableWallet
|
458 |
-
method
|
459 |
-
</documentation>
|
460 |
-
</annotation>
|
461 |
-
<sequence>
|
462 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
463 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
464 |
-
<element name="walletIdList" nillable="false" type="tns1:walletIdList"/>
|
465 |
-
</sequence>
|
466 |
-
</complexType>
|
467 |
-
</element>
|
468 |
-
<element name="disableWalletResponse">
|
469 |
-
<complexType>
|
470 |
-
<annotation>
|
471 |
-
<documentation>
|
472 |
-
This element is the reponse from the
|
473 |
-
disableWallet
|
474 |
-
method
|
475 |
-
</documentation>
|
476 |
-
</annotation>
|
477 |
-
<sequence>
|
478 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
479 |
-
<element name="walletIdList" nillable="false" type="tns1:walletIdList"/>
|
480 |
-
</sequence>
|
481 |
-
</complexType>
|
482 |
-
</element>
|
483 |
-
<element name="enableWalletRequest">
|
484 |
-
<complexType>
|
485 |
-
<annotation>
|
486 |
-
<documentation>
|
487 |
-
This element is the request for the
|
488 |
-
enableWallet
|
489 |
-
method
|
490 |
-
</documentation>
|
491 |
-
</annotation>
|
492 |
-
<sequence>
|
493 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
494 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
495 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
496 |
-
</sequence>
|
497 |
-
</complexType>
|
498 |
-
</element>
|
499 |
-
<element name="enableWalletResponse">
|
500 |
-
<complexType>
|
501 |
-
<annotation>
|
502 |
-
<documentation>
|
503 |
-
This element is the reponse from the
|
504 |
-
enableWallet
|
505 |
-
method
|
506 |
-
</documentation>
|
507 |
-
</annotation>
|
508 |
-
<sequence>
|
509 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
510 |
-
</sequence>
|
511 |
-
</complexType>
|
512 |
-
</element>
|
513 |
-
<element name="doImmediateWalletPaymentRequest">
|
514 |
-
<complexType>
|
515 |
-
<annotation>
|
516 |
-
<documentation>
|
517 |
-
This element is the request for the
|
518 |
-
doImmediateWalletPayment method
|
519 |
-
</documentation>
|
520 |
-
</annotation>
|
521 |
-
<sequence>
|
522 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
523 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
524 |
-
<element name="order" nillable="false" type="tns1:order"/>
|
525 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
526 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
527 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
528 |
-
<element name="cvx" nillable="true" type="xsd:string"/>
|
529 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
530 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
531 |
-
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
532 |
-
</sequence>
|
533 |
-
</complexType>
|
534 |
-
</element>
|
535 |
-
<element name="doImmediateWalletPaymentResponse">
|
536 |
-
<complexType>
|
537 |
-
<annotation>
|
538 |
-
<documentation>
|
539 |
-
This element is the reponse from the
|
540 |
-
doImmediateWalletPayment method
|
541 |
-
</documentation>
|
542 |
-
</annotation>
|
543 |
-
<sequence>
|
544 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
545 |
-
<element name="transaction" nillable="true" type="tns1:transaction"/>
|
546 |
-
<element name="authorization" nillable="true" type="tns1:authorization"/>
|
547 |
-
</sequence>
|
548 |
-
</complexType>
|
549 |
-
</element>
|
550 |
-
<element name="doScheduledWalletPaymentRequest">
|
551 |
-
<complexType>
|
552 |
-
<annotation>
|
553 |
-
<documentation>
|
554 |
-
This element is the request for the
|
555 |
-
doScheduledWalletPayment method
|
556 |
-
</documentation>
|
557 |
-
</annotation>
|
558 |
-
<sequence>
|
559 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
560 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
561 |
-
<element name="orderRef" nillable="true" type="xsd:string"/>
|
562 |
-
<element name="orderDate" nillable="true" type="xsd:string"/>
|
563 |
-
<element name="scheduledDate" nillable="false" type="xsd:string"/>
|
564 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
565 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
566 |
-
<element name="order" nillable="true" type="tns1:order"/>
|
567 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
568 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
569 |
-
</sequence>
|
570 |
-
</complexType>
|
571 |
-
</element>
|
572 |
-
<element name="doScheduledWalletPaymentResponse">
|
573 |
-
<complexType>
|
574 |
-
<annotation>
|
575 |
-
<documentation>
|
576 |
-
This element is the reponse from the
|
577 |
-
doScheduledWalletPayment method
|
578 |
-
</documentation>
|
579 |
-
</annotation>
|
580 |
-
<sequence>
|
581 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
582 |
-
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
583 |
-
</sequence>
|
584 |
-
</complexType>
|
585 |
-
</element>
|
586 |
-
<element name="doRecurrentWalletPaymentRequest">
|
587 |
-
<complexType>
|
588 |
-
<annotation>
|
589 |
-
<documentation>
|
590 |
-
This element is the request for the
|
591 |
-
doRecurrentWalletPayment method
|
592 |
-
</documentation>
|
593 |
-
</annotation>
|
594 |
-
<sequence>
|
595 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
596 |
-
<element name="payment" nillable="false" type="tns1:payment"/>
|
597 |
-
<element name="orderRef" nillable="false" type="xsd:string"/>
|
598 |
-
<element name="orderDate" nillable="false" type="xsd:string"/>
|
599 |
-
<element name="scheduledDate" nillable="false" type="xsd:string"/>
|
600 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
601 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
602 |
-
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
603 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
604 |
-
<element name="order" nillable="true" type="tns1:order"/>
|
605 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
606 |
-
</sequence>
|
607 |
-
</complexType>
|
608 |
-
</element>
|
609 |
-
<element name="doRecurrentWalletPaymentResponse">
|
610 |
-
<complexType>
|
611 |
-
<annotation>
|
612 |
-
<documentation>
|
613 |
-
This element is the reponse from the
|
614 |
-
doRecurrentWalletPayment method
|
615 |
-
</documentation>
|
616 |
-
</annotation>
|
617 |
-
<sequence>
|
618 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
619 |
-
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
620 |
-
<element name="billingRecordList" nillable="false" type="tns1:billingRecordList"/>
|
621 |
-
</sequence>
|
622 |
-
</complexType>
|
623 |
-
</element>
|
624 |
-
<element name="getPaymentRecordRequest">
|
625 |
-
<complexType>
|
626 |
-
<annotation>
|
627 |
-
<documentation>
|
628 |
-
This element is the request for the
|
629 |
-
getPaymentRecord method
|
630 |
-
</documentation>
|
631 |
-
</annotation>
|
632 |
-
<sequence>
|
633 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
634 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
635 |
-
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
636 |
-
</sequence>
|
637 |
-
</complexType>
|
638 |
-
</element>
|
639 |
-
<element name="getPaymentRecordResponse">
|
640 |
-
<complexType>
|
641 |
-
<annotation>
|
642 |
-
<documentation>
|
643 |
-
This element is the reponse from the
|
644 |
-
getPaymentRecord method
|
645 |
-
</documentation>
|
646 |
-
</annotation>
|
647 |
-
<sequence>
|
648 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
649 |
-
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
650 |
-
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
651 |
-
<element name="disableDate" nillable="true" type="xsd:string"/>
|
652 |
-
<element name="billingRecordList" nillable="false" type="tns1:billingRecordList"/>
|
653 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
654 |
-
<element name="order" nillable="true" type="tns1:order"/>
|
655 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
656 |
-
</sequence>
|
657 |
-
</complexType>
|
658 |
-
</element>
|
659 |
-
<element name="disablePaymentRecordRequest">
|
660 |
-
<complexType>
|
661 |
-
<annotation>
|
662 |
-
<documentation>
|
663 |
-
This element is the request for the
|
664 |
-
disablePaymentRecord method
|
665 |
-
</documentation>
|
666 |
-
</annotation>
|
667 |
-
<sequence>
|
668 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
669 |
-
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
670 |
-
</sequence>
|
671 |
-
</complexType>
|
672 |
-
</element>
|
673 |
-
<element name="disablePaymentRecordResponse">
|
674 |
-
<complexType>
|
675 |
-
<annotation>
|
676 |
-
<documentation>
|
677 |
-
This element is the reponse from the
|
678 |
-
disablePaymentRecord method
|
679 |
-
</documentation>
|
680 |
-
</annotation>
|
681 |
-
<sequence>
|
682 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
683 |
-
</sequence>
|
684 |
-
</complexType>
|
685 |
-
</element>
|
686 |
-
<element name="manageWebWalletRequest">
|
687 |
-
<complexType>
|
688 |
-
<annotation>
|
689 |
-
<documentation>
|
690 |
-
This element is the request for the
|
691 |
-
manageWebWallet
|
692 |
-
method
|
693 |
-
</documentation>
|
694 |
-
</annotation>
|
695 |
-
<sequence>
|
696 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
697 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
698 |
-
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
699 |
-
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
700 |
-
<element name="buyer" nillable="false" type="tns1:buyer"/>
|
701 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
702 |
-
<element name="languageCode" nillable="true" type="xsd:string"/>
|
703 |
-
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
704 |
-
<element name="securityMode" nillable="true" type="xsd:string"/>
|
705 |
-
<element name="returnURL" nillable="false" type="xsd:string"/>
|
706 |
-
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
707 |
-
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
708 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
709 |
-
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
710 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
711 |
-
</sequence>
|
712 |
-
</complexType>
|
713 |
-
</element>
|
714 |
-
<element name="manageWebWalletResponse">
|
715 |
-
<complexType>
|
716 |
-
<annotation>
|
717 |
-
<documentation>
|
718 |
-
This element is the reponse from the
|
719 |
-
manageWebWallet method
|
720 |
-
</documentation>
|
721 |
-
</annotation>
|
722 |
-
<sequence>
|
723 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
724 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
725 |
-
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
726 |
-
</sequence>
|
727 |
-
</complexType>
|
728 |
-
</element>
|
729 |
-
<element name="createWebWalletRequest">
|
730 |
-
<complexType>
|
731 |
-
<annotation>
|
732 |
-
<documentation>
|
733 |
-
This element is the request for the
|
734 |
-
createWebWallet
|
735 |
-
method
|
736 |
-
</documentation>
|
737 |
-
</annotation>
|
738 |
-
<sequence>
|
739 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
740 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
741 |
-
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
742 |
-
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
743 |
-
<element name="buyer" nillable="false" type="tns1:buyer"/>
|
744 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
745 |
-
<element name="languageCode" nillable="true" type="xsd:string"/>
|
746 |
-
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
747 |
-
<element name="securityMode" nillable="true" type="xsd:string"/>
|
748 |
-
<element name="returnURL" nillable="false" type="xsd:string"/>
|
749 |
-
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
750 |
-
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
751 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
752 |
-
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
753 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
754 |
-
</sequence>
|
755 |
-
</complexType>
|
756 |
-
</element>
|
757 |
-
<element name="createWebWalletResponse">
|
758 |
-
<complexType>
|
759 |
-
<annotation>
|
760 |
-
<documentation>
|
761 |
-
This element is the reponse from the
|
762 |
-
createWebWallet method
|
763 |
-
</documentation>
|
764 |
-
</annotation>
|
765 |
-
<sequence>
|
766 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
767 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
768 |
-
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
769 |
-
</sequence>
|
770 |
-
</complexType>
|
771 |
-
</element>
|
772 |
-
<element name="updateWebWalletRequest">
|
773 |
-
<complexType>
|
774 |
-
<annotation>
|
775 |
-
<documentation>
|
776 |
-
This element is the request for the
|
777 |
-
updateWebWallet
|
778 |
-
method
|
779 |
-
</documentation>
|
780 |
-
</annotation>
|
781 |
-
<sequence>
|
782 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
783 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
784 |
-
<element name="cardInd" nillable="true" type="xsd:string"/>
|
785 |
-
<element name="walletId" nillable="false" type="xsd:string"/>
|
786 |
-
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
787 |
-
<element name="updateOwnerDetails" nillable="true" type="xsd:string"/>
|
788 |
-
<element name="updatePaymentDetails" nillable="true" type="xsd:string"/>
|
789 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
790 |
-
<element name="languageCode" nillable="true" type="xsd:string"/>
|
791 |
-
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
792 |
-
<element name="securityMode" nillable="true" type="xsd:string"/>
|
793 |
-
<element name="returnURL" nillable="false" type="xsd:string"/>
|
794 |
-
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
795 |
-
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
796 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
797 |
-
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
798 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
799 |
-
</sequence>
|
800 |
-
</complexType>
|
801 |
-
</element>
|
802 |
-
<element name="updateWebWalletResponse">
|
803 |
-
<complexType>
|
804 |
-
<annotation>
|
805 |
-
<documentation>
|
806 |
-
This element is the reponse from the
|
807 |
-
updateWebWallet method
|
808 |
-
</documentation>
|
809 |
-
</annotation>
|
810 |
-
<sequence>
|
811 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
812 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
813 |
-
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
814 |
-
</sequence>
|
815 |
-
</complexType>
|
816 |
-
</element>
|
817 |
-
<element name="getWebWalletRequest">
|
818 |
-
<complexType>
|
819 |
-
<annotation>
|
820 |
-
<documentation>
|
821 |
-
This element is the request for the
|
822 |
-
getWebWallet
|
823 |
-
method
|
824 |
-
</documentation>
|
825 |
-
</annotation>
|
826 |
-
<sequence>
|
827 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
828 |
-
<element name="token" nillable="false" type="xsd:string"/>
|
829 |
-
</sequence>
|
830 |
-
</complexType>
|
831 |
-
</element>
|
832 |
-
<element name="getWebWalletResponse">
|
833 |
-
<complexType>
|
834 |
-
<annotation>
|
835 |
-
<documentation>
|
836 |
-
This element is the reponse from the
|
837 |
-
getWebWallet
|
838 |
-
method
|
839 |
-
</documentation>
|
840 |
-
</annotation>
|
841 |
-
<sequence>
|
842 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
843 |
-
<element name="wallet" nillable="true" type="tns1:wallet"/>
|
844 |
-
<element name="owner" nillable="true" type="tns1:owner"/>
|
845 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
846 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
847 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
848 |
-
<element name="numberOfAttempt" nillable="true" type="xsd:string"/>
|
849 |
-
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
850 |
-
</sequence>
|
851 |
-
</complexType>
|
852 |
-
</element>
|
853 |
-
<element name="getTransactionDetailsRequest">
|
854 |
-
<complexType>
|
855 |
-
<annotation>
|
856 |
-
<documentation>
|
857 |
-
This element is the request for the
|
858 |
-
getTransactionDetails method
|
859 |
-
</documentation>
|
860 |
-
</annotation>
|
861 |
-
<sequence>
|
862 |
-
<element name="version" nillable="false" type="xsd:string"/>
|
863 |
-
<element name="transactionId" nillable="true" type="xsd:string"/>
|
864 |
-
<element name="orderRef" nillable="true" type="xsd:string"/>
|
865 |
-
<element name="startDate" nillable="true" type="xsd:string"/>
|
866 |
-
<element name="endDate" nillable="true" type="xsd:string"/>
|
867 |
-
<element name="transactionHistory" nillable="true" type="xsd:string"/>
|
868 |
-
<element name="archiveSearch" nillable="true" type="xsd:string"/>
|
869 |
-
</sequence>
|
870 |
-
</complexType>
|
871 |
-
</element>
|
872 |
-
<element name="getTransactionDetailsResponse">
|
873 |
-
<complexType>
|
874 |
-
<annotation>
|
875 |
-
<documentation>
|
876 |
-
This element is the response for the
|
877 |
-
getTransactionDetails method
|
878 |
-
</documentation>
|
879 |
-
</annotation>
|
880 |
-
<sequence>
|
881 |
-
<element name="result" nillable="false" type="tns1:result"/>
|
882 |
-
<element name="transaction" nillable="true" type="tns1:transaction"/>
|
883 |
-
<element name="payment" nillable="true" type="tns1:payment"/>
|
884 |
-
<element name="authorization" nillable="true" type="tns1:authorization"/>
|
885 |
-
<element name="order" nillable="true" type="tns1:order"/>
|
886 |
-
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
887 |
-
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
888 |
-
<element name="card" type="tns1:cardOut"/>
|
889 |
-
<element name="extendedCard" type="tns1:extendedCardType"/>
|
890 |
-
<element name="associatedTransactionsList" nillable="true" type="tns1:associatedTransactionsList"/>
|
891 |
-
<element name="statusHistoryList" nillable="true" type="tns1:statusHistoryList"/>
|
892 |
-
<element name="media" nillable="true" type="xsd:string"/>
|
893 |
-
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
<element name="
|
908 |
-
<element name="
|
909 |
-
<element name="
|
910 |
-
<element name="
|
911 |
-
<element name="
|
912 |
-
<element name="
|
913 |
-
<element name="
|
914 |
-
<element name="
|
915 |
-
<element name="
|
916 |
-
<element name="
|
917 |
-
<element name="
|
918 |
-
<element name="
|
919 |
-
<element name="
|
920 |
-
<element name="
|
921 |
-
<element name="
|
922 |
-
<element name="
|
923 |
-
<element name="
|
924 |
-
<element name="
|
925 |
-
<element name="
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
<element name="
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
<element name="
|
954 |
-
<element name="
|
955 |
-
<element name="
|
956 |
-
<element name="
|
957 |
-
<element name="
|
958 |
-
<element name="
|
959 |
-
<element name="
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
<element name="
|
974 |
-
<element name="
|
975 |
-
<element name="
|
976 |
-
<element name="
|
977 |
-
<element name="
|
978 |
-
<element name="
|
979 |
-
<element name="
|
980 |
-
<element name="
|
981 |
-
<element name="
|
982 |
-
<element name="
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
<element name="
|
997 |
-
<element name="
|
998 |
-
<element name="
|
999 |
-
<element name="
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
<element name="
|
1014 |
-
<element name="
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
<element name="
|
1030 |
-
<element name="
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
<element name="
|
1075 |
-
<element name="
|
1076 |
-
<element name="
|
1077 |
-
<element name="
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
<element name="
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
<element name="
|
1123 |
-
<element name="
|
1124 |
-
<element name="
|
1125 |
-
<element name="
|
1126 |
-
<element name="
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
<element name="
|
1141 |
-
<element name="
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
<element name="
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
<element name="
|
1180 |
-
<element name="
|
1181 |
-
<element name="
|
1182 |
-
<element name="
|
1183 |
-
<element name="
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
<element name="
|
1198 |
-
<element name="
|
1199 |
-
<element name="
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
<element name="
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
<element name="
|
1248 |
-
<element name="
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
<element name="
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
<element maxOccurs="1" minOccurs="0" name="
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
<element name="
|
1273 |
-
<element name="
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
<element
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
<element name="
|
1341 |
-
<element name="
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
<element
|
1350 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1351 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1352 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1353 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1354 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1355 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1356 |
-
<element maxOccurs="1" minOccurs="1" name="
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
<element name="
|
1365 |
-
<element name="
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
<
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
<element name="
|
1382 |
-
<element name="
|
1383 |
-
<element name="
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
<element name="
|
1392 |
-
<element name="
|
1393 |
-
<element name="
|
1394 |
-
<element name="
|
1395 |
-
<element name="
|
1396 |
-
<element name="
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
<element name="
|
1406 |
-
<element name="
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
<element name="
|
1415 |
-
<element name="
|
1416 |
-
<element name="
|
1417 |
-
<element name="
|
1418 |
-
<element name="
|
1419 |
-
<element name="
|
1420 |
-
<element name="
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
<element name="
|
1430 |
-
<element name="
|
1431 |
-
<element name="
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
<element name="
|
1441 |
-
<element name="
|
1442 |
-
<element name="
|
1443 |
-
<element name="
|
1444 |
-
<element name="
|
1445 |
-
<element name="
|
1446 |
-
<element name="
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
<element
|
1463 |
-
<element minOccurs="0" name="
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
<element minOccurs="0" name="
|
1470 |
-
<element minOccurs="0" name="
|
1471 |
-
<element minOccurs="0" name="
|
1472 |
-
<element minOccurs="0" name="
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
<element minOccurs="0" name="
|
1480 |
-
<element minOccurs="0" name="
|
1481 |
-
<element minOccurs="0" name="
|
1482 |
-
<element minOccurs="0" name="
|
1483 |
-
<element minOccurs="0" name="
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
<element
|
1496 |
-
<element minOccurs="0" name="
|
1497 |
-
<element minOccurs="0" name="
|
1498 |
-
<element name="
|
1499 |
-
<element name="
|
1500 |
-
<element name="
|
1501 |
-
<element
|
1502 |
-
<element minOccurs="0" name="
|
1503 |
-
<element minOccurs="0" name="
|
1504 |
-
<element minOccurs="0" name="
|
1505 |
-
<element minOccurs="0" name="
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
<element name="
|
1518 |
-
<element name="
|
1519 |
-
<element name="
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
<element minOccurs="0" name="
|
1544 |
-
<element minOccurs="0" name="
|
1545 |
-
<element minOccurs="0" name="
|
1546 |
-
<element minOccurs="0" name="
|
1547 |
-
<element minOccurs="0" name="
|
1548 |
-
<element minOccurs="0" name="
|
1549 |
-
<element minOccurs="0" name="
|
1550 |
-
<element minOccurs="0" name="
|
1551 |
-
<element minOccurs="0" name="
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
<element name="
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
<element name="
|
1577 |
-
<element
|
1578 |
-
<element name="
|
1579 |
-
<element
|
1580 |
-
<element minOccurs="0" name="
|
1581 |
-
<element minOccurs="0" name="
|
1582 |
-
<element minOccurs="0" name="
|
1583 |
-
<element minOccurs="0" name="
|
1584 |
-
<element minOccurs="0" name="
|
1585 |
-
<element minOccurs="0" name="
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
<element name="
|
1600 |
-
<element name="
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
<element name="
|
1613 |
-
<element name="
|
1614 |
-
<element name="
|
1615 |
-
<element name="
|
1616 |
-
<element
|
1617 |
-
<element minOccurs="0" name="
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
<element name="
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
<element minOccurs="0" name="
|
1641 |
-
<element minOccurs="0" name="
|
1642 |
-
<element name="
|
1643 |
-
<element
|
1644 |
-
<element minOccurs="0" name="
|
1645 |
-
<element minOccurs="0" name="
|
1646 |
-
<element minOccurs="0" name="
|
1647 |
-
<element minOccurs="0" name="
|
1648 |
-
<element minOccurs="0" name="
|
1649 |
-
<element minOccurs="0" name="
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
<element name="
|
1662 |
-
<element name="
|
1663 |
-
<element name="
|
1664 |
-
<element name="
|
1665 |
-
<element name="
|
1666 |
-
<element name="
|
1667 |
-
<element name="
|
1668 |
-
<element name="
|
1669 |
-
<element name="
|
1670 |
-
<element name="
|
1671 |
-
<element name="
|
1672 |
-
<element name="
|
1673 |
-
<element name="
|
1674 |
-
<element name="
|
1675 |
-
<element name="
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
<
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
<
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
<element minOccurs="0" name="
|
1706 |
-
<element minOccurs="0" name="
|
1707 |
-
<element minOccurs="0" name="
|
1708 |
-
<element minOccurs="0" name="
|
1709 |
-
<element minOccurs="0" name="
|
1710 |
-
<element minOccurs="0" name="
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
<
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
<
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
</
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
<
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
<
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
<
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
</
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
</
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
</
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
</
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
</
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
</
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
</
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
<
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
<element name="
|
1838 |
-
<element name="
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
<
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
<
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
</
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
<
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
<
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
<element
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
<
|
1877 |
-
|
1878 |
-
|
1879 |
-
</
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
<
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
<
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
<
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
<element
|
1915 |
-
<element minOccurs="0" name="
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
<
|
1921 |
-
|
1922 |
-
|
1923 |
-
</
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
<
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
<element name="
|
1933 |
-
<element name="
|
1934 |
-
<element name="
|
1935 |
-
<element name="
|
1936 |
-
<element name="
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
<
|
1942 |
-
|
1943 |
-
|
1944 |
-
</
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
</
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
<
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
<element minOccurs="0" name="
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
<
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
<
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
</
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
<
|
1995 |
-
|
1996 |
-
|
1997 |
-
</
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
<
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
<
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
<
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
<
|
2024 |
-
|
2025 |
-
|
2026 |
-
</
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
<
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
<
|
2040 |
-
|
2041 |
-
|
2042 |
-
</
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
<
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
<
|
2051 |
-
<
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
<
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
</
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
<
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
<
|
2077 |
-
|
2078 |
-
|
2079 |
-
</
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
<
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
<
|
2088 |
-
<
|
2089 |
-
|
2090 |
-
|
2091 |
-
</
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
<
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
<
|
2102 |
-
|
2103 |
-
|
2104 |
-
</
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
<
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
<
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
<
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
<
|
2127 |
-
<
|
2128 |
-
|
2129 |
-
|
2130 |
-
</
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
<
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
<enumeration value="
|
2147 |
-
<enumeration value="
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
<element
|
2160 |
-
|
2161 |
-
<element
|
2162 |
-
|
2163 |
-
<element
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
<
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
<
|
2186 |
-
<
|
2187 |
-
|
2188 |
-
|
2189 |
-
</
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
<
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
<element
|
2222 |
-
<element
|
2223 |
-
<element name="
|
2224 |
-
<element name="
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
</
|
2292 |
-
</
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
<
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
<
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
<
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
<
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
<
|
2376 |
-
<
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
<
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
<
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
<
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
<
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
<
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
</wsdl:
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
</wsdl:
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
</wsdl:
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
</wsdl:
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
</wsdl:
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
</wsdl:
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
</wsdl:
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
</wsdl:
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
</wsdl:
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
</wsdl:
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
</wsdl:
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
</wsdl:
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
</wsdl:
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
</wsdl:
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
</wsdl:
|
2923 |
-
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
</wsdl:
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
</wsdl:
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
</wsdl:
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
|
2946 |
-
</wsdl:
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
</wsdl:
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
</wsdl:
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
</wsdl:
|
2965 |
-
|
2966 |
-
|
2967 |
-
|
2968 |
-
|
2969 |
-
|
2970 |
-
</wsdl:
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
</wsdl:
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
</wsdl:
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
</wsdl:
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
</wsdl:
|
2995 |
-
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
</wsdl:
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
|
3006 |
-
</wsdl:
|
3007 |
-
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
</wsdl:
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
</wsdl:
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
</wsdl:
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
</wsdl:
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
</wsdl:
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
</wsdl:
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
</wsdl:
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
</wsdl:
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
</wsdl:
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
</wsdl:
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
<
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
|
3347 |
-
|
3348 |
-
|
3349 |
-
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
<
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
3388 |
-
<
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
<
|
3398 |
-
|
3399 |
-
|
3400 |
-
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
<
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
|
3444 |
-
</wsdl:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<wsdl:definitions targetNamespace="http://impl.ws.payline.experian.com" xmlns:impl="http://impl.ws.payline.experian.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:intf="http://impl.ws.payline.experian.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns1="http://obj.ws.payline.experian.com">
|
3 |
+
<wsdl:types>
|
4 |
+
<schema elementFormDefault="qualified" targetNamespace="http://impl.ws.payline.experian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
5 |
+
<import namespace="http://obj.ws.payline.experian.com"/>
|
6 |
+
<element name="doWebPaymentRequest">
|
7 |
+
<complexType>
|
8 |
+
<annotation>
|
9 |
+
<documentation>
|
10 |
+
This element is the request for the
|
11 |
+
doWebPayment
|
12 |
+
method
|
13 |
+
</documentation>
|
14 |
+
</annotation>
|
15 |
+
<sequence>
|
16 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
17 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
18 |
+
<element name="returnURL" nillable="false" type="xsd:string"/>
|
19 |
+
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
20 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
21 |
+
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
22 |
+
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
23 |
+
<element name="secondSelectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
24 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
25 |
+
<element name="languageCode" nillable="true" type="xsd:string"/>
|
26 |
+
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
27 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
28 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
29 |
+
<element name="securityMode" nillable="true" type="xsd:string"/>
|
30 |
+
<element name="recurring" nillable="true" type="tns1:recurring"/>
|
31 |
+
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
32 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
33 |
+
</sequence>
|
34 |
+
</complexType>
|
35 |
+
</element>
|
36 |
+
<element name="doWebPaymentResponse">
|
37 |
+
<complexType>
|
38 |
+
<annotation>
|
39 |
+
<documentation>
|
40 |
+
This element is the reponse from the
|
41 |
+
doWebPayment
|
42 |
+
method
|
43 |
+
</documentation>
|
44 |
+
</annotation>
|
45 |
+
<sequence>
|
46 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
47 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
48 |
+
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
49 |
+
<element minOccurs="0" name="stepCode" nillable="true" type="xsd:string"/>
|
50 |
+
<element minOccurs="0" name="reqCode" nillable="true" type="xsd:string"/>
|
51 |
+
<element minOccurs="0" name="method" nillable="true" type="xsd:string"/>
|
52 |
+
</sequence>
|
53 |
+
</complexType>
|
54 |
+
</element>
|
55 |
+
<element name="getWebPaymentDetailsRequest">
|
56 |
+
<complexType>
|
57 |
+
<annotation>
|
58 |
+
<documentation>
|
59 |
+
This element is the reponse from the
|
60 |
+
getWebPayment
|
61 |
+
method
|
62 |
+
</documentation>
|
63 |
+
</annotation>
|
64 |
+
<sequence>
|
65 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
66 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
67 |
+
</sequence>
|
68 |
+
</complexType>
|
69 |
+
</element>
|
70 |
+
<element name="getWebPaymentDetailsResponse">
|
71 |
+
<complexType>
|
72 |
+
<annotation>
|
73 |
+
<documentation>
|
74 |
+
This element is the reponse from the
|
75 |
+
doWebPayment
|
76 |
+
method
|
77 |
+
</documentation>
|
78 |
+
</annotation>
|
79 |
+
<sequence>
|
80 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
81 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
82 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
83 |
+
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
84 |
+
<element minOccurs="0" name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
85 |
+
<element minOccurs="0" name="paymentRecordId" nillable="true" type="xsd:string"/>
|
86 |
+
<element minOccurs="0" name="billingRecordList" nillable="true" type="tns1:billingRecordList"/>
|
87 |
+
<element minOccurs="0" name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
88 |
+
<element name="card" type="tns1:cardOut"/>
|
89 |
+
<element minOccurs="0" name="extendedCard" type="tns1:extendedCardType"/>
|
90 |
+
<element name="order" type="tns1:order"/>
|
91 |
+
<element minOccurs="0" name="paymentAdditionalList" nillable="true" type="tns1:paymentAdditionalList"/>
|
92 |
+
<element minOccurs="0" name="media" nillable="true" type="xsd:string"/>
|
93 |
+
<element minOccurs="0" name="numberOfAttempt" nillable="true" type="xsd:string"/>
|
94 |
+
<element minOccurs="0" name="wallet" nillable="true" type="tns1:wallet"/>
|
95 |
+
<element minOccurs="0" name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
96 |
+
<element minOccurs="0" name="contractNumber" nillable="false" type="xsd:string"/>
|
97 |
+
</sequence>
|
98 |
+
</complexType>
|
99 |
+
</element>
|
100 |
+
<element name="doAuthorizationRequest">
|
101 |
+
<complexType>
|
102 |
+
<annotation>
|
103 |
+
<documentation>
|
104 |
+
This element is the request for the
|
105 |
+
doAuthorization
|
106 |
+
method
|
107 |
+
</documentation>
|
108 |
+
</annotation>
|
109 |
+
<sequence>
|
110 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
111 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
112 |
+
<element name="bankAccountData" nillable="false" type="tns1:bankAccountData"/>
|
113 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
114 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
115 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
116 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
117 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
118 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
119 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
120 |
+
</sequence>
|
121 |
+
</complexType>
|
122 |
+
</element>
|
123 |
+
<element name="doAuthorizationResponse">
|
124 |
+
<complexType>
|
125 |
+
<annotation>
|
126 |
+
<documentation>
|
127 |
+
This element is the reponse from the
|
128 |
+
doAuthorization method
|
129 |
+
</documentation>
|
130 |
+
</annotation>
|
131 |
+
<sequence>
|
132 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
133 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
134 |
+
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
135 |
+
<element name="card" type="tns1:cardOut"/>
|
136 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
137 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
138 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
139 |
+
</sequence>
|
140 |
+
</complexType>
|
141 |
+
</element>
|
142 |
+
<element name="doCaptureRequest">
|
143 |
+
<complexType>
|
144 |
+
<annotation>
|
145 |
+
<documentation>
|
146 |
+
This element is the request for the
|
147 |
+
doCapture method
|
148 |
+
</documentation>
|
149 |
+
</annotation>
|
150 |
+
<sequence>
|
151 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
152 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
153 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
154 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
155 |
+
<element name="sequenceNumber" nillable="true" type="xsd:string"/>
|
156 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
157 |
+
</sequence>
|
158 |
+
</complexType>
|
159 |
+
</element>
|
160 |
+
<element name="doCaptureResponse">
|
161 |
+
<complexType>
|
162 |
+
<annotation>
|
163 |
+
<documentation>
|
164 |
+
This element is the reponse from the
|
165 |
+
doCapture
|
166 |
+
method
|
167 |
+
</documentation>
|
168 |
+
</annotation>
|
169 |
+
<sequence>
|
170 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
171 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
172 |
+
<element name="reAuthorization" nillable="true" type="xsd:string"/>
|
173 |
+
</sequence>
|
174 |
+
</complexType>
|
175 |
+
</element>
|
176 |
+
<element name="doDebitRequest">
|
177 |
+
<complexType>
|
178 |
+
<sequence>
|
179 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
180 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
181 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
182 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
183 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
184 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
185 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
186 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
187 |
+
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
188 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
189 |
+
</sequence>
|
190 |
+
</complexType>
|
191 |
+
</element>
|
192 |
+
<element name="doDebitResponse">
|
193 |
+
<complexType>
|
194 |
+
<sequence>
|
195 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
196 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
197 |
+
<element name="card" type="tns1:cardOut"/>
|
198 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
199 |
+
</sequence>
|
200 |
+
</complexType>
|
201 |
+
</element>
|
202 |
+
<element name="doRefundRequest">
|
203 |
+
<complexType>
|
204 |
+
<annotation>
|
205 |
+
<documentation>
|
206 |
+
This element is the request for the doRefund
|
207 |
+
method
|
208 |
+
</documentation>
|
209 |
+
</annotation>
|
210 |
+
<sequence>
|
211 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
212 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
213 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
214 |
+
<element name="comment" nillable="true" type="xsd:string"/>
|
215 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
216 |
+
<element name="sequenceNumber" nillable="true" type="xsd:string"/>
|
217 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
218 |
+
</sequence>
|
219 |
+
</complexType>
|
220 |
+
</element>
|
221 |
+
<element name="doRefundResponse">
|
222 |
+
<complexType>
|
223 |
+
<annotation>
|
224 |
+
<documentation>
|
225 |
+
This element is the reponse from the
|
226 |
+
doRefund method
|
227 |
+
</documentation>
|
228 |
+
</annotation>
|
229 |
+
<sequence>
|
230 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
231 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
232 |
+
</sequence>
|
233 |
+
</complexType>
|
234 |
+
</element>
|
235 |
+
<element name="doResetRequest">
|
236 |
+
<complexType>
|
237 |
+
<annotation>
|
238 |
+
<documentation>
|
239 |
+
This element is the request for the doReset
|
240 |
+
method
|
241 |
+
</documentation>
|
242 |
+
</annotation>
|
243 |
+
<sequence>
|
244 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
245 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
246 |
+
<element name="comment" nillable="true" type="xsd:string"/>
|
247 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
248 |
+
</sequence>
|
249 |
+
</complexType>
|
250 |
+
</element>
|
251 |
+
<element name="doResetResponse">
|
252 |
+
<complexType>
|
253 |
+
<annotation>
|
254 |
+
<documentation>
|
255 |
+
This element is the reponse from the doReset
|
256 |
+
method
|
257 |
+
</documentation>
|
258 |
+
</annotation>
|
259 |
+
<sequence>
|
260 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
261 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
262 |
+
</sequence>
|
263 |
+
</complexType>
|
264 |
+
</element>
|
265 |
+
<element name="doCreditRequest">
|
266 |
+
<complexType>
|
267 |
+
<annotation>
|
268 |
+
<documentation>
|
269 |
+
This element is the request for the doCredit
|
270 |
+
method
|
271 |
+
</documentation>
|
272 |
+
</annotation>
|
273 |
+
<sequence>
|
274 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
275 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
276 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
277 |
+
<element name="comment" nillable="true" type="xsd:string"/>
|
278 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
279 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
280 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
281 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
282 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
283 |
+
</sequence>
|
284 |
+
</complexType>
|
285 |
+
</element>
|
286 |
+
<element name="doCreditResponse">
|
287 |
+
<complexType>
|
288 |
+
<annotation>
|
289 |
+
<documentation>
|
290 |
+
This element is the reponse from the
|
291 |
+
doCredit method
|
292 |
+
</documentation>
|
293 |
+
</annotation>
|
294 |
+
<sequence>
|
295 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
296 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
297 |
+
<element name="card" type="tns1:cardOut"/>
|
298 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
299 |
+
</sequence>
|
300 |
+
</complexType>
|
301 |
+
</element>
|
302 |
+
<element name="createWalletRequest">
|
303 |
+
<complexType>
|
304 |
+
<annotation>
|
305 |
+
<documentation>
|
306 |
+
This element is the request for the
|
307 |
+
createWallet
|
308 |
+
method
|
309 |
+
</documentation>
|
310 |
+
</annotation>
|
311 |
+
<sequence>
|
312 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
313 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
314 |
+
<element name="wallet" nillable="false" type="tns1:wallet"/>
|
315 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
316 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
317 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
318 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
319 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
320 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
321 |
+
</sequence>
|
322 |
+
</complexType>
|
323 |
+
</element>
|
324 |
+
<element name="createWalletResponse">
|
325 |
+
<complexType>
|
326 |
+
<annotation>
|
327 |
+
<documentation>
|
328 |
+
This element is the reponse from the
|
329 |
+
createWallet
|
330 |
+
method
|
331 |
+
</documentation>
|
332 |
+
</annotation>
|
333 |
+
<sequence>
|
334 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
335 |
+
<element name="card" type="tns1:cardOut"/>
|
336 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
337 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
338 |
+
<element name="fraudResultDetails" nillable="true" type="tns1:fraudResultDetails"/>
|
339 |
+
</sequence>
|
340 |
+
</complexType>
|
341 |
+
</element>
|
342 |
+
<element name="updateWalletRequest">
|
343 |
+
<complexType>
|
344 |
+
<annotation>
|
345 |
+
<documentation>
|
346 |
+
This element is the request for the
|
347 |
+
updateWallet
|
348 |
+
method
|
349 |
+
</documentation>
|
350 |
+
</annotation>
|
351 |
+
<sequence>
|
352 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
353 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
354 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
355 |
+
<element name="wallet" nillable="false" type="tns1:wallet"/>
|
356 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
357 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
358 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
359 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
360 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
361 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
362 |
+
</sequence>
|
363 |
+
</complexType>
|
364 |
+
</element>
|
365 |
+
<element name="updateWalletResponse">
|
366 |
+
<complexType>
|
367 |
+
<annotation>
|
368 |
+
<documentation>
|
369 |
+
This element is the reponse from the
|
370 |
+
updateWallet
|
371 |
+
method
|
372 |
+
</documentation>
|
373 |
+
</annotation>
|
374 |
+
<sequence>
|
375 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
376 |
+
<element name="card" type="tns1:cardOut"/>
|
377 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
378 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
379 |
+
</sequence>
|
380 |
+
</complexType>
|
381 |
+
</element>
|
382 |
+
<element name="getWalletRequest">
|
383 |
+
<complexType>
|
384 |
+
<annotation>
|
385 |
+
<documentation>
|
386 |
+
This element is the request for the
|
387 |
+
getWallet method
|
388 |
+
</documentation>
|
389 |
+
</annotation>
|
390 |
+
<sequence>
|
391 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
392 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
393 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
394 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
395 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
396 |
+
</sequence>
|
397 |
+
</complexType>
|
398 |
+
</element>
|
399 |
+
<element name="getWalletResponse">
|
400 |
+
<complexType>
|
401 |
+
<annotation>
|
402 |
+
<documentation>
|
403 |
+
This element is the reponse from the
|
404 |
+
getWallet
|
405 |
+
method
|
406 |
+
</documentation>
|
407 |
+
</annotation>
|
408 |
+
<sequence>
|
409 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
410 |
+
<element name="wallet" nillable="true" type="tns1:wallet"/>
|
411 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
412 |
+
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
413 |
+
<element name="disableDate" nillable="true" type="xsd:string"/>
|
414 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
415 |
+
<element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
|
416 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
417 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
418 |
+
</sequence>
|
419 |
+
</complexType>
|
420 |
+
</element>
|
421 |
+
<element name="getCardsRequest">
|
422 |
+
<complexType>
|
423 |
+
<annotation>
|
424 |
+
<documentation>
|
425 |
+
This element is the request for the
|
426 |
+
getCards method
|
427 |
+
</documentation>
|
428 |
+
</annotation>
|
429 |
+
<sequence>
|
430 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
431 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
432 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
433 |
+
</sequence>
|
434 |
+
</complexType>
|
435 |
+
</element>
|
436 |
+
<element name="getCardsResponse">
|
437 |
+
<complexType>
|
438 |
+
<annotation>
|
439 |
+
<documentation>
|
440 |
+
This element is the reponse from the
|
441 |
+
getCards method
|
442 |
+
</documentation>
|
443 |
+
</annotation>
|
444 |
+
<sequence>
|
445 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
446 |
+
<element name="cardsList" nillable="true" type="tns1:cardsList"/>
|
447 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
448 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
449 |
+
</sequence>
|
450 |
+
</complexType>
|
451 |
+
</element>
|
452 |
+
<element name="disableWalletRequest">
|
453 |
+
<complexType>
|
454 |
+
<annotation>
|
455 |
+
<documentation>
|
456 |
+
This element is the request for the
|
457 |
+
disableWallet
|
458 |
+
method
|
459 |
+
</documentation>
|
460 |
+
</annotation>
|
461 |
+
<sequence>
|
462 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
463 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
464 |
+
<element name="walletIdList" nillable="false" type="tns1:walletIdList"/>
|
465 |
+
</sequence>
|
466 |
+
</complexType>
|
467 |
+
</element>
|
468 |
+
<element name="disableWalletResponse">
|
469 |
+
<complexType>
|
470 |
+
<annotation>
|
471 |
+
<documentation>
|
472 |
+
This element is the reponse from the
|
473 |
+
disableWallet
|
474 |
+
method
|
475 |
+
</documentation>
|
476 |
+
</annotation>
|
477 |
+
<sequence>
|
478 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
479 |
+
<element name="walletIdList" nillable="false" type="tns1:walletIdList"/>
|
480 |
+
</sequence>
|
481 |
+
</complexType>
|
482 |
+
</element>
|
483 |
+
<element name="enableWalletRequest">
|
484 |
+
<complexType>
|
485 |
+
<annotation>
|
486 |
+
<documentation>
|
487 |
+
This element is the request for the
|
488 |
+
enableWallet
|
489 |
+
method
|
490 |
+
</documentation>
|
491 |
+
</annotation>
|
492 |
+
<sequence>
|
493 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
494 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
495 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
496 |
+
</sequence>
|
497 |
+
</complexType>
|
498 |
+
</element>
|
499 |
+
<element name="enableWalletResponse">
|
500 |
+
<complexType>
|
501 |
+
<annotation>
|
502 |
+
<documentation>
|
503 |
+
This element is the reponse from the
|
504 |
+
enableWallet
|
505 |
+
method
|
506 |
+
</documentation>
|
507 |
+
</annotation>
|
508 |
+
<sequence>
|
509 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
510 |
+
</sequence>
|
511 |
+
</complexType>
|
512 |
+
</element>
|
513 |
+
<element name="doImmediateWalletPaymentRequest">
|
514 |
+
<complexType>
|
515 |
+
<annotation>
|
516 |
+
<documentation>
|
517 |
+
This element is the request for the
|
518 |
+
doImmediateWalletPayment method
|
519 |
+
</documentation>
|
520 |
+
</annotation>
|
521 |
+
<sequence>
|
522 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
523 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
524 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
525 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
526 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
527 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
528 |
+
<element name="cvx" nillable="true" type="xsd:string"/>
|
529 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
530 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
531 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
532 |
+
</sequence>
|
533 |
+
</complexType>
|
534 |
+
</element>
|
535 |
+
<element name="doImmediateWalletPaymentResponse">
|
536 |
+
<complexType>
|
537 |
+
<annotation>
|
538 |
+
<documentation>
|
539 |
+
This element is the reponse from the
|
540 |
+
doImmediateWalletPayment method
|
541 |
+
</documentation>
|
542 |
+
</annotation>
|
543 |
+
<sequence>
|
544 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
545 |
+
<element name="transaction" nillable="true" type="tns1:transaction"/>
|
546 |
+
<element name="authorization" nillable="true" type="tns1:authorization"/>
|
547 |
+
</sequence>
|
548 |
+
</complexType>
|
549 |
+
</element>
|
550 |
+
<element name="doScheduledWalletPaymentRequest">
|
551 |
+
<complexType>
|
552 |
+
<annotation>
|
553 |
+
<documentation>
|
554 |
+
This element is the request for the
|
555 |
+
doScheduledWalletPayment method
|
556 |
+
</documentation>
|
557 |
+
</annotation>
|
558 |
+
<sequence>
|
559 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
560 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
561 |
+
<element name="orderRef" nillable="true" type="xsd:string"/>
|
562 |
+
<element name="orderDate" nillable="true" type="xsd:string"/>
|
563 |
+
<element name="scheduledDate" nillable="false" type="xsd:string"/>
|
564 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
565 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
566 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
567 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
568 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
569 |
+
</sequence>
|
570 |
+
</complexType>
|
571 |
+
</element>
|
572 |
+
<element name="doScheduledWalletPaymentResponse">
|
573 |
+
<complexType>
|
574 |
+
<annotation>
|
575 |
+
<documentation>
|
576 |
+
This element is the reponse from the
|
577 |
+
doScheduledWalletPayment method
|
578 |
+
</documentation>
|
579 |
+
</annotation>
|
580 |
+
<sequence>
|
581 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
582 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
583 |
+
</sequence>
|
584 |
+
</complexType>
|
585 |
+
</element>
|
586 |
+
<element name="doRecurrentWalletPaymentRequest">
|
587 |
+
<complexType>
|
588 |
+
<annotation>
|
589 |
+
<documentation>
|
590 |
+
This element is the request for the
|
591 |
+
doRecurrentWalletPayment method
|
592 |
+
</documentation>
|
593 |
+
</annotation>
|
594 |
+
<sequence>
|
595 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
596 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
597 |
+
<element name="orderRef" nillable="false" type="xsd:string"/>
|
598 |
+
<element name="orderDate" nillable="false" type="xsd:string"/>
|
599 |
+
<element name="scheduledDate" nillable="false" type="xsd:string"/>
|
600 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
601 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
602 |
+
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
603 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
604 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
605 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
606 |
+
</sequence>
|
607 |
+
</complexType>
|
608 |
+
</element>
|
609 |
+
<element name="doRecurrentWalletPaymentResponse">
|
610 |
+
<complexType>
|
611 |
+
<annotation>
|
612 |
+
<documentation>
|
613 |
+
This element is the reponse from the
|
614 |
+
doRecurrentWalletPayment method
|
615 |
+
</documentation>
|
616 |
+
</annotation>
|
617 |
+
<sequence>
|
618 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
619 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
620 |
+
<element name="billingRecordList" nillable="false" type="tns1:billingRecordList"/>
|
621 |
+
</sequence>
|
622 |
+
</complexType>
|
623 |
+
</element>
|
624 |
+
<element name="getPaymentRecordRequest">
|
625 |
+
<complexType>
|
626 |
+
<annotation>
|
627 |
+
<documentation>
|
628 |
+
This element is the request for the
|
629 |
+
getPaymentRecord method
|
630 |
+
</documentation>
|
631 |
+
</annotation>
|
632 |
+
<sequence>
|
633 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
634 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
635 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
636 |
+
</sequence>
|
637 |
+
</complexType>
|
638 |
+
</element>
|
639 |
+
<element name="getPaymentRecordResponse">
|
640 |
+
<complexType>
|
641 |
+
<annotation>
|
642 |
+
<documentation>
|
643 |
+
This element is the reponse from the
|
644 |
+
getPaymentRecord method
|
645 |
+
</documentation>
|
646 |
+
</annotation>
|
647 |
+
<sequence>
|
648 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
649 |
+
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
650 |
+
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
651 |
+
<element name="disableDate" nillable="true" type="xsd:string"/>
|
652 |
+
<element name="billingRecordList" nillable="false" type="tns1:billingRecordList"/>
|
653 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
654 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
655 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
656 |
+
</sequence>
|
657 |
+
</complexType>
|
658 |
+
</element>
|
659 |
+
<element name="disablePaymentRecordRequest">
|
660 |
+
<complexType>
|
661 |
+
<annotation>
|
662 |
+
<documentation>
|
663 |
+
This element is the request for the
|
664 |
+
disablePaymentRecord method
|
665 |
+
</documentation>
|
666 |
+
</annotation>
|
667 |
+
<sequence>
|
668 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
669 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
670 |
+
</sequence>
|
671 |
+
</complexType>
|
672 |
+
</element>
|
673 |
+
<element name="disablePaymentRecordResponse">
|
674 |
+
<complexType>
|
675 |
+
<annotation>
|
676 |
+
<documentation>
|
677 |
+
This element is the reponse from the
|
678 |
+
disablePaymentRecord method
|
679 |
+
</documentation>
|
680 |
+
</annotation>
|
681 |
+
<sequence>
|
682 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
683 |
+
</sequence>
|
684 |
+
</complexType>
|
685 |
+
</element>
|
686 |
+
<element name="manageWebWalletRequest">
|
687 |
+
<complexType>
|
688 |
+
<annotation>
|
689 |
+
<documentation>
|
690 |
+
This element is the request for the
|
691 |
+
manageWebWallet
|
692 |
+
method
|
693 |
+
</documentation>
|
694 |
+
</annotation>
|
695 |
+
<sequence>
|
696 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
697 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
698 |
+
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
699 |
+
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
700 |
+
<element name="buyer" nillable="false" type="tns1:buyer"/>
|
701 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
702 |
+
<element name="languageCode" nillable="true" type="xsd:string"/>
|
703 |
+
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
704 |
+
<element name="securityMode" nillable="true" type="xsd:string"/>
|
705 |
+
<element name="returnURL" nillable="false" type="xsd:string"/>
|
706 |
+
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
707 |
+
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
708 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
709 |
+
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
710 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
711 |
+
</sequence>
|
712 |
+
</complexType>
|
713 |
+
</element>
|
714 |
+
<element name="manageWebWalletResponse">
|
715 |
+
<complexType>
|
716 |
+
<annotation>
|
717 |
+
<documentation>
|
718 |
+
This element is the reponse from the
|
719 |
+
manageWebWallet method
|
720 |
+
</documentation>
|
721 |
+
</annotation>
|
722 |
+
<sequence>
|
723 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
724 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
725 |
+
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
726 |
+
</sequence>
|
727 |
+
</complexType>
|
728 |
+
</element>
|
729 |
+
<element name="createWebWalletRequest">
|
730 |
+
<complexType>
|
731 |
+
<annotation>
|
732 |
+
<documentation>
|
733 |
+
This element is the request for the
|
734 |
+
createWebWallet
|
735 |
+
method
|
736 |
+
</documentation>
|
737 |
+
</annotation>
|
738 |
+
<sequence>
|
739 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
740 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
741 |
+
<element name="selectedContractList" nillable="true" type="tns1:selectedContractList"/>
|
742 |
+
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
743 |
+
<element name="buyer" nillable="false" type="tns1:buyer"/>
|
744 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
745 |
+
<element name="languageCode" nillable="true" type="xsd:string"/>
|
746 |
+
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
747 |
+
<element name="securityMode" nillable="true" type="xsd:string"/>
|
748 |
+
<element name="returnURL" nillable="false" type="xsd:string"/>
|
749 |
+
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
750 |
+
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
751 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
752 |
+
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
753 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
754 |
+
</sequence>
|
755 |
+
</complexType>
|
756 |
+
</element>
|
757 |
+
<element name="createWebWalletResponse">
|
758 |
+
<complexType>
|
759 |
+
<annotation>
|
760 |
+
<documentation>
|
761 |
+
This element is the reponse from the
|
762 |
+
createWebWallet method
|
763 |
+
</documentation>
|
764 |
+
</annotation>
|
765 |
+
<sequence>
|
766 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
767 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
768 |
+
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
769 |
+
</sequence>
|
770 |
+
</complexType>
|
771 |
+
</element>
|
772 |
+
<element name="updateWebWalletRequest">
|
773 |
+
<complexType>
|
774 |
+
<annotation>
|
775 |
+
<documentation>
|
776 |
+
This element is the request for the
|
777 |
+
updateWebWallet
|
778 |
+
method
|
779 |
+
</documentation>
|
780 |
+
</annotation>
|
781 |
+
<sequence>
|
782 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
783 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
784 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
785 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
786 |
+
<element name="updatePersonalDetails" nillable="true" type="xsd:string"/>
|
787 |
+
<element name="updateOwnerDetails" nillable="true" type="xsd:string"/>
|
788 |
+
<element name="updatePaymentDetails" nillable="true" type="xsd:string"/>
|
789 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
790 |
+
<element name="languageCode" nillable="true" type="xsd:string"/>
|
791 |
+
<element name="customPaymentPageCode" nillable="true" type="xsd:string"/>
|
792 |
+
<element name="securityMode" nillable="true" type="xsd:string"/>
|
793 |
+
<element name="returnURL" nillable="false" type="xsd:string"/>
|
794 |
+
<element name="cancelURL" nillable="false" type="xsd:string"/>
|
795 |
+
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
796 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
797 |
+
<element name="customPaymentTemplateURL" nillable="true" type="xsd:string"/>
|
798 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
799 |
+
</sequence>
|
800 |
+
</complexType>
|
801 |
+
</element>
|
802 |
+
<element name="updateWebWalletResponse">
|
803 |
+
<complexType>
|
804 |
+
<annotation>
|
805 |
+
<documentation>
|
806 |
+
This element is the reponse from the
|
807 |
+
updateWebWallet method
|
808 |
+
</documentation>
|
809 |
+
</annotation>
|
810 |
+
<sequence>
|
811 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
812 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
813 |
+
<element name="redirectURL" nillable="false" type="xsd:string"/>
|
814 |
+
</sequence>
|
815 |
+
</complexType>
|
816 |
+
</element>
|
817 |
+
<element name="getWebWalletRequest">
|
818 |
+
<complexType>
|
819 |
+
<annotation>
|
820 |
+
<documentation>
|
821 |
+
This element is the request for the
|
822 |
+
getWebWallet
|
823 |
+
method
|
824 |
+
</documentation>
|
825 |
+
</annotation>
|
826 |
+
<sequence>
|
827 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
828 |
+
<element name="token" nillable="false" type="xsd:string"/>
|
829 |
+
</sequence>
|
830 |
+
</complexType>
|
831 |
+
</element>
|
832 |
+
<element name="getWebWalletResponse">
|
833 |
+
<complexType>
|
834 |
+
<annotation>
|
835 |
+
<documentation>
|
836 |
+
This element is the reponse from the
|
837 |
+
getWebWallet
|
838 |
+
method
|
839 |
+
</documentation>
|
840 |
+
</annotation>
|
841 |
+
<sequence>
|
842 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
843 |
+
<element name="wallet" nillable="true" type="tns1:wallet"/>
|
844 |
+
<element name="owner" nillable="true" type="tns1:owner"/>
|
845 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
846 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
847 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
848 |
+
<element name="numberOfAttempt" nillable="true" type="xsd:string"/>
|
849 |
+
<element name="contractNumberWalletList" nillable="true" type="tns1:contractNumberWalletList"/>
|
850 |
+
</sequence>
|
851 |
+
</complexType>
|
852 |
+
</element>
|
853 |
+
<element name="getTransactionDetailsRequest">
|
854 |
+
<complexType>
|
855 |
+
<annotation>
|
856 |
+
<documentation>
|
857 |
+
This element is the request for the
|
858 |
+
getTransactionDetails method
|
859 |
+
</documentation>
|
860 |
+
</annotation>
|
861 |
+
<sequence>
|
862 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
863 |
+
<element name="transactionId" nillable="true" type="xsd:string"/>
|
864 |
+
<element name="orderRef" nillable="true" type="xsd:string"/>
|
865 |
+
<element name="startDate" nillable="true" type="xsd:string"/>
|
866 |
+
<element name="endDate" nillable="true" type="xsd:string"/>
|
867 |
+
<element name="transactionHistory" nillable="true" type="xsd:string"/>
|
868 |
+
<element name="archiveSearch" nillable="true" type="xsd:string"/>
|
869 |
+
</sequence>
|
870 |
+
</complexType>
|
871 |
+
</element>
|
872 |
+
<element name="getTransactionDetailsResponse">
|
873 |
+
<complexType>
|
874 |
+
<annotation>
|
875 |
+
<documentation>
|
876 |
+
This element is the response for the
|
877 |
+
getTransactionDetails method
|
878 |
+
</documentation>
|
879 |
+
</annotation>
|
880 |
+
<sequence>
|
881 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
882 |
+
<element name="transaction" nillable="true" type="tns1:transaction"/>
|
883 |
+
<element name="payment" nillable="true" type="tns1:payment"/>
|
884 |
+
<element name="authorization" nillable="true" type="tns1:authorization"/>
|
885 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
886 |
+
<element name="buyer" nillable="true" type="tns1:buyer"/>
|
887 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
888 |
+
<element name="card" type="tns1:cardOut"/>
|
889 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
890 |
+
<element name="associatedTransactionsList" nillable="true" type="tns1:associatedTransactionsList"/>
|
891 |
+
<element name="statusHistoryList" nillable="true" type="tns1:statusHistoryList"/>
|
892 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
893 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
894 |
+
<element minOccurs="0" name="paymentAdditionalList" nillable="true" type="tns1:paymentAdditionalList"/>
|
895 |
+
</sequence>
|
896 |
+
</complexType>
|
897 |
+
</element>
|
898 |
+
<element name="transactionsSearchRequest">
|
899 |
+
<complexType>
|
900 |
+
<annotation>
|
901 |
+
<documentation>
|
902 |
+
This element is the request for the
|
903 |
+
transactionsSearch method
|
904 |
+
</documentation>
|
905 |
+
</annotation>
|
906 |
+
<sequence>
|
907 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
908 |
+
<element name="transactionId" nillable="true" type="xsd:string"/>
|
909 |
+
<element name="orderRef" nillable="true" type="xsd:string"/>
|
910 |
+
<element name="startDate" nillable="true" type="xsd:string"/>
|
911 |
+
<element name="endDate" nillable="true" type="xsd:string"/>
|
912 |
+
<element name="contractNumber" nillable="true" type="xsd:string"/>
|
913 |
+
<element name="authorizationNumber" nillable="true" type="xsd:string"/>
|
914 |
+
<element name="returnCode" nillable="true" type="xsd:string"/>
|
915 |
+
<element name="paymentMean" nillable="true" type="xsd:string"/>
|
916 |
+
<element name="transactionType" nillable="true" type="xsd:string"/>
|
917 |
+
<element name="name" nillable="true" type="xsd:string"/>
|
918 |
+
<element name="firstName" nillable="true" type="xsd:string"/>
|
919 |
+
<element name="email" nillable="true" type="xsd:string"/>
|
920 |
+
<element name="cardNumber" nillable="true" type="xsd:string"/>
|
921 |
+
<element name="currency" nillable="true" type="xsd:string"/>
|
922 |
+
<element name="minAmount" nillable="true" type="xsd:string"/>
|
923 |
+
<element name="maxAmount" nillable="true" type="xsd:string"/>
|
924 |
+
<element name="walletId" nillable="true" type="xsd:string"/>
|
925 |
+
<element name="sequenceNumber" nillable="true" type="xsd:string"/>
|
926 |
+
<element name="token" nillable="true" type="xsd:string"/>
|
927 |
+
</sequence>
|
928 |
+
</complexType>
|
929 |
+
</element>
|
930 |
+
<element name="transactionsSearchResponse">
|
931 |
+
<complexType>
|
932 |
+
<annotation>
|
933 |
+
<documentation>
|
934 |
+
This element is the response for the
|
935 |
+
transactionsSearch method
|
936 |
+
</documentation>
|
937 |
+
</annotation>
|
938 |
+
<sequence>
|
939 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
940 |
+
<element name="transactionList" nillable="true" type="tns1:transactionList"/>
|
941 |
+
</sequence>
|
942 |
+
</complexType>
|
943 |
+
</element>
|
944 |
+
<element name="verifyEnrollmentRequest">
|
945 |
+
<complexType>
|
946 |
+
<annotation>
|
947 |
+
<documentation>
|
948 |
+
This element is the request for the
|
949 |
+
verifyEnrollment method
|
950 |
+
</documentation>
|
951 |
+
</annotation>
|
952 |
+
<sequence>
|
953 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
954 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
955 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
956 |
+
<element name="orderRef" nillable="false" type="xsd:string"/>
|
957 |
+
<element name="mdFieldValue" nillable="true" type="xsd:string"/>
|
958 |
+
<element name="userAgent" nillable="true" type="xsd:string"/>
|
959 |
+
<element name="walletId" nillable="true" type="xsd:string"/>
|
960 |
+
<element name="walletCardInd" nillable="true" type="xsd:string"/>
|
961 |
+
</sequence>
|
962 |
+
</complexType>
|
963 |
+
</element>
|
964 |
+
<element name="verifyEnrollmentResponse">
|
965 |
+
<complexType>
|
966 |
+
<annotation>
|
967 |
+
<documentation>
|
968 |
+
This element is the reponse from the
|
969 |
+
verifyEnrollment method
|
970 |
+
</documentation>
|
971 |
+
</annotation>
|
972 |
+
<sequence>
|
973 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
974 |
+
<element name="actionUrl" nillable="true" type="xsd:string"/>
|
975 |
+
<element name="actionMethod" nillable="true" type="xsd:string"/>
|
976 |
+
<element name="pareqFieldName" nillable="true" type="xsd:string"/>
|
977 |
+
<element name="pareqFieldValue" nillable="true" type="xsd:string"/>
|
978 |
+
<element name="termUrlName" nillable="true" type="xsd:string"/>
|
979 |
+
<element name="termUrlValue" nillable="true" type="xsd:string"/>
|
980 |
+
<element name="mdFieldName" nillable="true" type="xsd:string"/>
|
981 |
+
<element name="mdFieldValue" nillable="true" type="xsd:string"/>
|
982 |
+
<element name="mpiResult" nillable="true" type="xsd:string"/>
|
983 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
984 |
+
</sequence>
|
985 |
+
</complexType>
|
986 |
+
</element>
|
987 |
+
<element name="verifyAuthenticationRequest">
|
988 |
+
<complexType>
|
989 |
+
<annotation>
|
990 |
+
<documentation>
|
991 |
+
This element is the request for the
|
992 |
+
doAuthentication method
|
993 |
+
</documentation>
|
994 |
+
</annotation>
|
995 |
+
<sequence>
|
996 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
997 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
998 |
+
<element name="pares" nillable="false" type="xsd:string"/>
|
999 |
+
<element name="md" nillable="true" type="xsd:string"/>
|
1000 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
1001 |
+
</sequence>
|
1002 |
+
</complexType>
|
1003 |
+
</element>
|
1004 |
+
<element name="verifyAuthenticationResponse">
|
1005 |
+
<complexType>
|
1006 |
+
<annotation>
|
1007 |
+
<documentation>
|
1008 |
+
This element is the reponse from the
|
1009 |
+
doAuthentication method
|
1010 |
+
</documentation>
|
1011 |
+
</annotation>
|
1012 |
+
<sequence>
|
1013 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1014 |
+
<element name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
1015 |
+
<element name="mpiResult" nillable="true" type="xsd:string"/>
|
1016 |
+
</sequence>
|
1017 |
+
</complexType>
|
1018 |
+
</element>
|
1019 |
+
<element name="createMerchantRequest">
|
1020 |
+
<complexType>
|
1021 |
+
<annotation>
|
1022 |
+
<documentation>
|
1023 |
+
This element is the request for the
|
1024 |
+
createMerchant
|
1025 |
+
method
|
1026 |
+
</documentation>
|
1027 |
+
</annotation>
|
1028 |
+
<sequence>
|
1029 |
+
<element name="corporateName" nillable="true" type="xsd:string"/>
|
1030 |
+
<element name="publicName" nillable="true" type="xsd:string"/>
|
1031 |
+
<element name="currency">
|
1032 |
+
<annotation>
|
1033 |
+
<documentation>currency in ISO 4217 numeric format
|
1034 |
+
</documentation>
|
1035 |
+
</annotation>
|
1036 |
+
<simpleType>
|
1037 |
+
<restriction base="xsd:string">
|
1038 |
+
<length value="3"/>
|
1039 |
+
</restriction>
|
1040 |
+
</simpleType>
|
1041 |
+
</element>
|
1042 |
+
<element name="nationalID" nillable="true">
|
1043 |
+
<annotation>
|
1044 |
+
<documentation>unique national merchant ID</documentation>
|
1045 |
+
</annotation>
|
1046 |
+
<complexType>
|
1047 |
+
<choice>
|
1048 |
+
<element name="SIRET">
|
1049 |
+
<annotation>
|
1050 |
+
<documentation>Systeme d identification du Repertoire des
|
1051 |
+
ENtreprises
|
1052 |
+
</documentation>
|
1053 |
+
</annotation>
|
1054 |
+
<simpleType>
|
1055 |
+
<restriction base="xsd:string">
|
1056 |
+
<length value="14"/>
|
1057 |
+
</restriction>
|
1058 |
+
</simpleType>
|
1059 |
+
</element>
|
1060 |
+
<element name="other" type="xsd:string">
|
1061 |
+
<annotation>
|
1062 |
+
<documentation>to use if country is not France
|
1063 |
+
</documentation>
|
1064 |
+
</annotation>
|
1065 |
+
</element>
|
1066 |
+
</choice>
|
1067 |
+
</complexType>
|
1068 |
+
</element>
|
1069 |
+
<element name="distributor" nillable="true" type="xsd:string">
|
1070 |
+
<annotation>
|
1071 |
+
<documentation>Payline Distributor ID</documentation>
|
1072 |
+
</annotation>
|
1073 |
+
</element>
|
1074 |
+
<element name="merchantAddress" nillable="true" type="tns1:addressInterlocutor"/>
|
1075 |
+
<element name="businessInterlocutor" nillable="true" type="tns1:interlocutor"/>
|
1076 |
+
<element name="technicalInterlocutor" nillable="true" type="tns1:interlocutor"/>
|
1077 |
+
<element name="subscription" nillable="true" type="tns1:subscription"/>
|
1078 |
+
<element name="poss" nillable="true">
|
1079 |
+
<annotation>
|
1080 |
+
<documentation>list of point of sell</documentation>
|
1081 |
+
</annotation>
|
1082 |
+
<complexType>
|
1083 |
+
<sequence>
|
1084 |
+
<element maxOccurs="unbounded" minOccurs="0" name="pos" nillable="true" type="tns1:pointOfSell"/>
|
1085 |
+
</sequence>
|
1086 |
+
</complexType>
|
1087 |
+
</element>
|
1088 |
+
<element name="partner" nillable="true" type="xsd:string">
|
1089 |
+
<annotation>
|
1090 |
+
<documentation>Billing partner. 1:monext, 2:cetib, 3:payline.com
|
1091 |
+
</documentation>
|
1092 |
+
</annotation>
|
1093 |
+
</element>
|
1094 |
+
</sequence>
|
1095 |
+
</complexType>
|
1096 |
+
</element>
|
1097 |
+
<element name="createMerchantResponse">
|
1098 |
+
<complexType>
|
1099 |
+
<annotation>
|
1100 |
+
<documentation>
|
1101 |
+
This element is the reponse from the
|
1102 |
+
createMerchant
|
1103 |
+
method
|
1104 |
+
</documentation>
|
1105 |
+
</annotation>
|
1106 |
+
<sequence>
|
1107 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1108 |
+
<element name="connectionData" nillable="false" type="tns1:connectionData"/>
|
1109 |
+
</sequence>
|
1110 |
+
</complexType>
|
1111 |
+
</element>
|
1112 |
+
<element name="doScoringChequeRequest">
|
1113 |
+
<complexType>
|
1114 |
+
<annotation>
|
1115 |
+
<documentation>
|
1116 |
+
This element is the request for the
|
1117 |
+
doScoringCheque
|
1118 |
+
method
|
1119 |
+
</documentation>
|
1120 |
+
</annotation>
|
1121 |
+
<sequence>
|
1122 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
1123 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
1124 |
+
<element name="cheque" nillable="false" type="tns1:cheque"/>
|
1125 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
1126 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
1127 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
1128 |
+
</sequence>
|
1129 |
+
</complexType>
|
1130 |
+
</element>
|
1131 |
+
<element name="doScoringChequeResponse">
|
1132 |
+
<complexType>
|
1133 |
+
<annotation>
|
1134 |
+
<documentation>
|
1135 |
+
This element is the reponse from the
|
1136 |
+
doScoringCheque method
|
1137 |
+
</documentation>
|
1138 |
+
</annotation>
|
1139 |
+
<sequence>
|
1140 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1141 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
1142 |
+
<element name="scoringCheque" nillable="false" type="tns1:scoringCheque"/>
|
1143 |
+
</sequence>
|
1144 |
+
</complexType>
|
1145 |
+
</element>
|
1146 |
+
<element name="getEncryptionKeyRequest">
|
1147 |
+
<complexType>
|
1148 |
+
<annotation>
|
1149 |
+
<documentation>
|
1150 |
+
This element is the request for the
|
1151 |
+
getEncryptionKeyRequest method
|
1152 |
+
</documentation>
|
1153 |
+
</annotation>
|
1154 |
+
</complexType>
|
1155 |
+
</element>
|
1156 |
+
<element name="getEncryptionKeyResponse">
|
1157 |
+
<complexType>
|
1158 |
+
<annotation>
|
1159 |
+
<documentation>
|
1160 |
+
This element is the reponse from the
|
1161 |
+
getEncryptionKeyResponse method
|
1162 |
+
</documentation>
|
1163 |
+
</annotation>
|
1164 |
+
<sequence>
|
1165 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1166 |
+
<element name="key" nillable="false" type="tns1:key"/>
|
1167 |
+
</sequence>
|
1168 |
+
</complexType>
|
1169 |
+
</element>
|
1170 |
+
<element name="doReAuthorizationRequest">
|
1171 |
+
<complexType>
|
1172 |
+
<annotation>
|
1173 |
+
<documentation>
|
1174 |
+
This element is the request for the
|
1175 |
+
doReAuthorization method
|
1176 |
+
</documentation>
|
1177 |
+
</annotation>
|
1178 |
+
<sequence>
|
1179 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
1180 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
1181 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
1182 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
1183 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
1184 |
+
<element name="media" nillable="true" type="xsd:string"/>
|
1185 |
+
</sequence>
|
1186 |
+
</complexType>
|
1187 |
+
</element>
|
1188 |
+
<element name="doReAuthorizationResponse">
|
1189 |
+
<complexType>
|
1190 |
+
<annotation>
|
1191 |
+
<documentation>
|
1192 |
+
This element is the reponse from the
|
1193 |
+
doReAuthorization method
|
1194 |
+
</documentation>
|
1195 |
+
</annotation>
|
1196 |
+
<sequence>
|
1197 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1198 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
1199 |
+
<element name="card" type="tns1:cardOut"/>
|
1200 |
+
<element name="extendedCard" type="tns1:extendedCardType"/>
|
1201 |
+
</sequence>
|
1202 |
+
</complexType>
|
1203 |
+
</element>
|
1204 |
+
<element name="getMerchantSettingsRequest">
|
1205 |
+
<complexType>
|
1206 |
+
<annotation>
|
1207 |
+
<documentation>
|
1208 |
+
This element is the request for the
|
1209 |
+
getMerchantSettings method
|
1210 |
+
</documentation>
|
1211 |
+
</annotation>
|
1212 |
+
<sequence>
|
1213 |
+
<element name="version" nillable="true" type="xsd:string"/>
|
1214 |
+
</sequence>
|
1215 |
+
</complexType>
|
1216 |
+
</element>
|
1217 |
+
<element name="getMerchantSettingsResponse">
|
1218 |
+
<complexType>
|
1219 |
+
<annotation>
|
1220 |
+
<documentation>
|
1221 |
+
This element is the response from the
|
1222 |
+
getMerchantSettings method
|
1223 |
+
</documentation>
|
1224 |
+
</annotation>
|
1225 |
+
<sequence>
|
1226 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1227 |
+
<element name="listPointOfSell" nillable="false">
|
1228 |
+
<complexType>
|
1229 |
+
<sequence>
|
1230 |
+
<element maxOccurs="unbounded" minOccurs="0" name="pointOfSell" type="tns1:pointOfSell"/>
|
1231 |
+
</sequence>
|
1232 |
+
</complexType>
|
1233 |
+
</element>
|
1234 |
+
</sequence>
|
1235 |
+
</complexType>
|
1236 |
+
</element>
|
1237 |
+
<element name="getBalanceRequest">
|
1238 |
+
<complexType>
|
1239 |
+
<annotation>
|
1240 |
+
<documentation>
|
1241 |
+
This element is the request for the
|
1242 |
+
getBalance
|
1243 |
+
method
|
1244 |
+
</documentation>
|
1245 |
+
</annotation>
|
1246 |
+
<sequence>
|
1247 |
+
<element name="version" nillable="false" type="xsd:string"/>
|
1248 |
+
<element name="cardID" nillable="false" type="xsd:string"/>
|
1249 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1250 |
+
</sequence>
|
1251 |
+
</complexType>
|
1252 |
+
</element>
|
1253 |
+
<element name="getBalanceResponse">
|
1254 |
+
<complexType>
|
1255 |
+
<annotation>
|
1256 |
+
<documentation>
|
1257 |
+
This element is the reponse from the
|
1258 |
+
getBalance
|
1259 |
+
method
|
1260 |
+
</documentation>
|
1261 |
+
</annotation>
|
1262 |
+
<sequence>
|
1263 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1264 |
+
<element name="balance" nillable="false">
|
1265 |
+
<complexType>
|
1266 |
+
<sequence>
|
1267 |
+
<element maxOccurs="1" minOccurs="0" name="amount" type="xsd:string"/>
|
1268 |
+
<element maxOccurs="1" minOccurs="0" name="currency" type="xsd:string"/>
|
1269 |
+
</sequence>
|
1270 |
+
</complexType>
|
1271 |
+
</element>
|
1272 |
+
<element name="crdproduct" nillable="false" type="xsd:string"/>
|
1273 |
+
<element name="crdprogram" nillable="false" type="xsd:string"/>
|
1274 |
+
<element name="crddesign" nillable="false" type="xsd:string"/>
|
1275 |
+
</sequence>
|
1276 |
+
</complexType>
|
1277 |
+
</element>
|
1278 |
+
<element name="getAlertDetailsRequest">
|
1279 |
+
<complexType>
|
1280 |
+
<sequence>
|
1281 |
+
<element maxOccurs="1" minOccurs="1" name="AlertId" nillable="false" type="xsd:string">
|
1282 |
+
</element>
|
1283 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionId" nillable="false" type="xsd:string">
|
1284 |
+
</element>
|
1285 |
+
</sequence>
|
1286 |
+
</complexType>
|
1287 |
+
</element>
|
1288 |
+
<element name="getAlertDetailsResponse">
|
1289 |
+
<complexType>
|
1290 |
+
<sequence>
|
1291 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1292 |
+
<element maxOccurs="1" minOccurs="1" name="AlertId" nillable="false" type="xsd:string">
|
1293 |
+
</element>
|
1294 |
+
<element maxOccurs="1" minOccurs="0" name="ExplanationCode" nillable="true" type="xsd:string">
|
1295 |
+
</element>
|
1296 |
+
<element maxOccurs="1" minOccurs="0" name="ExplanationLabel" nillable="true" type="xsd:string">
|
1297 |
+
</element>
|
1298 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionStatus" nillable="false" type="xsd:string">
|
1299 |
+
</element>
|
1300 |
+
<element maxOccurs="1" minOccurs="1" name="MerchantLabel" nillable="false" type="xsd:string">
|
1301 |
+
</element>
|
1302 |
+
<element maxOccurs="1" minOccurs="1" name="PosLabel" nillable="false" type="xsd:string">
|
1303 |
+
</element>
|
1304 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionId" nillable="false" type="xsd:string">
|
1305 |
+
</element>
|
1306 |
+
<element maxOccurs="1" minOccurs="1" name="SecurityLevel" nillable="false" type="xsd:string">
|
1307 |
+
</element>
|
1308 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionDate" nillable="false" type="xsd:string">
|
1309 |
+
</element>
|
1310 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionAmount" nillable="false" type="xsd:string">
|
1311 |
+
</element>
|
1312 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionCurrency" nillable="false" type="xsd:string">
|
1313 |
+
</element>
|
1314 |
+
<element maxOccurs="1" minOccurs="1" name="PaymentType" nillable="false" type="xsd:string">
|
1315 |
+
</element>
|
1316 |
+
<element maxOccurs="1" minOccurs="1" name="PaymentData" nillable="false" type="xsd:string">
|
1317 |
+
</element>
|
1318 |
+
<element maxOccurs="1" minOccurs="0" name="HolderName" nillable="true" type="xsd:string">
|
1319 |
+
</element>
|
1320 |
+
<element maxOccurs="1" minOccurs="1" name="ReferenceData" nillable="false" type="xsd:string">
|
1321 |
+
</element>
|
1322 |
+
<element maxOccurs="1" minOccurs="0" name="CustomerId" nillable="true" type="xsd:string">
|
1323 |
+
</element>
|
1324 |
+
<element maxOccurs="1" minOccurs="0" name="BuyerFirstName" nillable="true" type="xsd:string">
|
1325 |
+
</element>
|
1326 |
+
<element maxOccurs="1" minOccurs="0" name="BuyerLastName" nillable="true" type="xsd:string">
|
1327 |
+
</element>
|
1328 |
+
<element maxOccurs="1" minOccurs="1" name="CustomerTransHist" nillable="false" type="tns1:CustomerTransHist">
|
1329 |
+
</element>
|
1330 |
+
<element maxOccurs="1" minOccurs="1" name="PaymentMeansTransHist" nillable="false" type="tns1:PaymentMeansTransHist">
|
1331 |
+
</element>
|
1332 |
+
<element maxOccurs="1" minOccurs="1" name="AlertsTransHist" nillable="false" type="tns1:AlertsTransHist">
|
1333 |
+
</element>
|
1334 |
+
</sequence>
|
1335 |
+
</complexType>
|
1336 |
+
</element>
|
1337 |
+
<element name="getTokenRequest">
|
1338 |
+
<complexType>
|
1339 |
+
<sequence>
|
1340 |
+
<element name="cardNumber" nillable="false" type="xsd:string"/>
|
1341 |
+
<element name="expirationDate" nillable="true" type="xsd:string"/>
|
1342 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1343 |
+
</sequence>
|
1344 |
+
</complexType>
|
1345 |
+
</element>
|
1346 |
+
<element name="getTokenResponse">
|
1347 |
+
<complexType>
|
1348 |
+
<sequence>
|
1349 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1350 |
+
<element maxOccurs="1" minOccurs="1" name="token" nillable="false" type="xsd:string"/>
|
1351 |
+
<element maxOccurs="1" minOccurs="1" name="maskedCardNumber" nillable="false" type="xsd:string"/>
|
1352 |
+
<element maxOccurs="1" minOccurs="1" name="expirationDate" nillable="false" type="xsd:string"/>
|
1353 |
+
<element maxOccurs="1" minOccurs="1" name="virtualCard" nillable="false" type="xsd:string"/>
|
1354 |
+
<element maxOccurs="1" minOccurs="1" name="cardType" nillable="false" type="xsd:string"/>
|
1355 |
+
<element maxOccurs="1" minOccurs="1" name="cardProduct" nillable="false" type="xsd:string"/>
|
1356 |
+
<element maxOccurs="1" minOccurs="1" name="acceptanceNetwork" nillable="false" type="xsd:string"/>
|
1357 |
+
<element maxOccurs="1" minOccurs="1" name="bank" nillable="false" type="xsd:string"/>
|
1358 |
+
</sequence>
|
1359 |
+
</complexType>
|
1360 |
+
</element>
|
1361 |
+
<element name="unBlockRequest">
|
1362 |
+
<complexType>
|
1363 |
+
<sequence>
|
1364 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
1365 |
+
<element name="transactionDate" nillable="true" type="xsd:string"/>
|
1366 |
+
<element name="version" nillable="true" type="xsd:string"/>
|
1367 |
+
</sequence>
|
1368 |
+
</complexType>
|
1369 |
+
</element>
|
1370 |
+
<element name="unBlockResponse">
|
1371 |
+
<complexType>
|
1372 |
+
<sequence>
|
1373 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1374 |
+
</sequence>
|
1375 |
+
</complexType>
|
1376 |
+
</element>
|
1377 |
+
|
1378 |
+
<element name="updatePaymentRecordRequest">
|
1379 |
+
<complexType>
|
1380 |
+
<sequence>
|
1381 |
+
<element name="version" nillable="true" type="xsd:string"/>
|
1382 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1383 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
1384 |
+
<element name="recurring" nillable="false" type="tns1:recurringForUpdate"/>
|
1385 |
+
</sequence>
|
1386 |
+
</complexType>
|
1387 |
+
</element>
|
1388 |
+
<element name="updatePaymentRecordResponse">
|
1389 |
+
<complexType>
|
1390 |
+
<sequence>
|
1391 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1392 |
+
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
1393 |
+
<element name="isDisabled" nillable="false" type="xsd:string"/>
|
1394 |
+
<element name="disableDate" nillable="false" type="xsd:string"/>
|
1395 |
+
<element name="privateDataList" nillable="false" type="tns1:privateDataList"/>
|
1396 |
+
<element name="order" nillable="false" type="tns1:order"/>
|
1397 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
1398 |
+
</sequence>
|
1399 |
+
</complexType>
|
1400 |
+
</element>
|
1401 |
+
|
1402 |
+
<element name="getBillingRecordRequest">
|
1403 |
+
<complexType>
|
1404 |
+
<sequence>
|
1405 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1406 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
1407 |
+
<element name="billingRecordId" nillable="false" type="xsd:string"/>
|
1408 |
+
</sequence>
|
1409 |
+
</complexType>
|
1410 |
+
</element>
|
1411 |
+
<element name="getBillingRecordResponse">
|
1412 |
+
<complexType>
|
1413 |
+
<sequence>
|
1414 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1415 |
+
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
1416 |
+
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
1417 |
+
<element name="disableDate" nillable="true" type="xsd:string"/>
|
1418 |
+
<element name="billingRecord" nillable="false" type="tns1:billingRecord"/>
|
1419 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
1420 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
1421 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
1422 |
+
</sequence>
|
1423 |
+
</complexType>
|
1424 |
+
</element>
|
1425 |
+
|
1426 |
+
<element name="updateBillingRecordRequest">
|
1427 |
+
<complexType>
|
1428 |
+
<sequence>
|
1429 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1430 |
+
<element name="paymentRecordId" nillable="false" type="xsd:string"/>
|
1431 |
+
<element name="billingRecordId" nillable="false" type="xsd:string"/>
|
1432 |
+
<element name="billingRecordForUpdate" nillable="false" type="tns1:billingRecordForUpdate"/>
|
1433 |
+
</sequence>
|
1434 |
+
</complexType>
|
1435 |
+
</element>
|
1436 |
+
|
1437 |
+
<element name="updateBillingRecordResponse">
|
1438 |
+
<complexType>
|
1439 |
+
<sequence>
|
1440 |
+
<element name="result" nillable="false" type="tns1:result"/>
|
1441 |
+
<element name="recurring" nillable="false" type="tns1:recurring"/>
|
1442 |
+
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
1443 |
+
<element name="disableDate" nillable="true" type="xsd:string"/>
|
1444 |
+
<element name="billingRecord" nillable="false" type="tns1:billingRecord"/>
|
1445 |
+
<element name="order" nillable="true" type="tns1:order"/>
|
1446 |
+
<element name="privateDataList" nillable="true" type="tns1:privateDataList"/>
|
1447 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
1448 |
+
</sequence>
|
1449 |
+
</complexType>
|
1450 |
+
</element>
|
1451 |
+
|
1452 |
+
</schema>
|
1453 |
+
<schema elementFormDefault="qualified" targetNamespace="http://obj.ws.payline.experian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
1454 |
+
<complexType name="result">
|
1455 |
+
<annotation>
|
1456 |
+
<documentation>
|
1457 |
+
This element contains information about the
|
1458 |
+
process
|
1459 |
+
</documentation>
|
1460 |
+
</annotation>
|
1461 |
+
<sequence>
|
1462 |
+
<element name="code" nillable="false" type="xsd:string"/>
|
1463 |
+
<element minOccurs="0" name="shortMessage" nillable="true" type="xsd:string"/>
|
1464 |
+
<element minOccurs="0" name="longMessage" nillable="true" type="xsd:string"/>
|
1465 |
+
</sequence>
|
1466 |
+
</complexType>
|
1467 |
+
<complexType name="cardOut">
|
1468 |
+
<sequence>
|
1469 |
+
<element minOccurs="0" name="number" nillable="true" type="xsd:string"/>
|
1470 |
+
<element minOccurs="0" name="type" nillable="true" type="xsd:string"/>
|
1471 |
+
<element minOccurs="0" name="expirationDate" nillable="true" type="xsd:string"/>
|
1472 |
+
<element minOccurs="0" name="cardholder" nillable="true" type="xsd:string"/>
|
1473 |
+
<element minOccurs="0" name="token" nillable="true" type="xsd:string"/>
|
1474 |
+
</sequence>
|
1475 |
+
</complexType>
|
1476 |
+
|
1477 |
+
<complexType name="extendedCardType">
|
1478 |
+
<sequence>
|
1479 |
+
<element minOccurs="0" name="country" nillable="true" type="xsd:string"/>
|
1480 |
+
<element minOccurs="0" name="isCvd" nillable="true" type="xsd:string"/>
|
1481 |
+
<element minOccurs="0" name="bank" nillable="true" type="xsd:string"/>
|
1482 |
+
<element minOccurs="0" name="type" nillable="true" type="xsd:string"/>
|
1483 |
+
<element minOccurs="0" name="network" nillable="true" type="xsd:string"/>
|
1484 |
+
<element minOccurs="0" name="product" nillable="true" type="xsd:string"/>
|
1485 |
+
</sequence>
|
1486 |
+
</complexType>
|
1487 |
+
<complexType name="order">
|
1488 |
+
<annotation>
|
1489 |
+
<documentation>
|
1490 |
+
This element contains information about the
|
1491 |
+
order
|
1492 |
+
</documentation>
|
1493 |
+
</annotation>
|
1494 |
+
<sequence>
|
1495 |
+
<element name="ref" nillable="false" type="xsd:string"/>
|
1496 |
+
<element minOccurs="0" name="origin" nillable="true" type="xsd:string"/>
|
1497 |
+
<element minOccurs="0" name="country" nillable="true" type="xsd:string"/>
|
1498 |
+
<element minOccurs="0" name="taxes" nillable="true" type="xsd:string"/>
|
1499 |
+
<element name="amount" nillable="false" type="xsd:string"/>
|
1500 |
+
<element name="currency" nillable="false" type="xsd:string"/>
|
1501 |
+
<element name="date" nillable="false" type="xsd:string"/>
|
1502 |
+
<element minOccurs="0" name="details" nillable="true" type="tns1:details"/>
|
1503 |
+
<element minOccurs="0" name="deliveryTime" nillable="true" type="xsd:string"/>
|
1504 |
+
<element minOccurs="0" name="deliveryMode" nillable="true" type="xsd:string"/>
|
1505 |
+
<element minOccurs="0" name="deliveryExpectedDate" nillable="true" type="xsd:string"/>
|
1506 |
+
<element minOccurs="0" name="deliveryExpectedDelay" nillable="true" type="xsd:string"/>
|
1507 |
+
</sequence>
|
1508 |
+
</complexType>
|
1509 |
+
<complexType name="key">
|
1510 |
+
<annotation>
|
1511 |
+
<documentation>
|
1512 |
+
This element contains information about the
|
1513 |
+
encryptionKey
|
1514 |
+
</documentation>
|
1515 |
+
</annotation>
|
1516 |
+
<sequence>
|
1517 |
+
<element name="keyId" nillable="false" type="xsd:integer"/>
|
1518 |
+
<element name="modulus" nillable="false" type="xsd:string"/>
|
1519 |
+
<element name="publicExponent" nillable="false" type="xsd:string"/>
|
1520 |
+
<element name="expirationDate" nillable="false" type="xsd:string"/>
|
1521 |
+
</sequence>
|
1522 |
+
</complexType>
|
1523 |
+
<complexType name="details">
|
1524 |
+
<annotation>
|
1525 |
+
<documentation>
|
1526 |
+
This element contains an array of orderDetail
|
1527 |
+
</documentation>
|
1528 |
+
</annotation>
|
1529 |
+
<sequence>
|
1530 |
+
<element maxOccurs="100" minOccurs="0" name="details" type="tns1:orderDetail"/>
|
1531 |
+
</sequence>
|
1532 |
+
</complexType>
|
1533 |
+
|
1534 |
+
<complexType name="orderDetail">
|
1535 |
+
<annotation>
|
1536 |
+
<documentation>
|
1537 |
+
This element contains information about the
|
1538 |
+
order
|
1539 |
+
product
|
1540 |
+
</documentation>
|
1541 |
+
</annotation>
|
1542 |
+
<sequence>
|
1543 |
+
<element minOccurs="0" name="ref" nillable="true" type="xsd:string"/>
|
1544 |
+
<element minOccurs="0" name="price" nillable="true" type="xsd:string"/>
|
1545 |
+
<element minOccurs="0" name="quantity" nillable="true" type="xsd:string"/>
|
1546 |
+
<element minOccurs="0" name="comment" nillable="true" type="xsd:string"/>
|
1547 |
+
<element minOccurs="0" name="category" nillable="true" type="xsd:string"/>
|
1548 |
+
<element minOccurs="0" name="brand" nillable="true" type="xsd:string"/>
|
1549 |
+
<element minOccurs="0" name="subcategory1" nillable="true" type="xsd:string"/>
|
1550 |
+
<element minOccurs="0" name="subcategory2" nillable="true" type="xsd:string"/>
|
1551 |
+
<element minOccurs="0" name="additionalData" nillable="true" type="xsd:string"/>
|
1552 |
+
<element minOccurs="0" name="taxRate" nillable="true" type="xsd:string"/>
|
1553 |
+
</sequence>
|
1554 |
+
</complexType>
|
1555 |
+
<complexType name="privateData">
|
1556 |
+
<annotation>
|
1557 |
+
<documentation>
|
1558 |
+
This element contains information about the
|
1559 |
+
merchant
|
1560 |
+
private data
|
1561 |
+
</documentation>
|
1562 |
+
</annotation>
|
1563 |
+
<sequence>
|
1564 |
+
<element name="key" nillable="false" type="xsd:string"/>
|
1565 |
+
<element name="value" nillable="false" type="xsd:string"/>
|
1566 |
+
</sequence>
|
1567 |
+
</complexType>
|
1568 |
+
<complexType name="transaction">
|
1569 |
+
<annotation>
|
1570 |
+
<documentation>
|
1571 |
+
This element contains information about the
|
1572 |
+
transaction
|
1573 |
+
</documentation>
|
1574 |
+
</annotation>
|
1575 |
+
<sequence>
|
1576 |
+
<element name="id" nillable="false" type="xsd:string"/>
|
1577 |
+
<element name="date" nillable="false" type="xsd:string"/>
|
1578 |
+
<element minOccurs="0" name="isDuplicated" nillable="true" type="xsd:string"/>
|
1579 |
+
<element name="isPossibleFraud" nillable="true" type="xsd:string"/>
|
1580 |
+
<element minOccurs="0" name="fraudResult" nillable="true" type="xsd:string"/>
|
1581 |
+
<element minOccurs="0" name="fraudResultDetails" nillable="true" type="tns1:fraudResultDetails"/>
|
1582 |
+
<element minOccurs="0" name="explanation" nillable="true" type="xsd:string"/>
|
1583 |
+
<element minOccurs="0" name="threeDSecure" nillable="true" type="xsd:string"/>
|
1584 |
+
<element minOccurs="0" name="score" nillable="true" type="xsd:string"/>
|
1585 |
+
<element minOccurs="0" name="externalWalletType" nillable="true" type="xsd:string"/>
|
1586 |
+
<element minOccurs="0" name="externalWalletContractNumber" nillable="true" type="xsd:string"/>
|
1587 |
+
|
1588 |
+
</sequence>
|
1589 |
+
</complexType>
|
1590 |
+
<complexType name="fraudResultDetails">
|
1591 |
+
<annotation>
|
1592 |
+
<documentation>
|
1593 |
+
This element contains information about the
|
1594 |
+
fraud
|
1595 |
+
result details
|
1596 |
+
</documentation>
|
1597 |
+
</annotation>
|
1598 |
+
<sequence>
|
1599 |
+
<element name="code" nillable="false" type="xsd:string"/>
|
1600 |
+
<element name="shortMessage" nillable="false" type="xsd:string"/>
|
1601 |
+
<element name="longMessage" nillable="false" type="xsd:string"/>
|
1602 |
+
</sequence>
|
1603 |
+
</complexType>
|
1604 |
+
<complexType name="payment">
|
1605 |
+
<annotation>
|
1606 |
+
<documentation>
|
1607 |
+
This element contains information about the
|
1608 |
+
payment
|
1609 |
+
</documentation>
|
1610 |
+
</annotation>
|
1611 |
+
<sequence>
|
1612 |
+
<element name="amount" nillable="true" type="xsd:string"/>
|
1613 |
+
<element name="currency" nillable="false" type="xsd:string"/>
|
1614 |
+
<element name="action" nillable="false" type="xsd:string"/>
|
1615 |
+
<element name="mode" nillable="false" type="xsd:string"/>
|
1616 |
+
<element name="contractNumber" nillable="false" type="xsd:string"/>
|
1617 |
+
<element minOccurs="0" name="differedActionDate" nillable="true" type="xsd:string"/>
|
1618 |
+
<element minOccurs="0" name="method" nillable="true" type="xsd:string"/>
|
1619 |
+
</sequence>
|
1620 |
+
</complexType>
|
1621 |
+
<complexType name="authorization">
|
1622 |
+
<annotation>
|
1623 |
+
<documentation>
|
1624 |
+
This element contains information about the
|
1625 |
+
authorization
|
1626 |
+
</documentation>
|
1627 |
+
</annotation>
|
1628 |
+
<sequence>
|
1629 |
+
<element name="number" nillable="false" type="xsd:string"/>
|
1630 |
+
<element name="date" nillable="false" type="xsd:string"/>
|
1631 |
+
</sequence>
|
1632 |
+
</complexType>
|
1633 |
+
<complexType name="card">
|
1634 |
+
<annotation>
|
1635 |
+
<documentation>
|
1636 |
+
This element contains information about the card
|
1637 |
+
</documentation>
|
1638 |
+
</annotation>
|
1639 |
+
<sequence>
|
1640 |
+
<element minOccurs="0" name="encryptionKeyId" nillable="true" type="xsd:string"/>
|
1641 |
+
<element minOccurs="0" name="encryptedData" nillable="true" type="xsd:string"/>
|
1642 |
+
<element minOccurs="0" name="number" nillable="true" type="xsd:string"/>
|
1643 |
+
<element name="type" nillable="false" type="xsd:string"/>
|
1644 |
+
<element minOccurs="0" name="expirationDate" nillable="true" type="xsd:string"/>
|
1645 |
+
<element minOccurs="0" name="cvx" nillable="true" type="xsd:string"/>
|
1646 |
+
<element minOccurs="0" name="ownerBirthdayDate" nillable="true" type="xsd:string"/>
|
1647 |
+
<element minOccurs="0" name="password" nillable="true" type="xsd:string"/>
|
1648 |
+
<element minOccurs="0" name="cardPresent" nillable="true" type="xsd:string"/>
|
1649 |
+
<element minOccurs="0" name="cardholder" nillable="true" type="xsd:string"/>
|
1650 |
+
<element minOccurs="0" name="token" nillable="true" type="xsd:string"/>
|
1651 |
+
</sequence>
|
1652 |
+
</complexType>
|
1653 |
+
<complexType name="buyer">
|
1654 |
+
<annotation>
|
1655 |
+
<documentation>
|
1656 |
+
This element contains information about the
|
1657 |
+
buyer
|
1658 |
+
</documentation>
|
1659 |
+
</annotation>
|
1660 |
+
<sequence>
|
1661 |
+
<element name="title" nillable="true" type="xsd:string"/>
|
1662 |
+
<element name="lastName" nillable="true" type="xsd:string"/>
|
1663 |
+
<element name="firstName" nillable="true" type="xsd:string"/>
|
1664 |
+
<element name="email" nillable="true" type="xsd:string"/>
|
1665 |
+
<element name="shippingAdress" nillable="true" type="tns1:address"/>
|
1666 |
+
<element name="billingAddress" nillable="true" type="tns1:address"/>
|
1667 |
+
<element name="accountCreateDate" nillable="true" type="xsd:string"/>
|
1668 |
+
<element name="accountAverageAmount" nillable="true" type="xsd:string"/>
|
1669 |
+
<element name="accountOrderCount" nillable="true" type="xsd:string"/>
|
1670 |
+
<element name="walletId" nillable="true" type="xsd:string"/>
|
1671 |
+
<element name="walletDisplayed" nillable="true" type="xsd:string"/>
|
1672 |
+
<element name="walletSecured" nillable="true" type="xsd:string"/>
|
1673 |
+
<element name="walletCardInd" nillable="true" type="xsd:string"/>
|
1674 |
+
<element name="ip" nillable="true" type="xsd:string"/>
|
1675 |
+
<element name="mobilePhone" nillable="true" type="xsd:string"/>
|
1676 |
+
<element name="customerId" nillable="true" type="xsd:string"/>
|
1677 |
+
<element name="legalStatus" nillable="true" type="xsd:string"/>
|
1678 |
+
<element name="legalDocument" nillable="true" type="xsd:string"/>
|
1679 |
+
<element name="birthDate" nillable="true" type="xsd:string"/>
|
1680 |
+
<element name="fingerprintID" nillable="true" type="xsd:string"/>
|
1681 |
+
</sequence>
|
1682 |
+
</complexType>
|
1683 |
+
<complexType name="owner">
|
1684 |
+
<annotation>
|
1685 |
+
<documentation>
|
1686 |
+
This element contains information about the
|
1687 |
+
owner
|
1688 |
+
</documentation>
|
1689 |
+
</annotation>
|
1690 |
+
<sequence>
|
1691 |
+
<element name="lastName" nillable="true" type="xsd:string"/>
|
1692 |
+
<element name="firstName" nillable="true" type="xsd:string"/>
|
1693 |
+
<element name="billingAddress" nillable="true" type="tns1:addressOwner"/>
|
1694 |
+
<element name="issueCardDate" nillable="true" type="xsd:string"/>
|
1695 |
+
</sequence>
|
1696 |
+
</complexType>
|
1697 |
+
<complexType name="address">
|
1698 |
+
<annotation>
|
1699 |
+
<documentation>
|
1700 |
+
This element contains information about the
|
1701 |
+
address
|
1702 |
+
</documentation>
|
1703 |
+
</annotation>
|
1704 |
+
<sequence>
|
1705 |
+
<element minOccurs="0" name="title" nillable="true" type="xsd:string"/>
|
1706 |
+
<element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
1707 |
+
<element minOccurs="0" name="firstName" nillable="true" type="xsd:string"/>
|
1708 |
+
<element minOccurs="0" name="lastName" nillable="true" type="xsd:string"/>
|
1709 |
+
<element minOccurs="0" name="street1" nillable="true" type="xsd:string"/>
|
1710 |
+
<element minOccurs="0" name="street2" nillable="true" type="xsd:string"/>
|
1711 |
+
<element minOccurs="0" name="cityName" nillable="true" type="xsd:string"/>
|
1712 |
+
<element minOccurs="0" name="zipCode" nillable="true" type="xsd:string"/>
|
1713 |
+
<element minOccurs="0" name="country" nillable="true" type="xsd:string"/>
|
1714 |
+
<element minOccurs="0" name="phone" nillable="true" type="xsd:string"/>
|
1715 |
+
<element minOccurs="0" name="state" nillable="true" type="xsd:string"/>
|
1716 |
+
<element minOccurs="0" name="county" nillable="true" type="xsd:string"/>
|
1717 |
+
<element minOccurs="0" name="phoneType" nillable="true" type="xsd:string"/>
|
1718 |
+
</sequence>
|
1719 |
+
</complexType>
|
1720 |
+
<complexType name="addressOwner">
|
1721 |
+
<annotation>
|
1722 |
+
<documentation>
|
1723 |
+
This element contains information about the
|
1724 |
+
address
|
1725 |
+
</documentation>
|
1726 |
+
</annotation>
|
1727 |
+
<sequence>
|
1728 |
+
<element name="street" nillable="true" type="xsd:string"/>
|
1729 |
+
<element name="cityName" nillable="true" type="xsd:string"/>
|
1730 |
+
<element name="zipCode" nillable="true" type="xsd:string"/>
|
1731 |
+
<element name="country" nillable="true" type="xsd:string"/>
|
1732 |
+
<element name="phone" nillable="true" type="xsd:string"/>
|
1733 |
+
</sequence>
|
1734 |
+
</complexType>
|
1735 |
+
<complexType name="capture">
|
1736 |
+
<annotation>
|
1737 |
+
<documentation>
|
1738 |
+
This element contains information about the
|
1739 |
+
capture
|
1740 |
+
</documentation>
|
1741 |
+
</annotation>
|
1742 |
+
<sequence>
|
1743 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
1744 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
1745 |
+
</sequence>
|
1746 |
+
</complexType>
|
1747 |
+
<complexType name="refund">
|
1748 |
+
<annotation>
|
1749 |
+
<documentation>
|
1750 |
+
This element contains information about the
|
1751 |
+
refund
|
1752 |
+
</documentation>
|
1753 |
+
</annotation>
|
1754 |
+
<sequence>
|
1755 |
+
<element name="transactionID" nillable="false" type="xsd:string"/>
|
1756 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
1757 |
+
</sequence>
|
1758 |
+
</complexType>
|
1759 |
+
<complexType name="selectedContractList">
|
1760 |
+
<annotation>
|
1761 |
+
<documentation>
|
1762 |
+
This element contains the list of selected card
|
1763 |
+
</documentation>
|
1764 |
+
</annotation>
|
1765 |
+
<sequence>
|
1766 |
+
<element maxOccurs="25" minOccurs="1" name="selectedContract" type="xsd:string"/>
|
1767 |
+
</sequence>
|
1768 |
+
</complexType>
|
1769 |
+
<complexType name="privateDataList">
|
1770 |
+
<annotation>
|
1771 |
+
<documentation>
|
1772 |
+
An array of private data
|
1773 |
+
</documentation>
|
1774 |
+
</annotation>
|
1775 |
+
<sequence>
|
1776 |
+
<element maxOccurs="100" minOccurs="0" name="privateData" type="tns1:privateData"/>
|
1777 |
+
</sequence>
|
1778 |
+
</complexType>
|
1779 |
+
<complexType name="contractNumberWalletList">
|
1780 |
+
<annotation>
|
1781 |
+
<documentation>
|
1782 |
+
An array of contract number of a wallet
|
1783 |
+
</documentation>
|
1784 |
+
</annotation>
|
1785 |
+
<sequence>
|
1786 |
+
<element maxOccurs="10" minOccurs="0" name="contractNumberWallet" type="xsd:string"/>
|
1787 |
+
</sequence>
|
1788 |
+
</complexType>
|
1789 |
+
<complexType name="cardsList">
|
1790 |
+
<annotation>
|
1791 |
+
<documentation>
|
1792 |
+
An array of cards
|
1793 |
+
</documentation>
|
1794 |
+
</annotation>
|
1795 |
+
<sequence>
|
1796 |
+
<element maxOccurs="99" minOccurs="0" name="cards" type="tns1:cards"/>
|
1797 |
+
</sequence>
|
1798 |
+
</complexType>
|
1799 |
+
<complexType name="captureAuthorizationList">
|
1800 |
+
<annotation>
|
1801 |
+
<documentation>
|
1802 |
+
An array of authorization to capture
|
1803 |
+
</documentation>
|
1804 |
+
</annotation>
|
1805 |
+
<sequence>
|
1806 |
+
<element maxOccurs="5000" minOccurs="1" name="capture" type="tns1:capture"/>
|
1807 |
+
</sequence>
|
1808 |
+
</complexType>
|
1809 |
+
<complexType name="refundAuthorizationList">
|
1810 |
+
<annotation>
|
1811 |
+
<documentation>
|
1812 |
+
An array of authorization to refund
|
1813 |
+
</documentation>
|
1814 |
+
</annotation>
|
1815 |
+
<sequence>
|
1816 |
+
<element maxOccurs="5000" minOccurs="1" name="refund" type="tns1:refund"/>
|
1817 |
+
</sequence>
|
1818 |
+
</complexType>
|
1819 |
+
<complexType name="resetAuthorizationList">
|
1820 |
+
<annotation>
|
1821 |
+
<documentation>
|
1822 |
+
An array of authorization to reset
|
1823 |
+
</documentation>
|
1824 |
+
</annotation>
|
1825 |
+
<sequence>
|
1826 |
+
<element maxOccurs="5000" minOccurs="1" name="transactionID" type="xsd:string"/>
|
1827 |
+
</sequence>
|
1828 |
+
</complexType>
|
1829 |
+
<complexType name="recurring">
|
1830 |
+
<annotation>
|
1831 |
+
<documentation>
|
1832 |
+
This element contains element for recurring
|
1833 |
+
operation
|
1834 |
+
</documentation>
|
1835 |
+
</annotation>
|
1836 |
+
<sequence>
|
1837 |
+
<element name="firstAmount" nillable="true" type="xsd:string"/>
|
1838 |
+
<element name="amount" nillable="false" type="xsd:string"/>
|
1839 |
+
<element name="billingCycle" nillable="false" type="xsd:string"/>
|
1840 |
+
<element name="billingLeft" nillable="false" type="xsd:string"/>
|
1841 |
+
<element name="billingDay" nillable="true" type="xsd:string"/>
|
1842 |
+
<element name="startDate" nillable="true" type="xsd:string"/>
|
1843 |
+
<element name="endDate" nillable="true" type="xsd:string"/>
|
1844 |
+
<element name="newAmount" nillable="true" type="xsd:string"/>
|
1845 |
+
<element name="amountModificationDate" nillable="true" type="xsd:string"/>
|
1846 |
+
</sequence>
|
1847 |
+
</complexType>
|
1848 |
+
<complexType name="recurringForUpdate">
|
1849 |
+
<annotation>
|
1850 |
+
<documentation>
|
1851 |
+
This element contains element for update a recurring
|
1852 |
+
operation
|
1853 |
+
</documentation>
|
1854 |
+
</annotation>
|
1855 |
+
<sequence>
|
1856 |
+
<element name="billingLeft" nillable="true" type="xsd:string"/>
|
1857 |
+
<element name="billingDay" nillable="true" type="xsd:string"/>
|
1858 |
+
<element name="endDate" nillable="true" type="xsd:string"/>
|
1859 |
+
<element name="newAmount" nillable="true" type="xsd:string"/>
|
1860 |
+
<element name="amountModificationDate" nillable="true" type="xsd:string"/>
|
1861 |
+
</sequence>
|
1862 |
+
</complexType>
|
1863 |
+
<complexType name="billingRecord">
|
1864 |
+
<annotation>
|
1865 |
+
<documentation>
|
1866 |
+
This element contains element for a billing
|
1867 |
+
record
|
1868 |
+
</documentation>
|
1869 |
+
</annotation>
|
1870 |
+
<sequence>
|
1871 |
+
<element name="date" nillable="false" type="xsd:string"/>
|
1872 |
+
<element name="amount" nillable="false" type="xsd:string"/>
|
1873 |
+
<element name="status" nillable="false" type="xsd:string"/>
|
1874 |
+
<element minOccurs="0" name="result" nillable="true" type="tns1:result"/>
|
1875 |
+
<element minOccurs="0" name="transaction" nillable="true" type="tns1:transaction"/>
|
1876 |
+
<element minOccurs="0" name="authorization" nillable="true" type="tns1:authorization"/>
|
1877 |
+
<element minOccurs="0" name="nbTry" nillable="true" type="xsd:string"/>
|
1878 |
+
<element minOccurs="0" name="rank" nillable="true" type="xsd:string"/>
|
1879 |
+
</sequence>
|
1880 |
+
</complexType>
|
1881 |
+
<complexType name="billingRecordList">
|
1882 |
+
<annotation>
|
1883 |
+
<documentation>
|
1884 |
+
An array of billing record
|
1885 |
+
</documentation>
|
1886 |
+
</annotation>
|
1887 |
+
<sequence>
|
1888 |
+
<element maxOccurs="100" minOccurs="0" name="billingRecord" type="tns1:billingRecord"/>
|
1889 |
+
</sequence>
|
1890 |
+
</complexType>
|
1891 |
+
|
1892 |
+
<complexType name="billingRecordForUpdate">
|
1893 |
+
<annotation>
|
1894 |
+
<documentation>
|
1895 |
+
This element contains element for update a recurring
|
1896 |
+
operation
|
1897 |
+
</documentation>
|
1898 |
+
</annotation>
|
1899 |
+
<sequence>
|
1900 |
+
<element name="date" nillable="true" type="xsd:string"/>
|
1901 |
+
<element name="amount" nillable="true" type="xsd:string"/>
|
1902 |
+
<element name="status" nillable="true" type="xsd:string"/>
|
1903 |
+
<element name="executionDate" nillable="true" type="xsd:string"/>
|
1904 |
+
</sequence>
|
1905 |
+
</complexType>
|
1906 |
+
|
1907 |
+
<complexType name="wallet">
|
1908 |
+
<annotation>
|
1909 |
+
<documentation>
|
1910 |
+
This element contains element for a wallet
|
1911 |
+
</documentation>
|
1912 |
+
</annotation>
|
1913 |
+
<sequence>
|
1914 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
1915 |
+
<element minOccurs="0" name="lastName" nillable="true" type="xsd:string"/>
|
1916 |
+
<element minOccurs="0" name="firstName" nillable="true" type="xsd:string"/>
|
1917 |
+
<element minOccurs="0" name="email" nillable="true" type="xsd:string"/>
|
1918 |
+
<element minOccurs="0" name="shippingAddress" nillable="true" type="tns1:address"/>
|
1919 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
1920 |
+
<element minOccurs="0" name="comment" nillable="true" type="xsd:string"/>
|
1921 |
+
<element minOccurs="0" name="default" nillable="true" type="xsd:string"/>
|
1922 |
+
<element minOccurs="0" name="cardStatus" nillable="true" type="xsd:string"/>
|
1923 |
+
</sequence>
|
1924 |
+
</complexType>
|
1925 |
+
<complexType name="cards">
|
1926 |
+
<annotation>
|
1927 |
+
<documentation>
|
1928 |
+
This element contains element for a wallet
|
1929 |
+
</documentation>
|
1930 |
+
</annotation>
|
1931 |
+
<sequence>
|
1932 |
+
<element name="walletId" nillable="false" type="xsd:string"/>
|
1933 |
+
<element name="lastName" nillable="true" type="xsd:string"/>
|
1934 |
+
<element name="firstName" nillable="true" type="xsd:string"/>
|
1935 |
+
<element name="email" nillable="true" type="xsd:string"/>
|
1936 |
+
<element name="shippingAddress" nillable="true" type="tns1:address"/>
|
1937 |
+
<element name="card" nillable="false" type="tns1:card"/>
|
1938 |
+
<element name="cardInd" nillable="true" type="xsd:string"/>
|
1939 |
+
<element name="comment" nillable="true" type="xsd:string"/>
|
1940 |
+
<element name="isDisabled" nillable="true" type="xsd:string"/>
|
1941 |
+
<element name="disableDate" nillable="true" type="xsd:string"/>
|
1942 |
+
<element name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
|
1943 |
+
<element name="default" nillable="true" type="xsd:string"/>
|
1944 |
+
</sequence>
|
1945 |
+
</complexType>
|
1946 |
+
<complexType name="walletIdList">
|
1947 |
+
<annotation>
|
1948 |
+
<documentation>
|
1949 |
+
This element contains the list of selected card
|
1950 |
+
</documentation>
|
1951 |
+
</annotation>
|
1952 |
+
<sequence>
|
1953 |
+
<element maxOccurs="500" minOccurs="1" name="walletId" type="xsd:string"/>
|
1954 |
+
</sequence>
|
1955 |
+
</complexType>
|
1956 |
+
<complexType name="transactionList">
|
1957 |
+
<annotation>
|
1958 |
+
<documentation>
|
1959 |
+
This element contains the list of selected card
|
1960 |
+
</documentation>
|
1961 |
+
</annotation>
|
1962 |
+
<sequence>
|
1963 |
+
<element maxOccurs="5000" minOccurs="0" name="transaction" type="tns1:transaction"/>
|
1964 |
+
</sequence>
|
1965 |
+
</complexType>
|
1966 |
+
<complexType name="authentication3DSecure">
|
1967 |
+
<annotation>
|
1968 |
+
<documentation>
|
1969 |
+
This element contains element for a 3DSecure
|
1970 |
+
transaction
|
1971 |
+
</documentation>
|
1972 |
+
</annotation>
|
1973 |
+
<sequence>
|
1974 |
+
<element minOccurs="0" name="md" nillable="true" type="xsd:string"/>
|
1975 |
+
<element minOccurs="0" name="pares" nillable="true" type="xsd:string"/>
|
1976 |
+
<element minOccurs="0" name="xid" nillable="true" type="xsd:string"/>
|
1977 |
+
<element minOccurs="0" name="eci" nillable="true" type="xsd:string"/>
|
1978 |
+
<element minOccurs="0" name="cavv" nillable="true" type="xsd:string"/>
|
1979 |
+
<element minOccurs="0" name="cavvAlgorithm" nillable="true" type="xsd:string"/>
|
1980 |
+
<element minOccurs="0" name="vadsResult" nillable="true" type="xsd:string"/>
|
1981 |
+
<element minOccurs="0" name="typeSecurisation" nillable="true" type="xsd:string"/>
|
1982 |
+
</sequence>
|
1983 |
+
</complexType>
|
1984 |
+
<complexType name="connectionData">
|
1985 |
+
<annotation>
|
1986 |
+
<documentation>
|
1987 |
+
This element contains the merchant connection
|
1988 |
+
parameters
|
1989 |
+
</documentation>
|
1990 |
+
</annotation>
|
1991 |
+
<sequence>
|
1992 |
+
<element name="merchantId" nillable="false" type="xsd:string"/>
|
1993 |
+
<element name="userId" nillable="false" type="xsd:string"/>
|
1994 |
+
<element name="password" nillable="false" type="xsd:string"/>
|
1995 |
+
<element name="secretQuestion" nillable="false" type="xsd:string"/>
|
1996 |
+
<element name="secretAnswer" nillable="false" type="xsd:string"/>
|
1997 |
+
</sequence>
|
1998 |
+
</complexType>
|
1999 |
+
<complexType name="scoringCheque">
|
2000 |
+
<annotation>
|
2001 |
+
<documentation>
|
2002 |
+
This element contains the scoring cheque parameters
|
2003 |
+
</documentation>
|
2004 |
+
</annotation>
|
2005 |
+
<sequence>
|
2006 |
+
<element name="chequeNumber" nillable="false" type="xsd:string"/>
|
2007 |
+
<element name="additionalDataResponse" nillable="false" type="xsd:string"/>
|
2008 |
+
<element name="terminalId" nillable="false" type="xsd:string"/>
|
2009 |
+
<element name="additionalPrivateData" nillable="false" type="xsd:string"/>
|
2010 |
+
</sequence>
|
2011 |
+
</complexType>
|
2012 |
+
<complexType name="addressInterlocutor">
|
2013 |
+
<annotation>
|
2014 |
+
<documentation>
|
2015 |
+
This element contains information about Interlocutor
|
2016 |
+
address
|
2017 |
+
</documentation>
|
2018 |
+
</annotation>
|
2019 |
+
<sequence>
|
2020 |
+
<element name="street1" nillable="true" type="xsd:string"/>
|
2021 |
+
<element name="street2" nillable="true" type="xsd:string"/>
|
2022 |
+
<element name="city" nillable="true" type="xsd:string"/>
|
2023 |
+
<element name="zipCode" nillable="true" type="xsd:string"/>
|
2024 |
+
<element name="state" nillable="true" type="xsd:string"/>
|
2025 |
+
<element name="country" nillable="true" type="xsd:string"/>
|
2026 |
+
</sequence>
|
2027 |
+
</complexType>
|
2028 |
+
<complexType name="interlocutor">
|
2029 |
+
<annotation>
|
2030 |
+
<documentation>
|
2031 |
+
This element contains information about Interlocutor
|
2032 |
+
</documentation>
|
2033 |
+
</annotation>
|
2034 |
+
<sequence>
|
2035 |
+
<element name="firstName" nillable="true" type="xsd:string"/>
|
2036 |
+
<element name="lastName" nillable="true" type="xsd:string"/>
|
2037 |
+
<element name="email" nillable="true" type="xsd:string"/>
|
2038 |
+
<element name="phone" nillable="true" type="xsd:string"/>
|
2039 |
+
<element name="mobile" nillable="true" type="xsd:string"/>
|
2040 |
+
<element name="fax" nillable="true" type="xsd:string"/>
|
2041 |
+
<element name="addressInterlocutor" nillable="true" type="tns1:addressInterlocutor"/>
|
2042 |
+
</sequence>
|
2043 |
+
</complexType>
|
2044 |
+
<complexType name="option">
|
2045 |
+
<annotation>
|
2046 |
+
<documentation>
|
2047 |
+
An array of subscribed options
|
2048 |
+
</documentation>
|
2049 |
+
</annotation>
|
2050 |
+
<sequence>
|
2051 |
+
<element name="id" type="xsd:string"/>
|
2052 |
+
<element name="subscribed" nillable="true" type="xsd:boolean"/>
|
2053 |
+
<element name="endDate" nillable="true" type="xsd:dateTime"/>
|
2054 |
+
</sequence>
|
2055 |
+
</complexType>
|
2056 |
+
<complexType name="subscription">
|
2057 |
+
<annotation>
|
2058 |
+
<documentation>
|
2059 |
+
This element contains information about the payline
|
2060 |
+
package subscribed by the merchant
|
2061 |
+
</documentation>
|
2062 |
+
</annotation>
|
2063 |
+
<sequence>
|
2064 |
+
<element name="id" type="xsd:string"/>
|
2065 |
+
<element maxOccurs="unbounded" minOccurs="0" name="option" type="tns1:option"/>
|
2066 |
+
</sequence>
|
2067 |
+
</complexType>
|
2068 |
+
<complexType name="iban">
|
2069 |
+
<annotation>
|
2070 |
+
<documentation>
|
2071 |
+
This element contains IBAN information
|
2072 |
+
</documentation>
|
2073 |
+
</annotation>
|
2074 |
+
<sequence>
|
2075 |
+
<element name="CountryCode" nillable="true" type="xsd:string"/>
|
2076 |
+
<element name="checkKey" nillable="true" type="xsd:string"/>
|
2077 |
+
<element name="BBAN" nillable="true" type="xsd:string"/>
|
2078 |
+
<element name="BIC" nillable="true" type="xsd:string"/>
|
2079 |
+
</sequence>
|
2080 |
+
</complexType>
|
2081 |
+
<complexType name="rib">
|
2082 |
+
<annotation>
|
2083 |
+
<documentation>
|
2084 |
+
This element contains RIB information
|
2085 |
+
</documentation>
|
2086 |
+
</annotation>
|
2087 |
+
<sequence>
|
2088 |
+
<element name="tellerCode" nillable="true" type="xsd:string"/>
|
2089 |
+
<element name="accountNumber" nillable="true" type="xsd:string"/>
|
2090 |
+
<element name="key" nillable="true" type="xsd:string"/>
|
2091 |
+
</sequence>
|
2092 |
+
</complexType>
|
2093 |
+
<complexType name="bankAccount">
|
2094 |
+
<annotation>
|
2095 |
+
<documentation>
|
2096 |
+
This element contains bankAccount information
|
2097 |
+
</documentation>
|
2098 |
+
</annotation>
|
2099 |
+
<sequence>
|
2100 |
+
<element name="bankCode" nillable="true" type="xsd:string"/>
|
2101 |
+
<element name="bankNumber" nillable="true" type="xsd:string"/>
|
2102 |
+
<element name="iban" nillable="true" type="tns1:iban"/>
|
2103 |
+
<element name="rib" nillable="true" type="tns1:rib"/>
|
2104 |
+
</sequence>
|
2105 |
+
</complexType>
|
2106 |
+
<complexType name="bankAccountData">
|
2107 |
+
<annotation>
|
2108 |
+
<documentation>
|
2109 |
+
This element contains bank Account information
|
2110 |
+
</documentation>
|
2111 |
+
</annotation>
|
2112 |
+
<sequence>
|
2113 |
+
<element name="countryCode" nillable="true" type="xsd:string"/>
|
2114 |
+
<element name="bankCode" nillable="true" type="xsd:string"/>
|
2115 |
+
<element name="accountNumber" nillable="true" type="xsd:string"/>
|
2116 |
+
<element name="key" nillable="true" type="xsd:string"/>
|
2117 |
+
</sequence>
|
2118 |
+
</complexType>
|
2119 |
+
<complexType name="technicalData">
|
2120 |
+
<annotation>
|
2121 |
+
<documentation>
|
2122 |
+
This element contains technical data used to define
|
2123 |
+
acquirer service
|
2124 |
+
</documentation>
|
2125 |
+
</annotation>
|
2126 |
+
<sequence>
|
2127 |
+
<element name="terminalNumber" nillable="true" type="xsd:string"/>
|
2128 |
+
<element name="GTInstance" nillable="true" type="xsd:string"/>
|
2129 |
+
<element name="paymentProfil" nillable="true" type="xsd:string"/>
|
2130 |
+
</sequence>
|
2131 |
+
</complexType>
|
2132 |
+
<complexType name="contract">
|
2133 |
+
<annotation>
|
2134 |
+
<documentation>
|
2135 |
+
This element contains all information about contract
|
2136 |
+
</documentation>
|
2137 |
+
</annotation>
|
2138 |
+
<sequence>
|
2139 |
+
<element name="cardType" nillable="true" type="xsd:string"/>
|
2140 |
+
<element minOccurs="0" name="label" nillable="true" type="xsd:string"/>
|
2141 |
+
<element name="contractNumber" nillable="true" type="xsd:string"/>
|
2142 |
+
<element name="currency" nillable="true" type="xsd:string"/>
|
2143 |
+
<element default="Manual" name="settlementType">
|
2144 |
+
<simpleType>
|
2145 |
+
<restriction base="xsd:string">
|
2146 |
+
<enumeration value="Manual"/>
|
2147 |
+
<enumeration value="Now"/>
|
2148 |
+
<enumeration value="1Day"/>
|
2149 |
+
<enumeration value="2Day"/>
|
2150 |
+
<enumeration value="3Day"/>
|
2151 |
+
<enumeration value="4Day"/>
|
2152 |
+
<enumeration value="5Day"/>
|
2153 |
+
<enumeration value="6Day"/>
|
2154 |
+
<enumeration value="7Day"/>
|
2155 |
+
</restriction>
|
2156 |
+
</simpleType>
|
2157 |
+
</element>
|
2158 |
+
<element name="maxAmountPerTransaction" nillable="true" type="xsd:int"/>
|
2159 |
+
<element name="technicalData" nillable="true" type="tns1:technicalData"/>
|
2160 |
+
<element name="bankAccount" nillable="true" type="tns1:bankAccount"/>
|
2161 |
+
<element name="acquirerInterlocutor" nillable="true" type="tns1:interlocutor"/>
|
2162 |
+
<element name="description" nillable="true" type="xsd:string"/>
|
2163 |
+
<element name="logoEnable" nillable="false" type="xsd:boolean"/>
|
2164 |
+
<element maxOccurs="1" minOccurs="0" name="smallLogoMime" type="xsd:string">
|
2165 |
+
</element>
|
2166 |
+
<element maxOccurs="1" minOccurs="0" name="smallLogo" type="xsd:base64Binary">
|
2167 |
+
</element>
|
2168 |
+
<element maxOccurs="1" minOccurs="0" name="normalLogoMime" type="xsd:string">
|
2169 |
+
</element>
|
2170 |
+
<element maxOccurs="1" minOccurs="0" name="normalLogo" type="xsd:base64Binary">
|
2171 |
+
</element>
|
2172 |
+
<element maxOccurs="1" minOccurs="0" name="contribution" type="tns1:contribution">
|
2173 |
+
</element>
|
2174 |
+
<element maxOccurs="1" minOccurs="0" name="enrolment3DS" type="xsd:string">
|
2175 |
+
</element>
|
2176 |
+
</sequence>
|
2177 |
+
</complexType>
|
2178 |
+
<complexType name="customPaymentPageCode">
|
2179 |
+
<annotation>
|
2180 |
+
<documentation>
|
2181 |
+
This element contains all information about
|
2182 |
+
customPaymentPageCode
|
2183 |
+
</documentation>
|
2184 |
+
</annotation>
|
2185 |
+
<sequence>
|
2186 |
+
<element name="code" nillable="true" type="xsd:string"/>
|
2187 |
+
<element name="label" nillable="true" type="xsd:string"/>
|
2188 |
+
<element name="type" nillable="true" type="xsd:string"/>
|
2189 |
+
</sequence>
|
2190 |
+
</complexType>
|
2191 |
+
<complexType name="ticketSend">
|
2192 |
+
<annotation>
|
2193 |
+
<documentation>
|
2194 |
+
This element contains information e-ticket
|
2195 |
+
</documentation>
|
2196 |
+
</annotation>
|
2197 |
+
<sequence>
|
2198 |
+
<element name="toBuyer" nillable="true" type="xsd:boolean"/>
|
2199 |
+
<element name="toMerchant" nillable="true" type="xsd:boolean"/>
|
2200 |
+
</sequence>
|
2201 |
+
</complexType>
|
2202 |
+
<complexType name="pointOfSell">
|
2203 |
+
<annotation>
|
2204 |
+
<documentation>
|
2205 |
+
This element contains all information about point of
|
2206 |
+
sell
|
2207 |
+
</documentation>
|
2208 |
+
</annotation>
|
2209 |
+
<sequence>
|
2210 |
+
<element name="siret" nillable="true" type="xsd:string"/>
|
2211 |
+
<element name="codeMcc" nillable="true">
|
2212 |
+
<annotation>
|
2213 |
+
<documentation>Merchant Category Code</documentation>
|
2214 |
+
</annotation>
|
2215 |
+
<simpleType>
|
2216 |
+
<restriction base="xsd:string">
|
2217 |
+
<xsd:length value="4"/>
|
2218 |
+
</restriction>
|
2219 |
+
</simpleType>
|
2220 |
+
</element>
|
2221 |
+
<element name="label" nillable="true" type="xsd:string"/>
|
2222 |
+
<element name="webmasterEmail" nillable="true" type="xsd:string"/>
|
2223 |
+
<element minOccurs="0" name="comments" nillable="true" type="xsd:string"/>
|
2224 |
+
<element name="webstoreURL" nillable="true" type="xsd:string"/>
|
2225 |
+
<element name="notificationURL" nillable="true" type="xsd:string"/>
|
2226 |
+
<element minOccurs="0" name="privateLifeURL" nillable="true" type="xsd:string"/>
|
2227 |
+
<element minOccurs="0" name="saleCondURL" nillable="true" type="xsd:string"/>
|
2228 |
+
<element minOccurs="0" name="buyerMustAcceptSaleCond" nillable="true" type="xsd:boolean"/>
|
2229 |
+
<element minOccurs="0" name="endOfPaymentRedirection" nillable="true" type="xsd:boolean"/>
|
2230 |
+
<element name="ticketSend" nillable="true" type="tns1:ticketSend"/>
|
2231 |
+
<element name="contracts">
|
2232 |
+
<annotation>
|
2233 |
+
<documentation>list of contract</documentation>
|
2234 |
+
</annotation>
|
2235 |
+
<complexType>
|
2236 |
+
<sequence>
|
2237 |
+
<element maxOccurs="unbounded" minOccurs="0" name="contract" type="tns1:contract"/>
|
2238 |
+
</sequence>
|
2239 |
+
</complexType>
|
2240 |
+
</element>
|
2241 |
+
<element name="virtualTerminal" nillable="true" type="tns1:virtualTerminal"/>
|
2242 |
+
<element name="customPaymentPageCodeList">
|
2243 |
+
<annotation>
|
2244 |
+
<documentation>list of custom payment page code</documentation>
|
2245 |
+
</annotation>
|
2246 |
+
<complexType>
|
2247 |
+
<sequence>
|
2248 |
+
<element maxOccurs="unbounded" minOccurs="0" name="customPaymentPageCode" type="tns1:customPaymentPageCode"/>
|
2249 |
+
</sequence>
|
2250 |
+
</complexType>
|
2251 |
+
</element>
|
2252 |
+
</sequence>
|
2253 |
+
</complexType>
|
2254 |
+
<complexType name="virtualTerminal">
|
2255 |
+
<annotation>
|
2256 |
+
<documentation>virtualTerminal</documentation>
|
2257 |
+
</annotation>
|
2258 |
+
<sequence>
|
2259 |
+
<element name="label" type="xsd:string"/>
|
2260 |
+
<element default="10" name="inactivityDelay" type="xsd:int">
|
2261 |
+
<annotation>
|
2262 |
+
<documentation>http session timeout delay</documentation>
|
2263 |
+
</annotation>
|
2264 |
+
</element>
|
2265 |
+
<element minOccurs="0" name="logo" type="xsd:string">
|
2266 |
+
<annotation>
|
2267 |
+
<documentation>path to logo</documentation>
|
2268 |
+
</annotation>
|
2269 |
+
</element>
|
2270 |
+
<element name="functions">
|
2271 |
+
<annotation>
|
2272 |
+
<documentation>list of functions</documentation>
|
2273 |
+
</annotation>
|
2274 |
+
<complexType>
|
2275 |
+
<sequence>
|
2276 |
+
<element maxOccurs="unbounded" name="function" type="tns1:virtualTerminalFunction"/>
|
2277 |
+
</sequence>
|
2278 |
+
</complexType>
|
2279 |
+
</element>
|
2280 |
+
</sequence>
|
2281 |
+
</complexType>
|
2282 |
+
<complexType name="virtualTerminalFunction">
|
2283 |
+
<annotation>
|
2284 |
+
<documentation>functions availbe in virtual terminal
|
2285 |
+
</documentation>
|
2286 |
+
</annotation>
|
2287 |
+
<sequence>
|
2288 |
+
<element name="function">
|
2289 |
+
<annotation>
|
2290 |
+
<documentation>Please refer to Payline documentation
|
2291 |
+
</documentation>
|
2292 |
+
</annotation>
|
2293 |
+
<simpleType>
|
2294 |
+
<restriction base="xsd:string">
|
2295 |
+
<enumeration value="simplePayment"/>
|
2296 |
+
<enumeration value="walletCreation"/>
|
2297 |
+
<enumeration value="nXPayment"/>
|
2298 |
+
</restriction>
|
2299 |
+
</simpleType>
|
2300 |
+
</element>
|
2301 |
+
<element name="label" type="xsd:string"/>
|
2302 |
+
<sequence minOccurs="0">
|
2303 |
+
<element maxOccurs="unbounded" name="functionParameter">
|
2304 |
+
<annotation>
|
2305 |
+
<documentation>Value of parameter</documentation>
|
2306 |
+
</annotation>
|
2307 |
+
<complexType>
|
2308 |
+
<attribute name="id">
|
2309 |
+
<annotation>
|
2310 |
+
<documentation>Parameter ID. Refer to payline documentation
|
2311 |
+
</documentation>
|
2312 |
+
</annotation>
|
2313 |
+
</attribute>
|
2314 |
+
</complexType>
|
2315 |
+
</element>
|
2316 |
+
</sequence>
|
2317 |
+
</sequence>
|
2318 |
+
</complexType>
|
2319 |
+
<complexType name="cheque">
|
2320 |
+
<annotation>
|
2321 |
+
<documentation>
|
2322 |
+
This element contains information about the
|
2323 |
+
cheque
|
2324 |
+
</documentation>
|
2325 |
+
</annotation>
|
2326 |
+
<sequence>
|
2327 |
+
<element name="number" nillable="false" type="xsd:string"/>
|
2328 |
+
</sequence>
|
2329 |
+
</complexType>
|
2330 |
+
<complexType name="contribution">
|
2331 |
+
<annotation>
|
2332 |
+
<documentation>
|
2333 |
+
This element contains all information about
|
2334 |
+
contrinution
|
2335 |
+
</documentation>
|
2336 |
+
</annotation>
|
2337 |
+
<sequence>
|
2338 |
+
<element name="enable" type="xsd:boolean"/>
|
2339 |
+
<element name="type" nillable="true" type="xsd:string"/>
|
2340 |
+
<element name="value" nillable="true" type="xsd:string"/>
|
2341 |
+
<element name="nbFreeTransaction" nillable="true" type="xsd:string"/>
|
2342 |
+
<element name="minAmountTransaction" nillable="true" type="xsd:string"/>
|
2343 |
+
<element name="maxAmountTransaction" nillable="true" type="xsd:string"/>
|
2344 |
+
</sequence>
|
2345 |
+
</complexType>
|
2346 |
+
<complexType name="associatedTransactions">
|
2347 |
+
<annotation>
|
2348 |
+
<documentation>
|
2349 |
+
This element contains information about the
|
2350 |
+
associated transactions
|
2351 |
+
</documentation>
|
2352 |
+
</annotation>
|
2353 |
+
<sequence>
|
2354 |
+
<element name="transactionId" nillable="false" type="xsd:string"/>
|
2355 |
+
<element name="type" nillable="false" type="xsd:string"/>
|
2356 |
+
<element name="date" nillable="false" type="string"/>
|
2357 |
+
<element name="amount" nillable="false" type="xsd:string"/>
|
2358 |
+
<element name="status" nillable="false" type="xsd:string"/>
|
2359 |
+
<element name="originTransactionId" nillable="false" type="xsd:string"/>
|
2360 |
+
</sequence>
|
2361 |
+
</complexType>
|
2362 |
+
|
2363 |
+
<complexType name="associatedTransactionsList">
|
2364 |
+
<annotation>
|
2365 |
+
<documentation>
|
2366 |
+
An array of associatedTransactions
|
2367 |
+
</documentation>
|
2368 |
+
</annotation>
|
2369 |
+
<sequence>
|
2370 |
+
<element maxOccurs="100" minOccurs="0" name="associatedTransactions" type="tns1:associatedTransactions"/>
|
2371 |
+
</sequence>
|
2372 |
+
</complexType>
|
2373 |
+
|
2374 |
+
<complexType name="statusHistory">
|
2375 |
+
<annotation>
|
2376 |
+
<documentation>
|
2377 |
+
This element contains information about the
|
2378 |
+
status
|
2379 |
+
History
|
2380 |
+
</documentation>
|
2381 |
+
</annotation>
|
2382 |
+
<sequence>
|
2383 |
+
<element name="transactionId" nillable="false" type="xsd:string"/>
|
2384 |
+
<element name="date" nillable="false" type="string"/>
|
2385 |
+
<element name="amount" nillable="false" type="xsd:string"/>
|
2386 |
+
<element name="fees" nillable="false" type="xsd:string"/>
|
2387 |
+
<element name="status" nillable="false" type="xsd:string"/>
|
2388 |
+
<element name="originTransactionId" nillable="false" type="xsd:string"/>
|
2389 |
+
</sequence>
|
2390 |
+
</complexType>
|
2391 |
+
|
2392 |
+
<complexType name="statusHistoryList">
|
2393 |
+
<annotation>
|
2394 |
+
<documentation>
|
2395 |
+
An array of statusHistory
|
2396 |
+
</documentation>
|
2397 |
+
</annotation>
|
2398 |
+
<sequence>
|
2399 |
+
<element maxOccurs="100" minOccurs="0" name="statusHistory" type="tns1:statusHistory"/>
|
2400 |
+
</sequence>
|
2401 |
+
</complexType>
|
2402 |
+
<complexType name="paymentAdditional">
|
2403 |
+
<annotation>
|
2404 |
+
<documentation>
|
2405 |
+
This element contains information about the
|
2406 |
+
paymentAdditional
|
2407 |
+
</documentation>
|
2408 |
+
</annotation>
|
2409 |
+
<sequence>
|
2410 |
+
<element name="transaction" nillable="false" type="tns1:transaction"/>
|
2411 |
+
<element name="payment" nillable="false" type="tns1:payment"/>
|
2412 |
+
<element name="authorization" nillable="false" type="tns1:authorization"/>
|
2413 |
+
<element minOccurs="0" name="authentication3DSecure" nillable="true" type="tns1:authentication3DSecure"/>
|
2414 |
+
<element minOccurs="0" name="card" nillable="true" type="tns1:cardOut"/>
|
2415 |
+
<element minOccurs="0" name="extendedCard" nillable="true" type="tns1:extendedCardType"/>
|
2416 |
+
</sequence>
|
2417 |
+
</complexType>
|
2418 |
+
|
2419 |
+
<complexType name="paymentAdditionalList">
|
2420 |
+
<annotation>
|
2421 |
+
<documentation>
|
2422 |
+
An array of paymentAdditionalList
|
2423 |
+
</documentation>
|
2424 |
+
</annotation>
|
2425 |
+
<sequence>
|
2426 |
+
<element maxOccurs="100" minOccurs="0" name="paymentAdditional" type="tns1:paymentAdditional"/>
|
2427 |
+
</sequence>
|
2428 |
+
</complexType>
|
2429 |
+
|
2430 |
+
<complexType name="CustomerTransHist">
|
2431 |
+
<annotation>
|
2432 |
+
<documentation>
|
2433 |
+
An array of CustomerTrans
|
2434 |
+
</documentation>
|
2435 |
+
</annotation>
|
2436 |
+
<sequence>
|
2437 |
+
<element maxOccurs="unbounded" minOccurs="0" name="CustomerTrans" type="tns1:CustomerTrans">
|
2438 |
+
</element>
|
2439 |
+
</sequence>
|
2440 |
+
</complexType>
|
2441 |
+
<complexType name="CustomerTrans">
|
2442 |
+
<sequence>
|
2443 |
+
<element maxOccurs="1" minOccurs="1" name="IsLCLFAlerted" nillable="false" type="xsd:string">
|
2444 |
+
</element>
|
2445 |
+
<element maxOccurs="1" minOccurs="1" name="ExternalTransactionId" nillable="false" type="xsd:string">
|
2446 |
+
</element>
|
2447 |
+
<element maxOccurs="1" minOccurs="1" name="ReferenceOrder" nillable="false" type="xsd:string">
|
2448 |
+
</element>
|
2449 |
+
<element maxOccurs="1" minOccurs="1" name="CardCode" nillable="false" type="xsd:string">
|
2450 |
+
</element>
|
2451 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionDate" nillable="false" type="xsd:string">
|
2452 |
+
</element>
|
2453 |
+
<element maxOccurs="1" minOccurs="1" name="Amount" nillable="false" type="xsd:string">
|
2454 |
+
</element>
|
2455 |
+
<element maxOccurs="1" minOccurs="1" name="Status" nillable="false" type="xsd:string">
|
2456 |
+
</element>
|
2457 |
+
<element maxOccurs="1" minOccurs="1" name="PosLabel" nillable="false" type="xsd:string">
|
2458 |
+
</element>
|
2459 |
+
</sequence>
|
2460 |
+
</complexType>
|
2461 |
+
|
2462 |
+
<complexType name="PaymentMeansTransHist">
|
2463 |
+
<annotation>
|
2464 |
+
<documentation>
|
2465 |
+
An array of PaymentMeansTrans
|
2466 |
+
</documentation>
|
2467 |
+
</annotation>
|
2468 |
+
<sequence>
|
2469 |
+
<element maxOccurs="unbounded" minOccurs="0" name="PaymentMeansTrans" type="tns1:PaymentMeansTrans">
|
2470 |
+
</element>
|
2471 |
+
</sequence>
|
2472 |
+
</complexType>
|
2473 |
+
<complexType name="PaymentMeansTrans">
|
2474 |
+
<sequence>
|
2475 |
+
<element maxOccurs="1" minOccurs="1" name="IsLCLFAlerted" nillable="false" type="xsd:string">
|
2476 |
+
</element>
|
2477 |
+
<element maxOccurs="1" minOccurs="1" name="ExternalTransactionId" nillable="false" type="xsd:string">
|
2478 |
+
</element>
|
2479 |
+
<element maxOccurs="1" minOccurs="1" name="ReferenceOrder" nillable="false" type="xsd:string">
|
2480 |
+
</element>
|
2481 |
+
<element maxOccurs="1" minOccurs="0" name="CustomerData" nillable="true" type="xsd:string">
|
2482 |
+
</element>
|
2483 |
+
<element maxOccurs="1" minOccurs="1" name="TransactionDate" nillable="false" type="xsd:string">
|
2484 |
+
</element>
|
2485 |
+
<element maxOccurs="1" minOccurs="1" name="Amount" nillable="false" type="xsd:string">
|
2486 |
+
</element>
|
2487 |
+
<element maxOccurs="1" minOccurs="1" name="Status" nillable="false" type="xsd:string">
|
2488 |
+
</element>
|
2489 |
+
<element maxOccurs="1" minOccurs="1" name="PosLabel" nillable="false" type="xsd:string">
|
2490 |
+
</element>
|
2491 |
+
</sequence>
|
2492 |
+
</complexType>
|
2493 |
+
|
2494 |
+
<complexType name="AlertsTransHist">
|
2495 |
+
<annotation>
|
2496 |
+
<documentation>
|
2497 |
+
An array of AlertsTrans
|
2498 |
+
</documentation>
|
2499 |
+
</annotation>
|
2500 |
+
<sequence>
|
2501 |
+
<element maxOccurs="unbounded" minOccurs="0" name="AlertsTrans" type="tns1:AlertsTrans">
|
2502 |
+
</element>
|
2503 |
+
</sequence>
|
2504 |
+
</complexType>
|
2505 |
+
<complexType name="AlertsTrans">
|
2506 |
+
<sequence>
|
2507 |
+
<element maxOccurs="1" minOccurs="1" name="AlertId" nillable="false" type="xsd:string">
|
2508 |
+
</element>
|
2509 |
+
<element maxOccurs="1" minOccurs="1" name="ExplanationLabel" nillable="false" type="xsd:string">
|
2510 |
+
</element>
|
2511 |
+
<element maxOccurs="1" minOccurs="1" name="ExplanationCode" nillable="false" type="xsd:string">
|
2512 |
+
</element>
|
2513 |
+
<element maxOccurs="1" minOccurs="1" name="RuleName" nillable="false" type="xsd:string">
|
2514 |
+
</element>
|
2515 |
+
<element maxOccurs="1" minOccurs="0" name="RuleAction" nillable="true" type="xsd:string">
|
2516 |
+
</element>
|
2517 |
+
<element maxOccurs="1" minOccurs="0" name="RuleCriteria" nillable="true" type="xsd:string">
|
2518 |
+
</element>
|
2519 |
+
</sequence>
|
2520 |
+
</complexType>
|
2521 |
+
|
2522 |
+
</schema>
|
2523 |
+
</wsdl:types>
|
2524 |
+
<wsdl:message name="getTransactionDetailsRequest">
|
2525 |
+
<wsdl:part name="parameters" element="impl:getTransactionDetailsRequest">
|
2526 |
+
</wsdl:part>
|
2527 |
+
</wsdl:message>
|
2528 |
+
<wsdl:message name="doScheduledWalletPaymentRequest">
|
2529 |
+
<wsdl:part name="parameters" element="impl:doScheduledWalletPaymentRequest">
|
2530 |
+
</wsdl:part>
|
2531 |
+
</wsdl:message>
|
2532 |
+
<wsdl:message name="doDebitRequest">
|
2533 |
+
<wsdl:part name="parameters" element="impl:doDebitRequest">
|
2534 |
+
</wsdl:part>
|
2535 |
+
</wsdl:message>
|
2536 |
+
<wsdl:message name="doScheduledWalletPaymentResponse">
|
2537 |
+
<wsdl:part name="parameters" element="impl:doScheduledWalletPaymentResponse">
|
2538 |
+
</wsdl:part>
|
2539 |
+
</wsdl:message>
|
2540 |
+
<wsdl:message name="doCaptureResponse">
|
2541 |
+
<wsdl:part name="parameters" element="impl:doCaptureResponse">
|
2542 |
+
</wsdl:part>
|
2543 |
+
</wsdl:message>
|
2544 |
+
<wsdl:message name="doRecurrentWalletPaymentRequest">
|
2545 |
+
<wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentRequest">
|
2546 |
+
</wsdl:part>
|
2547 |
+
</wsdl:message>
|
2548 |
+
<wsdl:message name="getWalletRequest">
|
2549 |
+
<wsdl:part name="parameters" element="impl:getWalletRequest">
|
2550 |
+
</wsdl:part>
|
2551 |
+
</wsdl:message>
|
2552 |
+
<wsdl:message name="doAuthorizationResponse">
|
2553 |
+
<wsdl:part name="parameters" element="impl:doAuthorizationResponse">
|
2554 |
+
</wsdl:part>
|
2555 |
+
</wsdl:message>
|
2556 |
+
<wsdl:message name="getCardsResponse">
|
2557 |
+
<wsdl:part name="parameters" element="impl:getCardsResponse">
|
2558 |
+
</wsdl:part>
|
2559 |
+
</wsdl:message>
|
2560 |
+
<wsdl:message name="createWebWalletRequest">
|
2561 |
+
<wsdl:part name="parameters" element="impl:createWebWalletRequest">
|
2562 |
+
</wsdl:part>
|
2563 |
+
</wsdl:message>
|
2564 |
+
<wsdl:message name="getBalanceResponse">
|
2565 |
+
<wsdl:part name="parameters" element="impl:getBalanceResponse">
|
2566 |
+
</wsdl:part>
|
2567 |
+
</wsdl:message>
|
2568 |
+
<wsdl:message name="verifyAuthenticationRequest">
|
2569 |
+
<wsdl:part name="parameters" element="impl:verifyAuthenticationRequest">
|
2570 |
+
</wsdl:part>
|
2571 |
+
</wsdl:message>
|
2572 |
+
<wsdl:message name="verifyEnrollmentRequest">
|
2573 |
+
<wsdl:part name="parameters" element="impl:verifyEnrollmentRequest">
|
2574 |
+
</wsdl:part>
|
2575 |
+
</wsdl:message>
|
2576 |
+
<wsdl:message name="getWebWalletRequest">
|
2577 |
+
<wsdl:part name="parameters" element="impl:getWebWalletRequest">
|
2578 |
+
</wsdl:part>
|
2579 |
+
</wsdl:message>
|
2580 |
+
<wsdl:message name="verifyAuthenticationResponse">
|
2581 |
+
<wsdl:part name="parameters" element="impl:verifyAuthenticationResponse">
|
2582 |
+
</wsdl:part>
|
2583 |
+
</wsdl:message>
|
2584 |
+
<wsdl:message name="doScoringChequeRequest">
|
2585 |
+
<wsdl:part name="parameters" element="impl:doScoringChequeRequest">
|
2586 |
+
</wsdl:part>
|
2587 |
+
</wsdl:message>
|
2588 |
+
<wsdl:message name="doRefundRequest">
|
2589 |
+
<wsdl:part name="parameters" element="impl:doRefundRequest">
|
2590 |
+
</wsdl:part>
|
2591 |
+
</wsdl:message>
|
2592 |
+
<wsdl:message name="getWebWalletResponse">
|
2593 |
+
<wsdl:part name="parameters" element="impl:getWebWalletResponse">
|
2594 |
+
</wsdl:part>
|
2595 |
+
</wsdl:message>
|
2596 |
+
<wsdl:message name="getAlertDetailsRequest">
|
2597 |
+
<wsdl:part name="parameters" element="impl:getAlertDetailsRequest">
|
2598 |
+
</wsdl:part>
|
2599 |
+
</wsdl:message>
|
2600 |
+
<wsdl:message name="getBalanceRequest">
|
2601 |
+
<wsdl:part name="parameters" element="impl:getBalanceRequest">
|
2602 |
+
</wsdl:part>
|
2603 |
+
</wsdl:message>
|
2604 |
+
<wsdl:message name="updateWalletRequest">
|
2605 |
+
<wsdl:part name="parameters" element="impl:updateWalletRequest">
|
2606 |
+
</wsdl:part>
|
2607 |
+
</wsdl:message>
|
2608 |
+
<wsdl:message name="doScoringChequeResponse">
|
2609 |
+
<wsdl:part name="parameters" element="impl:doScoringChequeResponse">
|
2610 |
+
</wsdl:part>
|
2611 |
+
</wsdl:message>
|
2612 |
+
<wsdl:message name="getBillingRecordResponse">
|
2613 |
+
<wsdl:part name="parameters" element="impl:getBillingRecordResponse">
|
2614 |
+
</wsdl:part>
|
2615 |
+
</wsdl:message>
|
2616 |
+
<wsdl:message name="getPaymentRecordRequest">
|
2617 |
+
<wsdl:part name="parameters" element="impl:getPaymentRecordRequest">
|
2618 |
+
</wsdl:part>
|
2619 |
+
</wsdl:message>
|
2620 |
+
<wsdl:message name="updateWebWalletRequest">
|
2621 |
+
<wsdl:part name="parameters" element="impl:updateWebWalletRequest">
|
2622 |
+
</wsdl:part>
|
2623 |
+
</wsdl:message>
|
2624 |
+
<wsdl:message name="unBlockRequest">
|
2625 |
+
<wsdl:part name="parameters" element="impl:unBlockRequest">
|
2626 |
+
</wsdl:part>
|
2627 |
+
</wsdl:message>
|
2628 |
+
<wsdl:message name="enableWalletRequest">
|
2629 |
+
<wsdl:part name="parameters" element="impl:enableWalletRequest">
|
2630 |
+
</wsdl:part>
|
2631 |
+
</wsdl:message>
|
2632 |
+
<wsdl:message name="doImmediateWalletPaymentRequest">
|
2633 |
+
<wsdl:part name="parameters" element="impl:doImmediateWalletPaymentRequest">
|
2634 |
+
</wsdl:part>
|
2635 |
+
</wsdl:message>
|
2636 |
+
<wsdl:message name="updateWalletResponse">
|
2637 |
+
<wsdl:part name="parameters" element="impl:updateWalletResponse">
|
2638 |
+
</wsdl:part>
|
2639 |
+
</wsdl:message>
|
2640 |
+
<wsdl:message name="doImmediateWalletPaymentResponse">
|
2641 |
+
<wsdl:part name="parameters" element="impl:doImmediateWalletPaymentResponse">
|
2642 |
+
</wsdl:part>
|
2643 |
+
</wsdl:message>
|
2644 |
+
<wsdl:message name="doAuthorizationRequest">
|
2645 |
+
<wsdl:part name="parameters" element="impl:doAuthorizationRequest">
|
2646 |
+
</wsdl:part>
|
2647 |
+
</wsdl:message>
|
2648 |
+
<wsdl:message name="doWebPaymentRequest">
|
2649 |
+
<wsdl:part name="parameters" element="impl:doWebPaymentRequest">
|
2650 |
+
</wsdl:part>
|
2651 |
+
</wsdl:message>
|
2652 |
+
<wsdl:message name="getWalletResponse">
|
2653 |
+
<wsdl:part name="parameters" element="impl:getWalletResponse">
|
2654 |
+
</wsdl:part>
|
2655 |
+
</wsdl:message>
|
2656 |
+
<wsdl:message name="doDebitResponse">
|
2657 |
+
<wsdl:part name="parameters" element="impl:doDebitResponse">
|
2658 |
+
</wsdl:part>
|
2659 |
+
</wsdl:message>
|
2660 |
+
<wsdl:message name="updateBillingRecordResponse">
|
2661 |
+
<wsdl:part name="parameters" element="impl:updateBillingRecordResponse">
|
2662 |
+
</wsdl:part>
|
2663 |
+
</wsdl:message>
|
2664 |
+
<wsdl:message name="disableWalletRequest">
|
2665 |
+
<wsdl:part name="parameters" element="impl:disableWalletRequest">
|
2666 |
+
</wsdl:part>
|
2667 |
+
</wsdl:message>
|
2668 |
+
<wsdl:message name="createMerchantRequest">
|
2669 |
+
<wsdl:part name="parameters" element="impl:createMerchantRequest">
|
2670 |
+
</wsdl:part>
|
2671 |
+
</wsdl:message>
|
2672 |
+
<wsdl:message name="getEncryptionKeyResponse">
|
2673 |
+
<wsdl:part name="parameters" element="impl:getEncryptionKeyResponse">
|
2674 |
+
</wsdl:part>
|
2675 |
+
</wsdl:message>
|
2676 |
+
<wsdl:message name="createMerchantResponse">
|
2677 |
+
<wsdl:part name="parameters" element="impl:createMerchantResponse">
|
2678 |
+
</wsdl:part>
|
2679 |
+
</wsdl:message>
|
2680 |
+
<wsdl:message name="getMerchantSettingsRequest">
|
2681 |
+
<wsdl:part name="parameters" element="impl:getMerchantSettingsRequest">
|
2682 |
+
</wsdl:part>
|
2683 |
+
</wsdl:message>
|
2684 |
+
<wsdl:message name="disableWalletResponse">
|
2685 |
+
<wsdl:part name="parameters" element="impl:disableWalletResponse">
|
2686 |
+
</wsdl:part>
|
2687 |
+
</wsdl:message>
|
2688 |
+
<wsdl:message name="doRecurrentWalletPaymentResponse">
|
2689 |
+
<wsdl:part name="parameters" element="impl:doRecurrentWalletPaymentResponse">
|
2690 |
+
</wsdl:part>
|
2691 |
+
</wsdl:message>
|
2692 |
+
<wsdl:message name="createWalletResponse">
|
2693 |
+
<wsdl:part name="parameters" element="impl:createWalletResponse">
|
2694 |
+
</wsdl:part>
|
2695 |
+
</wsdl:message>
|
2696 |
+
<wsdl:message name="manageWebWalletRequest">
|
2697 |
+
<wsdl:part name="parameters" element="impl:manageWebWalletRequest">
|
2698 |
+
</wsdl:part>
|
2699 |
+
</wsdl:message>
|
2700 |
+
<wsdl:message name="doCreditResponse">
|
2701 |
+
<wsdl:part name="parameters" element="impl:doCreditResponse">
|
2702 |
+
</wsdl:part>
|
2703 |
+
</wsdl:message>
|
2704 |
+
<wsdl:message name="getPaymentRecordResponse">
|
2705 |
+
<wsdl:part name="parameters" element="impl:getPaymentRecordResponse">
|
2706 |
+
</wsdl:part>
|
2707 |
+
</wsdl:message>
|
2708 |
+
<wsdl:message name="transactionsSearchRequest">
|
2709 |
+
<wsdl:part name="parameters" element="impl:transactionsSearchRequest">
|
2710 |
+
</wsdl:part>
|
2711 |
+
</wsdl:message>
|
2712 |
+
<wsdl:message name="updateBillingRecordRequest">
|
2713 |
+
<wsdl:part name="parameters" element="impl:updateBillingRecordRequest">
|
2714 |
+
</wsdl:part>
|
2715 |
+
</wsdl:message>
|
2716 |
+
<wsdl:message name="getTokenResponse">
|
2717 |
+
<wsdl:part name="parameters" element="impl:getTokenResponse">
|
2718 |
+
</wsdl:part>
|
2719 |
+
</wsdl:message>
|
2720 |
+
<wsdl:message name="getWebPaymentDetailsResponse">
|
2721 |
+
<wsdl:part name="parameters" element="impl:getWebPaymentDetailsResponse">
|
2722 |
+
</wsdl:part>
|
2723 |
+
</wsdl:message>
|
2724 |
+
<wsdl:message name="verifyEnrollmentResponse">
|
2725 |
+
<wsdl:part name="parameters" element="impl:verifyEnrollmentResponse">
|
2726 |
+
</wsdl:part>
|
2727 |
+
</wsdl:message>
|
2728 |
+
<wsdl:message name="updatePaymentRecordRequest">
|
2729 |
+
<wsdl:part name="parameters" element="impl:updatePaymentRecordRequest">
|
2730 |
+
</wsdl:part>
|
2731 |
+
</wsdl:message>
|
2732 |
+
<wsdl:message name="doReAuthorizationRequest">
|
2733 |
+
<wsdl:part name="parameters" element="impl:doReAuthorizationRequest">
|
2734 |
+
</wsdl:part>
|
2735 |
+
</wsdl:message>
|
2736 |
+
<wsdl:message name="createWalletRequest">
|
2737 |
+
<wsdl:part name="parameters" element="impl:createWalletRequest">
|
2738 |
+
</wsdl:part>
|
2739 |
+
</wsdl:message>
|
2740 |
+
<wsdl:message name="getEncryptionKeyRequest">
|
2741 |
+
<wsdl:part name="parameters" element="impl:getEncryptionKeyRequest">
|
2742 |
+
</wsdl:part>
|
2743 |
+
</wsdl:message>
|
2744 |
+
<wsdl:message name="doResetResponse">
|
2745 |
+
<wsdl:part name="parameters" element="impl:doResetResponse">
|
2746 |
+
</wsdl:part>
|
2747 |
+
</wsdl:message>
|
2748 |
+
<wsdl:message name="manageWebWalletResponse">
|
2749 |
+
<wsdl:part name="parameters" element="impl:manageWebWalletResponse">
|
2750 |
+
</wsdl:part>
|
2751 |
+
</wsdl:message>
|
2752 |
+
<wsdl:message name="createWebWalletResponse">
|
2753 |
+
<wsdl:part name="parameters" element="impl:createWebWalletResponse">
|
2754 |
+
</wsdl:part>
|
2755 |
+
</wsdl:message>
|
2756 |
+
<wsdl:message name="unBlockResponse">
|
2757 |
+
<wsdl:part name="parameters" element="impl:unBlockResponse">
|
2758 |
+
</wsdl:part>
|
2759 |
+
</wsdl:message>
|
2760 |
+
<wsdl:message name="doReAuthorizationResponse">
|
2761 |
+
<wsdl:part name="parameters" element="impl:doReAuthorizationResponse">
|
2762 |
+
</wsdl:part>
|
2763 |
+
</wsdl:message>
|
2764 |
+
<wsdl:message name="doCreditRequest">
|
2765 |
+
<wsdl:part name="parameters" element="impl:doCreditRequest">
|
2766 |
+
</wsdl:part>
|
2767 |
+
</wsdl:message>
|
2768 |
+
<wsdl:message name="getTokenRequest">
|
2769 |
+
<wsdl:part name="parameters" element="impl:getTokenRequest">
|
2770 |
+
</wsdl:part>
|
2771 |
+
</wsdl:message>
|
2772 |
+
<wsdl:message name="doRefundResponse">
|
2773 |
+
<wsdl:part name="parameters" element="impl:doRefundResponse">
|
2774 |
+
</wsdl:part>
|
2775 |
+
</wsdl:message>
|
2776 |
+
<wsdl:message name="getTransactionDetailsResponse">
|
2777 |
+
<wsdl:part name="parameters" element="impl:getTransactionDetailsResponse">
|
2778 |
+
</wsdl:part>
|
2779 |
+
</wsdl:message>
|
2780 |
+
<wsdl:message name="getAlertDetailsResponse">
|
2781 |
+
<wsdl:part name="parameters" element="impl:getAlertDetailsResponse">
|
2782 |
+
</wsdl:part>
|
2783 |
+
</wsdl:message>
|
2784 |
+
<wsdl:message name="doCaptureRequest">
|
2785 |
+
<wsdl:part name="parameters" element="impl:doCaptureRequest">
|
2786 |
+
</wsdl:part>
|
2787 |
+
</wsdl:message>
|
2788 |
+
<wsdl:message name="getBillingRecordRequest">
|
2789 |
+
<wsdl:part name="parameters" element="impl:getBillingRecordRequest">
|
2790 |
+
</wsdl:part>
|
2791 |
+
</wsdl:message>
|
2792 |
+
<wsdl:message name="disablePaymentRecordRequest">
|
2793 |
+
<wsdl:part name="parameters" element="impl:disablePaymentRecordRequest">
|
2794 |
+
</wsdl:part>
|
2795 |
+
</wsdl:message>
|
2796 |
+
<wsdl:message name="updateWebWalletResponse">
|
2797 |
+
<wsdl:part name="parameters" element="impl:updateWebWalletResponse">
|
2798 |
+
</wsdl:part>
|
2799 |
+
</wsdl:message>
|
2800 |
+
<wsdl:message name="updatePaymentRecordResponse">
|
2801 |
+
<wsdl:part name="parameters" element="impl:updatePaymentRecordResponse">
|
2802 |
+
</wsdl:part>
|
2803 |
+
</wsdl:message>
|
2804 |
+
<wsdl:message name="doWebPaymentResponse">
|
2805 |
+
<wsdl:part name="parameters" element="impl:doWebPaymentResponse">
|
2806 |
+
</wsdl:part>
|
2807 |
+
</wsdl:message>
|
2808 |
+
<wsdl:message name="getWebPaymentDetailsRequest">
|
2809 |
+
<wsdl:part name="parameters" element="impl:getWebPaymentDetailsRequest">
|
2810 |
+
</wsdl:part>
|
2811 |
+
</wsdl:message>
|
2812 |
+
<wsdl:message name="doResetRequest">
|
2813 |
+
<wsdl:part name="parameters" element="impl:doResetRequest">
|
2814 |
+
</wsdl:part>
|
2815 |
+
</wsdl:message>
|
2816 |
+
<wsdl:message name="enableWalletResponse">
|
2817 |
+
<wsdl:part name="parameters" element="impl:enableWalletResponse">
|
2818 |
+
</wsdl:part>
|
2819 |
+
</wsdl:message>
|
2820 |
+
<wsdl:message name="getMerchantSettingsResponse">
|
2821 |
+
<wsdl:part name="parameters" element="impl:getMerchantSettingsResponse">
|
2822 |
+
</wsdl:part>
|
2823 |
+
</wsdl:message>
|
2824 |
+
<wsdl:message name="disablePaymentRecordResponse">
|
2825 |
+
<wsdl:part name="parameters" element="impl:disablePaymentRecordResponse">
|
2826 |
+
</wsdl:part>
|
2827 |
+
</wsdl:message>
|
2828 |
+
<wsdl:message name="transactionsSearchResponse">
|
2829 |
+
<wsdl:part name="parameters" element="impl:transactionsSearchResponse">
|
2830 |
+
</wsdl:part>
|
2831 |
+
</wsdl:message>
|
2832 |
+
<wsdl:message name="getCardsRequest">
|
2833 |
+
<wsdl:part name="parameters" element="impl:getCardsRequest">
|
2834 |
+
</wsdl:part>
|
2835 |
+
</wsdl:message>
|
2836 |
+
<wsdl:portType name="WebPaymentAPI">
|
2837 |
+
<wsdl:operation name="doWebPayment">
|
2838 |
+
<wsdl:input name="doWebPaymentRequest" message="impl:doWebPaymentRequest">
|
2839 |
+
</wsdl:input>
|
2840 |
+
<wsdl:output name="doWebPaymentResponse" message="impl:doWebPaymentResponse">
|
2841 |
+
</wsdl:output>
|
2842 |
+
</wsdl:operation>
|
2843 |
+
<wsdl:operation name="getWebPaymentDetails">
|
2844 |
+
<wsdl:input name="getWebPaymentDetailsRequest" message="impl:getWebPaymentDetailsRequest">
|
2845 |
+
</wsdl:input>
|
2846 |
+
<wsdl:output name="getWebPaymentDetailsResponse" message="impl:getWebPaymentDetailsResponse">
|
2847 |
+
</wsdl:output>
|
2848 |
+
</wsdl:operation>
|
2849 |
+
<wsdl:operation name="manageWebWallet">
|
2850 |
+
<wsdl:input name="manageWebWalletRequest" message="impl:manageWebWalletRequest">
|
2851 |
+
</wsdl:input>
|
2852 |
+
<wsdl:output name="manageWebWalletResponse" message="impl:manageWebWalletResponse">
|
2853 |
+
</wsdl:output>
|
2854 |
+
</wsdl:operation>
|
2855 |
+
<wsdl:operation name="createWebWallet">
|
2856 |
+
<wsdl:input name="createWebWalletRequest" message="impl:createWebWalletRequest">
|
2857 |
+
</wsdl:input>
|
2858 |
+
<wsdl:output name="createWebWalletResponse" message="impl:createWebWalletResponse">
|
2859 |
+
</wsdl:output>
|
2860 |
+
</wsdl:operation>
|
2861 |
+
<wsdl:operation name="updateWebWallet">
|
2862 |
+
<wsdl:input name="updateWebWalletRequest" message="impl:updateWebWalletRequest">
|
2863 |
+
</wsdl:input>
|
2864 |
+
<wsdl:output name="updateWebWalletResponse" message="impl:updateWebWalletResponse">
|
2865 |
+
</wsdl:output>
|
2866 |
+
</wsdl:operation>
|
2867 |
+
<wsdl:operation name="getWebWallet">
|
2868 |
+
<wsdl:input name="getWebWalletRequest" message="impl:getWebWalletRequest">
|
2869 |
+
</wsdl:input>
|
2870 |
+
<wsdl:output name="getWebWalletResponse" message="impl:getWebWalletResponse">
|
2871 |
+
</wsdl:output>
|
2872 |
+
</wsdl:operation>
|
2873 |
+
</wsdl:portType>
|
2874 |
+
<wsdl:portType name="DirectPaymentAPI">
|
2875 |
+
<wsdl:operation name="doAuthorization">
|
2876 |
+
<wsdl:input name="doAuthorizationRequest" message="impl:doAuthorizationRequest">
|
2877 |
+
</wsdl:input>
|
2878 |
+
<wsdl:output name="doAuthorizationResponse" message="impl:doAuthorizationResponse">
|
2879 |
+
</wsdl:output>
|
2880 |
+
</wsdl:operation>
|
2881 |
+
<wsdl:operation name="doCapture">
|
2882 |
+
<wsdl:input name="doCaptureRequest" message="impl:doCaptureRequest">
|
2883 |
+
</wsdl:input>
|
2884 |
+
<wsdl:output name="doCaptureResponse" message="impl:doCaptureResponse">
|
2885 |
+
</wsdl:output>
|
2886 |
+
</wsdl:operation>
|
2887 |
+
<wsdl:operation name="doReAuthorization">
|
2888 |
+
<wsdl:input name="doReAuthorizationRequest" message="impl:doReAuthorizationRequest">
|
2889 |
+
</wsdl:input>
|
2890 |
+
<wsdl:output name="doReAuthorizationResponse" message="impl:doReAuthorizationResponse">
|
2891 |
+
</wsdl:output>
|
2892 |
+
</wsdl:operation>
|
2893 |
+
<wsdl:operation name="doDebit">
|
2894 |
+
<wsdl:input name="doDebitRequest" message="impl:doDebitRequest">
|
2895 |
+
</wsdl:input>
|
2896 |
+
<wsdl:output name="doDebitResponse" message="impl:doDebitResponse">
|
2897 |
+
</wsdl:output>
|
2898 |
+
</wsdl:operation>
|
2899 |
+
<wsdl:operation name="doRefund">
|
2900 |
+
<wsdl:input name="doRefundRequest" message="impl:doRefundRequest">
|
2901 |
+
</wsdl:input>
|
2902 |
+
<wsdl:output name="doRefundResponse" message="impl:doRefundResponse">
|
2903 |
+
</wsdl:output>
|
2904 |
+
</wsdl:operation>
|
2905 |
+
<wsdl:operation name="doReset">
|
2906 |
+
<wsdl:input name="doResetRequest" message="impl:doResetRequest">
|
2907 |
+
</wsdl:input>
|
2908 |
+
<wsdl:output name="doResetResponse" message="impl:doResetResponse">
|
2909 |
+
</wsdl:output>
|
2910 |
+
</wsdl:operation>
|
2911 |
+
<wsdl:operation name="doCredit">
|
2912 |
+
<wsdl:input name="doCreditRequest" message="impl:doCreditRequest">
|
2913 |
+
</wsdl:input>
|
2914 |
+
<wsdl:output name="doCreditResponse" message="impl:doCreditResponse">
|
2915 |
+
</wsdl:output>
|
2916 |
+
</wsdl:operation>
|
2917 |
+
<wsdl:operation name="createWallet">
|
2918 |
+
<wsdl:input name="createWalletRequest" message="impl:createWalletRequest">
|
2919 |
+
</wsdl:input>
|
2920 |
+
<wsdl:output name="createWalletResponse" message="impl:createWalletResponse">
|
2921 |
+
</wsdl:output>
|
2922 |
+
</wsdl:operation>
|
2923 |
+
<wsdl:operation name="updateWallet">
|
2924 |
+
<wsdl:input name="updateWalletRequest" message="impl:updateWalletRequest">
|
2925 |
+
</wsdl:input>
|
2926 |
+
<wsdl:output name="updateWalletResponse" message="impl:updateWalletResponse">
|
2927 |
+
</wsdl:output>
|
2928 |
+
</wsdl:operation>
|
2929 |
+
<wsdl:operation name="getWallet">
|
2930 |
+
<wsdl:input name="getWalletRequest" message="impl:getWalletRequest">
|
2931 |
+
</wsdl:input>
|
2932 |
+
<wsdl:output name="getWalletResponse" message="impl:getWalletResponse">
|
2933 |
+
</wsdl:output>
|
2934 |
+
</wsdl:operation>
|
2935 |
+
<wsdl:operation name="getCards">
|
2936 |
+
<wsdl:input name="getCardsRequest" message="impl:getCardsRequest">
|
2937 |
+
</wsdl:input>
|
2938 |
+
<wsdl:output name="getCardsResponse" message="impl:getCardsResponse">
|
2939 |
+
</wsdl:output>
|
2940 |
+
</wsdl:operation>
|
2941 |
+
<wsdl:operation name="disableWallet">
|
2942 |
+
<wsdl:input name="disableWalletRequest" message="impl:disableWalletRequest">
|
2943 |
+
</wsdl:input>
|
2944 |
+
<wsdl:output name="disableWalletResponse" message="impl:disableWalletResponse">
|
2945 |
+
</wsdl:output>
|
2946 |
+
</wsdl:operation>
|
2947 |
+
<wsdl:operation name="enableWallet">
|
2948 |
+
<wsdl:input name="enableWalletRequest" message="impl:enableWalletRequest">
|
2949 |
+
</wsdl:input>
|
2950 |
+
<wsdl:output name="enableWalletResponse" message="impl:enableWalletResponse">
|
2951 |
+
</wsdl:output>
|
2952 |
+
</wsdl:operation>
|
2953 |
+
<wsdl:operation name="doImmediateWalletPayment">
|
2954 |
+
<wsdl:input name="doImmediateWalletPaymentRequest" message="impl:doImmediateWalletPaymentRequest">
|
2955 |
+
</wsdl:input>
|
2956 |
+
<wsdl:output name="doImmediateWalletPaymentResponse" message="impl:doImmediateWalletPaymentResponse">
|
2957 |
+
</wsdl:output>
|
2958 |
+
</wsdl:operation>
|
2959 |
+
<wsdl:operation name="doScheduledWalletPayment">
|
2960 |
+
<wsdl:input name="doScheduledWalletPaymentRequest" message="impl:doScheduledWalletPaymentRequest">
|
2961 |
+
</wsdl:input>
|
2962 |
+
<wsdl:output name="doScheduledWalletPaymentResponse" message="impl:doScheduledWalletPaymentResponse">
|
2963 |
+
</wsdl:output>
|
2964 |
+
</wsdl:operation>
|
2965 |
+
<wsdl:operation name="doRecurrentWalletPayment">
|
2966 |
+
<wsdl:input name="doRecurrentWalletPaymentRequest" message="impl:doRecurrentWalletPaymentRequest">
|
2967 |
+
</wsdl:input>
|
2968 |
+
<wsdl:output name="doRecurrentWalletPaymentResponse" message="impl:doRecurrentWalletPaymentResponse">
|
2969 |
+
</wsdl:output>
|
2970 |
+
</wsdl:operation>
|
2971 |
+
<wsdl:operation name="getPaymentRecord">
|
2972 |
+
<wsdl:input name="getPaymentRecordRequest" message="impl:getPaymentRecordRequest">
|
2973 |
+
</wsdl:input>
|
2974 |
+
<wsdl:output name="getPaymentRecordResponse" message="impl:getPaymentRecordResponse">
|
2975 |
+
</wsdl:output>
|
2976 |
+
</wsdl:operation>
|
2977 |
+
<wsdl:operation name="disablePaymentRecord">
|
2978 |
+
<wsdl:input name="disablePaymentRecordRequest" message="impl:disablePaymentRecordRequest">
|
2979 |
+
</wsdl:input>
|
2980 |
+
<wsdl:output name="disablePaymentRecordResponse" message="impl:disablePaymentRecordResponse">
|
2981 |
+
</wsdl:output>
|
2982 |
+
</wsdl:operation>
|
2983 |
+
<wsdl:operation name="verifyEnrollment">
|
2984 |
+
<wsdl:input name="verifyEnrollmentRequest" message="impl:verifyEnrollmentRequest">
|
2985 |
+
</wsdl:input>
|
2986 |
+
<wsdl:output name="verifyEnrollmentResponse" message="impl:verifyEnrollmentResponse">
|
2987 |
+
</wsdl:output>
|
2988 |
+
</wsdl:operation>
|
2989 |
+
<wsdl:operation name="verifyAuthentication">
|
2990 |
+
<wsdl:input name="verifyAuthenticationRequest" message="impl:verifyAuthenticationRequest">
|
2991 |
+
</wsdl:input>
|
2992 |
+
<wsdl:output name="verifyAuthenticationResponse" message="impl:verifyAuthenticationResponse">
|
2993 |
+
</wsdl:output>
|
2994 |
+
</wsdl:operation>
|
2995 |
+
<wsdl:operation name="createMerchant">
|
2996 |
+
<wsdl:input name="createMerchantRequest" message="impl:createMerchantRequest">
|
2997 |
+
</wsdl:input>
|
2998 |
+
<wsdl:output name="createMerchantResponse" message="impl:createMerchantResponse">
|
2999 |
+
</wsdl:output>
|
3000 |
+
</wsdl:operation>
|
3001 |
+
<wsdl:operation name="doScoringCheque">
|
3002 |
+
<wsdl:input name="doScoringChequeRequest" message="impl:doScoringChequeRequest">
|
3003 |
+
</wsdl:input>
|
3004 |
+
<wsdl:output name="doScoringChequeResponse" message="impl:doScoringChequeResponse">
|
3005 |
+
</wsdl:output>
|
3006 |
+
</wsdl:operation>
|
3007 |
+
<wsdl:operation name="getEncryptionKey">
|
3008 |
+
<wsdl:input name="getEncryptionKeyRequest" message="impl:getEncryptionKeyRequest">
|
3009 |
+
</wsdl:input>
|
3010 |
+
<wsdl:output name="getEncryptionKeyResponse" message="impl:getEncryptionKeyResponse">
|
3011 |
+
</wsdl:output>
|
3012 |
+
</wsdl:operation>
|
3013 |
+
<wsdl:operation name="getMerchantSettings">
|
3014 |
+
<wsdl:input name="getMerchantSettingsRequest" message="impl:getMerchantSettingsRequest">
|
3015 |
+
</wsdl:input>
|
3016 |
+
<wsdl:output name="getMerchantSettingsResponse" message="impl:getMerchantSettingsResponse">
|
3017 |
+
</wsdl:output>
|
3018 |
+
</wsdl:operation>
|
3019 |
+
<wsdl:operation name="getBalance">
|
3020 |
+
<wsdl:input name="getBalanceRequest" message="impl:getBalanceRequest">
|
3021 |
+
</wsdl:input>
|
3022 |
+
<wsdl:output name="getBalanceResponse" message="impl:getBalanceResponse">
|
3023 |
+
</wsdl:output>
|
3024 |
+
</wsdl:operation>
|
3025 |
+
<wsdl:operation name="getToken">
|
3026 |
+
<wsdl:input message="impl:getTokenRequest">
|
3027 |
+
</wsdl:input>
|
3028 |
+
<wsdl:output message="impl:getTokenResponse">
|
3029 |
+
</wsdl:output>
|
3030 |
+
</wsdl:operation>
|
3031 |
+
<wsdl:operation name="unBlock">
|
3032 |
+
<wsdl:input name="unBlockRequest" message="impl:unBlockRequest">
|
3033 |
+
</wsdl:input>
|
3034 |
+
<wsdl:output name="unBlockResponse" message="impl:unBlockResponse">
|
3035 |
+
</wsdl:output>
|
3036 |
+
</wsdl:operation>
|
3037 |
+
<wsdl:operation name="updatePaymentRecord">
|
3038 |
+
<wsdl:input name="updatePaymentRecordRequest" message="impl:updatePaymentRecordRequest">
|
3039 |
+
</wsdl:input>
|
3040 |
+
<wsdl:output name="updatePaymentRecordResponse" message="impl:updatePaymentRecordResponse">
|
3041 |
+
</wsdl:output>
|
3042 |
+
</wsdl:operation>
|
3043 |
+
<wsdl:operation name="getBillingRecord">
|
3044 |
+
<wsdl:input name="getBillingRecordRequest" message="impl:getBillingRecordRequest">
|
3045 |
+
</wsdl:input>
|
3046 |
+
<wsdl:output name="getBillingRecordResponse" message="impl:getBillingRecordResponse">
|
3047 |
+
</wsdl:output>
|
3048 |
+
</wsdl:operation>
|
3049 |
+
<wsdl:operation name="updateBillingRecord">
|
3050 |
+
<wsdl:input name="updateBillingRecordRequest" message="impl:updateBillingRecordRequest">
|
3051 |
+
</wsdl:input>
|
3052 |
+
<wsdl:output name="updateBillingRecordResponse" message="impl:updateBillingRecordResponse">
|
3053 |
+
</wsdl:output>
|
3054 |
+
</wsdl:operation>
|
3055 |
+
</wsdl:portType>
|
3056 |
+
<wsdl:portType name="ExtendedAPI">
|
3057 |
+
<wsdl:operation name="getTransactionDetails">
|
3058 |
+
<wsdl:input name="getTransactionDetailsRequest" message="impl:getTransactionDetailsRequest">
|
3059 |
+
</wsdl:input>
|
3060 |
+
<wsdl:output name="getTransactionDetailsResponse" message="impl:getTransactionDetailsResponse">
|
3061 |
+
</wsdl:output>
|
3062 |
+
</wsdl:operation>
|
3063 |
+
<wsdl:operation name="transactionsSearch">
|
3064 |
+
<wsdl:input name="transactionsSearchRequest" message="impl:transactionsSearchRequest">
|
3065 |
+
</wsdl:input>
|
3066 |
+
<wsdl:output name="transactionsSearchResponse" message="impl:transactionsSearchResponse">
|
3067 |
+
</wsdl:output>
|
3068 |
+
</wsdl:operation>
|
3069 |
+
<wsdl:operation name="getAlertDetails">
|
3070 |
+
<wsdl:input message="impl:getAlertDetailsRequest">
|
3071 |
+
</wsdl:input>
|
3072 |
+
<wsdl:output message="impl:getAlertDetailsResponse">
|
3073 |
+
</wsdl:output>
|
3074 |
+
</wsdl:operation>
|
3075 |
+
</wsdl:portType>
|
3076 |
+
<wsdl:binding name="DirectPaymentAPISoapBinding" type="impl:DirectPaymentAPI">
|
3077 |
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3078 |
+
<wsdl:operation name="doAuthorization">
|
3079 |
+
<wsdlsoap:operation soapAction="doAuthorization"/>
|
3080 |
+
<wsdl:input>
|
3081 |
+
<wsdlsoap:body use="literal"/>
|
3082 |
+
</wsdl:input>
|
3083 |
+
<wsdl:output>
|
3084 |
+
<wsdlsoap:body use="literal"/>
|
3085 |
+
</wsdl:output>
|
3086 |
+
</wsdl:operation>
|
3087 |
+
<wsdl:operation name="doCapture">
|
3088 |
+
<wsdlsoap:operation soapAction="doCapture"/>
|
3089 |
+
<wsdl:input>
|
3090 |
+
<wsdlsoap:body use="literal"/>
|
3091 |
+
</wsdl:input>
|
3092 |
+
<wsdl:output>
|
3093 |
+
<wsdlsoap:body use="literal"/>
|
3094 |
+
</wsdl:output>
|
3095 |
+
</wsdl:operation>
|
3096 |
+
<wsdl:operation name="doReAuthorization">
|
3097 |
+
<wsdlsoap:operation soapAction="doReAuthorization"/>
|
3098 |
+
<wsdl:input>
|
3099 |
+
<wsdlsoap:body use="literal"/>
|
3100 |
+
</wsdl:input>
|
3101 |
+
<wsdl:output>
|
3102 |
+
<wsdlsoap:body use="literal"/>
|
3103 |
+
</wsdl:output>
|
3104 |
+
</wsdl:operation>
|
3105 |
+
<wsdl:operation name="doDebit">
|
3106 |
+
<wsdlsoap:operation soapAction="doDebit"/>
|
3107 |
+
<wsdl:input>
|
3108 |
+
<wsdlsoap:body use="literal"/>
|
3109 |
+
</wsdl:input>
|
3110 |
+
<wsdl:output>
|
3111 |
+
<wsdlsoap:body use="literal"/>
|
3112 |
+
</wsdl:output>
|
3113 |
+
</wsdl:operation>
|
3114 |
+
<wsdl:operation name="doRefund">
|
3115 |
+
<wsdlsoap:operation soapAction="doRefund"/>
|
3116 |
+
<wsdl:input>
|
3117 |
+
<wsdlsoap:body use="literal"/>
|
3118 |
+
</wsdl:input>
|
3119 |
+
<wsdl:output>
|
3120 |
+
<wsdlsoap:body use="literal"/>
|
3121 |
+
</wsdl:output>
|
3122 |
+
</wsdl:operation>
|
3123 |
+
<wsdl:operation name="doReset">
|
3124 |
+
<wsdlsoap:operation soapAction="doReset"/>
|
3125 |
+
<wsdl:input>
|
3126 |
+
<wsdlsoap:body use="literal"/>
|
3127 |
+
</wsdl:input>
|
3128 |
+
<wsdl:output>
|
3129 |
+
<wsdlsoap:body use="literal"/>
|
3130 |
+
</wsdl:output>
|
3131 |
+
</wsdl:operation>
|
3132 |
+
<wsdl:operation name="doCredit">
|
3133 |
+
<wsdlsoap:operation soapAction="doCredit"/>
|
3134 |
+
<wsdl:input>
|
3135 |
+
<wsdlsoap:body use="literal"/>
|
3136 |
+
</wsdl:input>
|
3137 |
+
<wsdl:output>
|
3138 |
+
<wsdlsoap:body use="literal"/>
|
3139 |
+
</wsdl:output>
|
3140 |
+
</wsdl:operation>
|
3141 |
+
<wsdl:operation name="createWallet">
|
3142 |
+
<wsdlsoap:operation soapAction="createWallet"/>
|
3143 |
+
<wsdl:input>
|
3144 |
+
<wsdlsoap:body use="literal"/>
|
3145 |
+
</wsdl:input>
|
3146 |
+
<wsdl:output>
|
3147 |
+
<wsdlsoap:body use="literal"/>
|
3148 |
+
</wsdl:output>
|
3149 |
+
</wsdl:operation>
|
3150 |
+
<wsdl:operation name="updateWallet">
|
3151 |
+
<wsdlsoap:operation soapAction="updateWallet"/>
|
3152 |
+
<wsdl:input>
|
3153 |
+
<wsdlsoap:body use="literal"/>
|
3154 |
+
</wsdl:input>
|
3155 |
+
<wsdl:output>
|
3156 |
+
<wsdlsoap:body use="literal"/>
|
3157 |
+
</wsdl:output>
|
3158 |
+
</wsdl:operation>
|
3159 |
+
<wsdl:operation name="getWallet">
|
3160 |
+
<wsdlsoap:operation soapAction="getWallet"/>
|
3161 |
+
<wsdl:input>
|
3162 |
+
<wsdlsoap:body use="literal"/>
|
3163 |
+
</wsdl:input>
|
3164 |
+
<wsdl:output>
|
3165 |
+
<wsdlsoap:body use="literal"/>
|
3166 |
+
</wsdl:output>
|
3167 |
+
</wsdl:operation>
|
3168 |
+
<wsdl:operation name="getCards">
|
3169 |
+
<wsdlsoap:operation soapAction="getCards"/>
|
3170 |
+
<wsdl:input>
|
3171 |
+
<wsdlsoap:body use="literal"/>
|
3172 |
+
</wsdl:input>
|
3173 |
+
<wsdl:output>
|
3174 |
+
<wsdlsoap:body use="literal"/>
|
3175 |
+
</wsdl:output>
|
3176 |
+
</wsdl:operation>
|
3177 |
+
<wsdl:operation name="disableWallet">
|
3178 |
+
<wsdlsoap:operation soapAction="disableWallet"/>
|
3179 |
+
<wsdl:input>
|
3180 |
+
<wsdlsoap:body use="literal"/>
|
3181 |
+
</wsdl:input>
|
3182 |
+
<wsdl:output>
|
3183 |
+
<wsdlsoap:body use="literal"/>
|
3184 |
+
</wsdl:output>
|
3185 |
+
</wsdl:operation>
|
3186 |
+
<wsdl:operation name="enableWallet">
|
3187 |
+
<wsdlsoap:operation soapAction="enableWallet"/>
|
3188 |
+
<wsdl:input>
|
3189 |
+
<wsdlsoap:body use="literal"/>
|
3190 |
+
</wsdl:input>
|
3191 |
+
<wsdl:output>
|
3192 |
+
<wsdlsoap:body use="literal"/>
|
3193 |
+
</wsdl:output>
|
3194 |
+
</wsdl:operation>
|
3195 |
+
<wsdl:operation name="doImmediateWalletPayment">
|
3196 |
+
<wsdlsoap:operation soapAction="doImmediateWalletPayment"/>
|
3197 |
+
<wsdl:input>
|
3198 |
+
<wsdlsoap:body use="literal"/>
|
3199 |
+
</wsdl:input>
|
3200 |
+
<wsdl:output>
|
3201 |
+
<wsdlsoap:body use="literal"/>
|
3202 |
+
</wsdl:output>
|
3203 |
+
</wsdl:operation>
|
3204 |
+
<wsdl:operation name="doScheduledWalletPayment">
|
3205 |
+
<wsdlsoap:operation soapAction="doScheduledWalletPayment"/>
|
3206 |
+
<wsdl:input>
|
3207 |
+
<wsdlsoap:body use="literal"/>
|
3208 |
+
</wsdl:input>
|
3209 |
+
<wsdl:output>
|
3210 |
+
<wsdlsoap:body use="literal"/>
|
3211 |
+
</wsdl:output>
|
3212 |
+
</wsdl:operation>
|
3213 |
+
<wsdl:operation name="doRecurrentWalletPayment">
|
3214 |
+
<wsdlsoap:operation soapAction="doRecurrentWalletPayment"/>
|
3215 |
+
<wsdl:input>
|
3216 |
+
<wsdlsoap:body use="literal"/>
|
3217 |
+
</wsdl:input>
|
3218 |
+
<wsdl:output>
|
3219 |
+
<wsdlsoap:body use="literal"/>
|
3220 |
+
</wsdl:output>
|
3221 |
+
</wsdl:operation>
|
3222 |
+
<wsdl:operation name="getPaymentRecord">
|
3223 |
+
<wsdlsoap:operation soapAction="getPaymentRecord"/>
|
3224 |
+
<wsdl:input>
|
3225 |
+
<wsdlsoap:body use="literal"/>
|
3226 |
+
</wsdl:input>
|
3227 |
+
<wsdl:output>
|
3228 |
+
<wsdlsoap:body use="literal"/>
|
3229 |
+
</wsdl:output>
|
3230 |
+
</wsdl:operation>
|
3231 |
+
<wsdl:operation name="disablePaymentRecord">
|
3232 |
+
<wsdlsoap:operation soapAction="disablePaymentRecord"/>
|
3233 |
+
<wsdl:input>
|
3234 |
+
<wsdlsoap:body use="literal"/>
|
3235 |
+
</wsdl:input>
|
3236 |
+
<wsdl:output>
|
3237 |
+
<wsdlsoap:body use="literal"/>
|
3238 |
+
</wsdl:output>
|
3239 |
+
</wsdl:operation>
|
3240 |
+
<wsdl:operation name="verifyEnrollment">
|
3241 |
+
<wsdlsoap:operation soapAction="verifyEnrollment"/>
|
3242 |
+
<wsdl:input>
|
3243 |
+
<wsdlsoap:body use="literal"/>
|
3244 |
+
</wsdl:input>
|
3245 |
+
<wsdl:output>
|
3246 |
+
<wsdlsoap:body use="literal"/>
|
3247 |
+
</wsdl:output>
|
3248 |
+
</wsdl:operation>
|
3249 |
+
<wsdl:operation name="verifyAuthentication">
|
3250 |
+
<wsdlsoap:operation soapAction="verifyAuthentication"/>
|
3251 |
+
<wsdl:input>
|
3252 |
+
<wsdlsoap:body use="literal"/>
|
3253 |
+
</wsdl:input>
|
3254 |
+
<wsdl:output>
|
3255 |
+
<wsdlsoap:body use="literal"/>
|
3256 |
+
</wsdl:output>
|
3257 |
+
</wsdl:operation>
|
3258 |
+
<wsdl:operation name="createMerchant">
|
3259 |
+
<wsdlsoap:operation soapAction="createMerchant"/>
|
3260 |
+
<wsdl:input>
|
3261 |
+
<wsdlsoap:body use="literal"/>
|
3262 |
+
</wsdl:input>
|
3263 |
+
<wsdl:output>
|
3264 |
+
<wsdlsoap:body use="literal"/>
|
3265 |
+
</wsdl:output>
|
3266 |
+
</wsdl:operation>
|
3267 |
+
<wsdl:operation name="doScoringCheque">
|
3268 |
+
<wsdlsoap:operation soapAction="doScoringCheque"/>
|
3269 |
+
<wsdl:input>
|
3270 |
+
<wsdlsoap:body use="literal"/>
|
3271 |
+
</wsdl:input>
|
3272 |
+
<wsdl:output>
|
3273 |
+
<wsdlsoap:body use="literal"/>
|
3274 |
+
</wsdl:output>
|
3275 |
+
</wsdl:operation>
|
3276 |
+
<wsdl:operation name="getEncryptionKey">
|
3277 |
+
<wsdlsoap:operation soapAction="getEncryptionKey"/>
|
3278 |
+
<wsdl:input>
|
3279 |
+
<wsdlsoap:body use="literal"/>
|
3280 |
+
</wsdl:input>
|
3281 |
+
<wsdl:output>
|
3282 |
+
<wsdlsoap:body use="literal"/>
|
3283 |
+
</wsdl:output>
|
3284 |
+
</wsdl:operation>
|
3285 |
+
<wsdl:operation name="getMerchantSettings">
|
3286 |
+
<wsdlsoap:operation soapAction="getMerchantSettings"/>
|
3287 |
+
<wsdl:input name="getMerchantSettingsRequest">
|
3288 |
+
<wsdlsoap:body use="literal"/>
|
3289 |
+
</wsdl:input>
|
3290 |
+
<wsdl:output name="getMerchantSettingsResponse">
|
3291 |
+
<wsdlsoap:body use="literal"/>
|
3292 |
+
</wsdl:output>
|
3293 |
+
</wsdl:operation>
|
3294 |
+
<wsdl:operation name="getBalance">
|
3295 |
+
<wsdlsoap:operation soapAction="getBalance"/>
|
3296 |
+
<wsdl:input>
|
3297 |
+
<wsdlsoap:body use="literal"/>
|
3298 |
+
</wsdl:input>
|
3299 |
+
<wsdl:output>
|
3300 |
+
<wsdlsoap:body use="literal"/>
|
3301 |
+
</wsdl:output>
|
3302 |
+
</wsdl:operation>
|
3303 |
+
<wsdl:operation name="getToken">
|
3304 |
+
<wsdlsoap:operation soapAction="getToken"/>
|
3305 |
+
<wsdl:input>
|
3306 |
+
<wsdlsoap:body use="literal"/>
|
3307 |
+
</wsdl:input>
|
3308 |
+
<wsdl:output>
|
3309 |
+
<wsdlsoap:body use="literal"/>
|
3310 |
+
</wsdl:output>
|
3311 |
+
</wsdl:operation>
|
3312 |
+
<wsdl:operation name="unBlock">
|
3313 |
+
<wsdlsoap:operation soapAction="unBlock"/>
|
3314 |
+
<wsdl:input>
|
3315 |
+
<wsdlsoap:body use="literal"/>
|
3316 |
+
</wsdl:input>
|
3317 |
+
<wsdl:output>
|
3318 |
+
<wsdlsoap:body use="literal"/>
|
3319 |
+
</wsdl:output>
|
3320 |
+
</wsdl:operation>
|
3321 |
+
<wsdl:operation name="updatePaymentRecord">
|
3322 |
+
<wsdlsoap:operation soapAction="updatePaymentRecord"/>
|
3323 |
+
<wsdl:input>
|
3324 |
+
<wsdlsoap:body use="literal"/>
|
3325 |
+
</wsdl:input>
|
3326 |
+
<wsdl:output>
|
3327 |
+
<wsdlsoap:body use="literal"/>
|
3328 |
+
</wsdl:output>
|
3329 |
+
</wsdl:operation>
|
3330 |
+
<wsdl:operation name="getBillingRecord">
|
3331 |
+
<wsdlsoap:operation soapAction="getBillingRecord"/>
|
3332 |
+
<wsdl:input>
|
3333 |
+
<wsdlsoap:body use="literal"/>
|
3334 |
+
</wsdl:input>
|
3335 |
+
<wsdl:output>
|
3336 |
+
<wsdlsoap:body use="literal"/>
|
3337 |
+
</wsdl:output>
|
3338 |
+
</wsdl:operation>
|
3339 |
+
<wsdl:operation name="updateBillingRecord">
|
3340 |
+
<wsdlsoap:operation soapAction="updateBillingRecord"/>
|
3341 |
+
<wsdl:input>
|
3342 |
+
<wsdlsoap:body use="literal"/>
|
3343 |
+
</wsdl:input>
|
3344 |
+
<wsdl:output>
|
3345 |
+
<wsdlsoap:body use="literal"/>
|
3346 |
+
</wsdl:output>
|
3347 |
+
</wsdl:operation>
|
3348 |
+
</wsdl:binding>
|
3349 |
+
<wsdl:binding name="WebPaymentAPISoapBinding" type="impl:WebPaymentAPI">
|
3350 |
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3351 |
+
<wsdl:operation name="getWebPaymentDetails">
|
3352 |
+
<wsdlsoap:operation soapAction="getWebPaymentDetails"/>
|
3353 |
+
<wsdl:input>
|
3354 |
+
<wsdlsoap:body use="literal"/>
|
3355 |
+
</wsdl:input>
|
3356 |
+
<wsdl:output>
|
3357 |
+
<wsdlsoap:body use="literal"/>
|
3358 |
+
</wsdl:output>
|
3359 |
+
</wsdl:operation>
|
3360 |
+
<wsdl:operation name="doWebPayment">
|
3361 |
+
<wsdlsoap:operation soapAction="doWebPayment"/>
|
3362 |
+
<wsdl:input>
|
3363 |
+
<wsdlsoap:body use="literal"/>
|
3364 |
+
</wsdl:input>
|
3365 |
+
<wsdl:output>
|
3366 |
+
<wsdlsoap:body use="literal"/>
|
3367 |
+
</wsdl:output>
|
3368 |
+
</wsdl:operation>
|
3369 |
+
<wsdl:operation name="manageWebWallet">
|
3370 |
+
<wsdlsoap:operation soapAction="manageWebWallet"/>
|
3371 |
+
<wsdl:input>
|
3372 |
+
<wsdlsoap:body use="literal"/>
|
3373 |
+
</wsdl:input>
|
3374 |
+
<wsdl:output>
|
3375 |
+
<wsdlsoap:body use="literal"/>
|
3376 |
+
</wsdl:output>
|
3377 |
+
</wsdl:operation>
|
3378 |
+
<wsdl:operation name="createWebWallet">
|
3379 |
+
<wsdlsoap:operation soapAction="createWebWallet"/>
|
3380 |
+
<wsdl:input>
|
3381 |
+
<wsdlsoap:body use="literal"/>
|
3382 |
+
</wsdl:input>
|
3383 |
+
<wsdl:output>
|
3384 |
+
<wsdlsoap:body use="literal"/>
|
3385 |
+
</wsdl:output>
|
3386 |
+
</wsdl:operation>
|
3387 |
+
<wsdl:operation name="updateWebWallet">
|
3388 |
+
<wsdlsoap:operation soapAction="updateWebWallet"/>
|
3389 |
+
<wsdl:input>
|
3390 |
+
<wsdlsoap:body use="literal"/>
|
3391 |
+
</wsdl:input>
|
3392 |
+
<wsdl:output>
|
3393 |
+
<wsdlsoap:body use="literal"/>
|
3394 |
+
</wsdl:output>
|
3395 |
+
</wsdl:operation>
|
3396 |
+
<wsdl:operation name="getWebWallet">
|
3397 |
+
<wsdlsoap:operation soapAction="getWebWallet"/>
|
3398 |
+
<wsdl:input>
|
3399 |
+
<wsdlsoap:body use="literal"/>
|
3400 |
+
</wsdl:input>
|
3401 |
+
<wsdl:output>
|
3402 |
+
<wsdlsoap:body use="literal"/>
|
3403 |
+
</wsdl:output>
|
3404 |
+
</wsdl:operation>
|
3405 |
+
</wsdl:binding>
|
3406 |
+
<wsdl:binding name="ExtendedAPISoapBinding" type="impl:ExtendedAPI">
|
3407 |
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3408 |
+
<wsdl:operation name="getTransactionDetails">
|
3409 |
+
<wsdlsoap:operation soapAction="getTransactionDetails"/>
|
3410 |
+
<wsdl:input>
|
3411 |
+
<wsdlsoap:body use="literal"/>
|
3412 |
+
</wsdl:input>
|
3413 |
+
<wsdl:output>
|
3414 |
+
<wsdlsoap:body use="literal"/>
|
3415 |
+
</wsdl:output>
|
3416 |
+
</wsdl:operation>
|
3417 |
+
<wsdl:operation name="transactionsSearch">
|
3418 |
+
<wsdlsoap:operation soapAction="transactionsSearch"/>
|
3419 |
+
<wsdl:input>
|
3420 |
+
<wsdlsoap:body use="literal"/>
|
3421 |
+
</wsdl:input>
|
3422 |
+
<wsdl:output>
|
3423 |
+
<wsdlsoap:body use="literal"/>
|
3424 |
+
</wsdl:output>
|
3425 |
+
</wsdl:operation>
|
3426 |
+
<wsdl:operation name="getAlertDetails">
|
3427 |
+
<wsdlsoap:operation soapAction="getAlertDetails"/>
|
3428 |
+
<wsdl:input>
|
3429 |
+
<wsdlsoap:body use="literal"/>
|
3430 |
+
</wsdl:input>
|
3431 |
+
<wsdl:output>
|
3432 |
+
<wsdlsoap:body use="literal"/>
|
3433 |
+
</wsdl:output>
|
3434 |
+
</wsdl:operation>
|
3435 |
+
</wsdl:binding>
|
3436 |
+
<wsdl:service name="WebPaymentAPI">
|
3437 |
+
<wsdl:port name="WebPaymentAPI" binding="impl:WebPaymentAPISoapBinding">
|
3438 |
+
<wsdlsoap:address location="https://homologation.payline.com/V4/services/WebPaymentAPI"/>
|
3439 |
+
</wsdl:port>
|
3440 |
+
</wsdl:service>
|
3441 |
+
<wsdl:service name="ExtendedAPI">
|
3442 |
+
<wsdl:port name="ExtendedAPI" binding="impl:ExtendedAPISoapBinding">
|
3443 |
+
<wsdlsoap:address location="https://homologation.payline.com/V4/services/ExtendedAPI"/>
|
3444 |
+
</wsdl:port>
|
3445 |
+
</wsdl:service>
|
3446 |
+
<wsdl:service name="DirectPaymentAPI">
|
3447 |
+
<wsdl:port name="DirectPaymentAPI" binding="impl:DirectPaymentAPISoapBinding">
|
3448 |
+
<wsdlsoap:address location="https://homologation.payline.com/V4/services/DirectPaymentAPI"/>
|
3449 |
+
</wsdl:port>
|
3450 |
+
</wsdl:service>
|
3451 |
+
</wsdl:definitions>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payline</name>
|
4 |
-
<version>1.8.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -10,16 +10,12 @@
|
|
10 |
<description>Profitez dès à présent de l'essor du marché de la vente à distance en proposant à vos clients une solution de paiement totalement sécurisée. Grâce à Payline vous permettez à vos clients de régler avec leur moyen de paiement habituel, quel que soit votre canal de vente. Vous leur proposez une interface de paiement facile à utiliser, en mesure de vous accompagner dans votre développement à l'international, en toute simplicité.
|
11 |

|
12 |
Fonctionnalités : autorisation, autorisation + validation, paiement en n fois, paiement par portefeuille et en 1 clic, validation et remboursement partiels, multi-boutique...</description>
|
13 |
-
<notes>Montée de version librairie PHP Payline v4.
|
14 |
-
|
15 |
-
Cinématique 3DS Secure applicable au paiement par portefeuille
|
16 |
-
Mapping des catégories de produits Payline
|
17 |
-
Correctif pour le bon enregistrement du portefeuille client
|
18 |
-
Envoi d'informations détaillées sur l'historique client</notes>
|
19 |
<authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
|
20 |
-
<date>2015-
|
21 |
-
<time>
|
22 |
-
<contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="741aacf6f352c77df02bb84778ca9ac2"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="e3e28988b58f0fd7d5a168837d0b02fa"/></dir><file name="Edit.php" hash="6c81a9ee135b1ea498186806058c572a"/><file name="Grid.php" hash="654921d0b1eac96b999f506d23fff679"/></dir><file name="Managecontracts.php" hash="a1801e32c21edcf6128cc548e7e6ebf8"/><dir name="Manageproductcategories"><dir name="Assign"><file name="Form.php" hash="e0e36ee0bdbce77381b06b98693717c4"/></dir><file name="Grid.php" hash="1f141e7799b19ecf69cc2a7b0d69d242"/></dir><file name="Manageproductcategories.php" hash="2a2d7a6d4f7448ccd7ebbb66b39939d7"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="7e747fac06ac058e6a29964d3eb6ef02"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="6431aa97d9df61a8be8878e576e95881"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="944e24a7636721d076640da71a6e1ea8"/></dir><file name="Cpt.php" hash="63762d671a0b42929e534e4be9b5f215"/><file name="Direct.php" hash="6c44e7166859eccc2fda5ff8dae0ecee"/><dir name="Info"><file name="Default.php" hash="24bd924b550d96c9f57391580d653026"/><file name="Direct.php" hash="a955df25c9f7a212662d48afb597d8c5"/></dir><file name="Logo.php" hash="0561df2d88859cd3c9acc838fc18fcef"/><file name="Nx.php" hash="f6f1708088238e3d8ee3fe7489ca32c8"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="17687bb5f7d5916d32b015ac269ae785"/><file name="Details.php" hash="79c295fd3043de9d09665a58bf40d473"/><file name="Infos.php" hash="99b00b70d20737dc46f49dd093244c7f"/><file name="Sidebar.php" hash="49a4e2b261c4fc49f6f609894ef49fae"/></dir><file name="Wallet.php" hash="3dc6cbe7c74963369f0e48ddff497917"/></dir><dir name="Helper"><file name="Data.php" hash="81a89d9a7e6e0d4cb8746d8213b0f347"/><file name="Logger.php" hash="ef4de0a1d4176b2e60b8464509533166"/><file name="Payment.php" hash="85b847a728882305fdc38ce331ed2488"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="889b06eebdf62b468a23d4984de3d01f"/></dir><file name="Contract.php" hash="4dcb797849208e4d07c57858306aadad"/><file name="Cpt.php" hash="c6bec62fe0a7756cd586b7734905ed50"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><file name="Capturepaymentoptions.php" hash="834007008a2870d2ebe7d9d54d43a2fb"/><dir name="Cms"><file name="Block.php" hash="1e50e8803b8e502080136aeb788ab37a"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Environment.php" hash="3b169f26fca85103414e64a8be23457e"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paylineproductcategories.php" hash="1e9d90132db29fee0c52dbfe89c70e81"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Paymentactionsreauth.php" hash="1673fcc9e3af9a7d6c4be814a160d10a"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="46211a029a43267a573f8957390f2940"/><dir name="Status"><file name="Canceled.php" hash="fd82912fb6cd9c57aab8dc0f07625051"/><file name="Invoice.php" hash="5f3cb99c6fb312bb3a59043e5602d7e0"/></dir><file name="Status.php" hash="813bb32c0bff85fd19bd3069c9ee074b"/><file name="Statusrowempty.php" hash="bebeabdc170457f1daff593079b85638"/><file name="Walletsecurity.php" hash="46b6d66b856ea9124a38abde0b0990b1"/></dir><file name="Direct.php" hash="b04e9549ac548667437b1e413e8059fc"/><file name="Fees.php" hash="32931106e566c790b29c4ffd1db9ca2a"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="e03a7d1a7f0eee95d154d8063f9de64a"/><dir name="Status"><file name="Collection.php" hash="357db788db91fa0b53b28c8fb740f2fd"/></dir><file name="Status.php" hash="5bb4a3be48bfdf6d27761ed4de9cb5f1"/></dir><file name="Contract.php" hash="2942a0df031b70f712719b5e1b727564"/><dir name="Fees"><file name="Collection.php" hash="3e685f250c293702d9112fb8f49c9696"/></dir><file name="Fees.php" hash="d22bbb1ecc46bc7af3083c8fbc7402f4"/><dir name="Productcategories"><file name="Collection.php" hash="b52ad0cdb1a680ce70a4d4765074bd0d"/></dir><file name="Productcategories.php" hash="7b39e805cbbd350f2a4f9fffaf9cea9b"/><dir name="Token"><file name="Collection.php" hash="3de9ff519cb7abef724dc74f17d191b1"/></dir><file name="Token.php" hash="50c353e3ca26dc8c357640240545e24f"/></dir><file name="Nx.php" hash="9dc7ec09782489004d97b3ec539a032a"/><file name="Observer.php" hash="ee16581aa672d0274e71e2a1375dbc79"/><dir name="Order"><file name="Invoice.php" hash="0f25bc486ba99905ac317e34746aa9dc"/><file name="Payment.php" hash="f6aa8c095436644fcca5efcd5b079830"/></dir><file name="Productcategories.php" hash="41615f0323ce63275f566df4e40d9aa9"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="3c279f0ed9e2e6c767be28d806ccb7ff"/></dir></dir></dir><file name="Token.php" hash="db1b048585568e3cfe93517fc1bd6e50"/><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="9d029ea6b833b6a5988b0aa83ca9bcf9"/><file name="Quote.php" hash="cf43c68fe7b969e40d7bae078fb7b537"/></dir></dir><file name="Wallet.php" hash="d26bc83ecda80e94e7d4ad4050c3774d"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Payline"><file name="ManagecontractsController.php" hash="5b1d7c5d23208c2c6510627155ee5b41"/><file name="ManageproductcategoriesController.php" hash="23f16b79759fe6156721e3dc446ad8fd"/></dir></dir><file name="CheckoutonepageController.php" hash="b7be950924d8f6fdb561e6baa5854e2c"/><file name="IndexController.php" hash="c354a723f4a3aafe19fa2c71f715be0a"/><file name="UnloggedwalletController.php" hash="8904c89b252044364be5edaa45cc3d47"/><file name="WalletController.php" hash="ad9529ace55de3840e2fac32e699957f"/></dir><dir name="etc"><file name="config.xml" hash="c11450458a92ac0c737aa58364aaa17a"/><file name="system.xml" hash="14cfcb5d2b55f80391bc1c4f81b9dcf1"/></dir><dir name="lib"><file name="paylineSDK.php" hash="95e3d74133bae1f7003fed36876b11b2"/><file name="v4.41.wsdl" hash="1ff932da7723450def580fec9aa1f639"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/><file name="mysql4-upgrade-1.7.5-1.7.6.php" hash="0ebfd38e90a8139c67087fc1e16f1aba"/><file name="mysql4-upgrade-1.7.7-1.8.1.php" hash="0784c56c59f86bea1384003f2cfd68d1"/><file name="mysql4-upgrade-1.8.1-1.8.3.php" hash="12c3983d93663fe60d0a562e06cc57ef"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="payline.css" hash="58de0b92593bd1a33e5846212964d882"/></dir><dir name="images"><dir name="monext"><file name="ae.gif" hash="f611020c37035129215aba20f475dc8c"/><file name="amex.gif" hash="f611020c37035129215aba20f475dc8c"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mcvisa.gif" hash="a09c5bda103d8d9f874cf34e0c71315d"/><file name="payline-logo.png" hash="a1a08f99791f3ed127c1d31e7408a0e0"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="528410ec4b55c2fa7081650b0cf3511d"/><file name="3xcb.png" hash="06696286a423c902175b8baa64a09ef1"/><file name="amex.png" hash="a5d5e4e9a0129d2aa56e38d05f062732"/><file name="amexoneclick.png" hash="a5d5e4e9a0129d2aa56e38d05f062732"/><file name="aurore.png" hash="6cfde017fd781558a578d81bf5fa3133"/><file name="buyster.png" hash="a00748b293a2a5d087abb5d7d01305fe"/><file name="casino.png" hash="05ce4396a78fd03d2309a8281ba12578"/><file name="cb.png" hash="3c7da656be0964ed96055e7fe2ecb748"/><file name="cofinoga.png" hash="8d0ff26091e9d045d326882a9e558724"/><file name="cyrillus.png" hash="a9dbdfb6dc1463e03ee597a6f3fbb605"/><file name="default.png" hash="9b1b4cd75889d09d12d2b50172853b63"/><file name="diners.png" hash="4e032fbe8d11001d8e76734edcfce7ef"/><file name="elv.png" hash="985364b98870ec53d5da01191c2c365e"/><file name="fnac.png" hash="4941742deecb7677fdf857b0b4ca453e"/><file name="ideal.png" hash="103f12c0d9302b0bce61587bd4bcbe5e"/><file name="internetplus.png" hash="ad0b4624c00d7d40d7bfabba8142542e"/><file name="jcb.png" hash="d040f7acc649e46a28ba22d1fe8a86c2"/><file name="kangourou.png" hash="6c0abc2e169fb4e4181ae6fefa521cdb"/><file name="leetchi.png" hash="b5c72a9a7c81fa038722e846811dd138"/><file name="maestro.png" hash="e61de1bda5ddf510b9d9c48519b530e8"/><file name="mandarine.png" hash="9d0cd1c59033b799b061aeb72351e58f"/><file name="mastercard.png" hash="aed32ea70e4561c28ab8f600e6547574"/><file name="maxicheque.png" hash="a5ecd9edc2f11d3974b0eb03f24634bc"/><file name="mcvisa.png" hash="437d55b82e510e922d4d066979cddc44"/><file name="moneo.png" hash="32f5dc4a7e82254ccbb67e8c0c195cb9"/><file name="neosurf.png" hash="aea0435bc824abeb9cc489e987cc3ddd"/><file name="okshopping.png" hash="59bcce449584ae45551733077f9ced49"/><file name="pass.png" hash="c97abf06bb567ca283111c2c9718b751"/><file name="passvisa.png" hash="69147c8e233d7ed8e6e92e57e8dbb094"/><file name="payfair.png" hash="019f2b25634078ac41597015a726d140"/><file name="paypal.png" hash="b14af2ad46c2c13287a441846b7a9c8f"/><file name="paysafecard.png" hash="39ccb58ccbcf2fbe3de3f7b9c61e0f70"/><file name="printemps.png" hash="5c3e161e0c52c684e9cf750a5105fcfc"/><file name="privilege.png" hash="ea776fdb4286dd5d018ba2facb61ed51"/><file name="skrill.png" hash="662398fe2f922b79aa8ffa6f35a7718e"/><file name="sofinco.png" hash="9a2eaf61a3f91c8ac2726def68d58153"/><file name="surcouf.png" hash="f0bd67ed89fe37aa778cedb4a3a726ca"/><file name="switch.png" hash="3c93a38e1d755744738a85e5e82ceb64"/><file name="ticketpremium.png" hash="29bca782c6d3c9c0482cf5b36d7d2bfe"/><file name="ticketsurf.png" hash="5f0fe5a3bdca8aa1e170a135f1e41433"/><file name="visa.png" hash="904ec057957eb9fc55ddba2af494e3da"/><file name="wexpay.png" hash="b6aa956a5150801fe333e22881bfb84e"/></dir><file name="vi.gif" hash="e26faaf769d9b8908bcc73245afee7af"/><file name="visa.gif" hash="e26faaf769d9b8908bcc73245afee7af"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="layout"><file name="payline.xml" hash="809e0d7a32c7ad2fa88ecb422f4246fb"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="Direct.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="Payline.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="assignProductCategories.phtml" hash="755f5da7084ef192480abb85cb8b8ae8"/><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="4e0e72bb6db23c4ddc85ab7b897eb963"/></dir></dir><file name="productcategories.phtml" hash="647dd1d9b10d0c692edbc18b64a08295"/><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/><dir name="wallet"><file name="form.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="payline.xml" hash="7ec509d128fc9e459dd2bc0134500e2e"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="8f4f34bff77d27328b706da327cab7c8"/><file name="Direct.phtml" hash="548d2e09a56960d43828a7027253e209"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><file name="addjs.phtml" hash="98c66d121706ab7077d6bbf1bbf6d14e"/><dir name="info"><file name="default.phtml" hash="0a2e4099998f2caa0d0b3e957d8666ed"/></dir><dir name="payment"><file name="methods.phtml" hash="1194131c240a1154e8d0cf1c95a1e74e"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="5f159dfc756fce0ee5f80a211ae4136d"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="3a8c49269470378792e2a15bd389277c"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="a4f2710913318accebd84b0c7ec4d9a8"/></dir></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="4d5eb7d4a48aac6d5c249c3c96e1c2d8"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="e3ac544b3248e86b26e9afd7058406c2"/><dir name="sidebar"><file name="form.phtml" hash="e5454c273aafc3fe80bcc3bd1331c8ab"/><file name="notlogged.phtml" hash="962b06945f1297fd6eda93f2794b5d6a"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="608c3b97558b3a93787159e9d148f08a"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="6233904b848881c00768ec8f187cbf53"/></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="c6bef273efdf832b90a5924c2cfb568e"/></dir></target></contents>
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payline</name>
|
4 |
+
<version>1.8.3.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Profitez dès à présent de l'essor du marché de la vente à distance en proposant à vos clients une solution de paiement totalement sécurisée. Grâce à Payline vous permettez à vos clients de régler avec leur moyen de paiement habituel, quel que soit votre canal de vente. Vous leur proposez une interface de paiement facile à utiliser, en mesure de vous accompagner dans votre développement à l'international, en toute simplicité.
|
11 |

|
12 |
Fonctionnalités : autorisation, autorisation + validation, paiement en n fois, paiement par portefeuille et en 1 clic, validation et remboursement partiels, multi-boutique...</description>
|
13 |
+
<notes>Montée de version librairie PHP Payline v4.43
|
14 |
+
Modification du format d'identifiant du portefeuille client</notes>
|
|
|
|
|
|
|
|
|
15 |
<authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
|
16 |
+
<date>2015-07-23</date>
|
17 |
+
<time>15:20:36</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="741aacf6f352c77df02bb84778ca9ac2"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="e3e28988b58f0fd7d5a168837d0b02fa"/></dir><file name="Edit.php" hash="6c81a9ee135b1ea498186806058c572a"/><file name="Grid.php" hash="654921d0b1eac96b999f506d23fff679"/></dir><file name="Managecontracts.php" hash="a1801e32c21edcf6128cc548e7e6ebf8"/><dir name="Manageproductcategories"><dir name="Assign"><file name="Form.php" hash="e0e36ee0bdbce77381b06b98693717c4"/></dir><file name="Grid.php" hash="1f141e7799b19ecf69cc2a7b0d69d242"/></dir><file name="Manageproductcategories.php" hash="2a2d7a6d4f7448ccd7ebbb66b39939d7"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="7e747fac06ac058e6a29964d3eb6ef02"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="6431aa97d9df61a8be8878e576e95881"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="944e24a7636721d076640da71a6e1ea8"/></dir><file name="Cpt.php" hash="63762d671a0b42929e534e4be9b5f215"/><file name="Direct.php" hash="bf4a57d546737702a7a32faa605ac6a4"/><dir name="Info"><file name="Default.php" hash="24bd924b550d96c9f57391580d653026"/><file name="Direct.php" hash="a955df25c9f7a212662d48afb597d8c5"/></dir><file name="Logo.php" hash="0561df2d88859cd3c9acc838fc18fcef"/><file name="Nx.php" hash="f6f1708088238e3d8ee3fe7489ca32c8"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="17687bb5f7d5916d32b015ac269ae785"/><file name="Details.php" hash="79c295fd3043de9d09665a58bf40d473"/><file name="Infos.php" hash="99b00b70d20737dc46f49dd093244c7f"/><file name="Sidebar.php" hash="49a4e2b261c4fc49f6f609894ef49fae"/></dir><file name="Wallet.php" hash="3dc6cbe7c74963369f0e48ddff497917"/></dir><dir name="Helper"><file name="Data.php" hash="7d8967a5b4fcacfe044259469400d872"/><file name="Logger.php" hash="ef4de0a1d4176b2e60b8464509533166"/><file name="Payment.php" hash="85b847a728882305fdc38ce331ed2488"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="889b06eebdf62b468a23d4984de3d01f"/></dir><file name="Contract.php" hash="4dcb797849208e4d07c57858306aadad"/><file name="Cpt.php" hash="c6bec62fe0a7756cd586b7734905ed50"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><file name="Capturepaymentoptions.php" hash="834007008a2870d2ebe7d9d54d43a2fb"/><dir name="Cms"><file name="Block.php" hash="1e50e8803b8e502080136aeb788ab37a"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Environment.php" hash="3b169f26fca85103414e64a8be23457e"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paylineproductcategories.php" hash="1e9d90132db29fee0c52dbfe89c70e81"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Paymentactionsreauth.php" hash="1673fcc9e3af9a7d6c4be814a160d10a"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="46211a029a43267a573f8957390f2940"/><dir name="Status"><file name="Canceled.php" hash="fd82912fb6cd9c57aab8dc0f07625051"/><file name="Invoice.php" hash="5f3cb99c6fb312bb3a59043e5602d7e0"/></dir><file name="Status.php" hash="813bb32c0bff85fd19bd3069c9ee074b"/><file name="Statusrowempty.php" hash="bebeabdc170457f1daff593079b85638"/><file name="Walletsecurity.php" hash="46b6d66b856ea9124a38abde0b0990b1"/></dir><file name="Direct.php" hash="b04e9549ac548667437b1e413e8059fc"/><file name="Fees.php" hash="32931106e566c790b29c4ffd1db9ca2a"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="e03a7d1a7f0eee95d154d8063f9de64a"/><dir name="Status"><file name="Collection.php" hash="357db788db91fa0b53b28c8fb740f2fd"/></dir><file name="Status.php" hash="5bb4a3be48bfdf6d27761ed4de9cb5f1"/></dir><file name="Contract.php" hash="2942a0df031b70f712719b5e1b727564"/><dir name="Fees"><file name="Collection.php" hash="3e685f250c293702d9112fb8f49c9696"/></dir><file name="Fees.php" hash="d22bbb1ecc46bc7af3083c8fbc7402f4"/><dir name="Productcategories"><file name="Collection.php" hash="b52ad0cdb1a680ce70a4d4765074bd0d"/></dir><file name="Productcategories.php" hash="7b39e805cbbd350f2a4f9fffaf9cea9b"/><dir name="Token"><file name="Collection.php" hash="3de9ff519cb7abef724dc74f17d191b1"/></dir><file name="Token.php" hash="50c353e3ca26dc8c357640240545e24f"/></dir><file name="Nx.php" hash="9dc7ec09782489004d97b3ec539a032a"/><file name="Observer.php" hash="ee16581aa672d0274e71e2a1375dbc79"/><dir name="Order"><file name="Invoice.php" hash="0f25bc486ba99905ac317e34746aa9dc"/><file name="Payment.php" hash="f6aa8c095436644fcca5efcd5b079830"/></dir><file name="Productcategories.php" hash="41615f0323ce63275f566df4e40d9aa9"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="3c279f0ed9e2e6c767be28d806ccb7ff"/></dir></dir></dir><file name="Token.php" hash="db1b048585568e3cfe93517fc1bd6e50"/><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="9d029ea6b833b6a5988b0aa83ca9bcf9"/><file name="Quote.php" hash="cf43c68fe7b969e40d7bae078fb7b537"/></dir></dir><file name="Wallet.php" hash="5a61636b9c329c7617e948fdcd3e3077"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Payline"><file name="ManagecontractsController.php" hash="5b1d7c5d23208c2c6510627155ee5b41"/><file name="ManageproductcategoriesController.php" hash="23f16b79759fe6156721e3dc446ad8fd"/></dir></dir><file name="CheckoutonepageController.php" hash="b7be950924d8f6fdb561e6baa5854e2c"/><file name="IndexController.php" hash="c354a723f4a3aafe19fa2c71f715be0a"/><file name="UnloggedwalletController.php" hash="8904c89b252044364be5edaa45cc3d47"/><file name="WalletController.php" hash="ad9529ace55de3840e2fac32e699957f"/></dir><dir name="etc"><file name="config.xml" hash="2b8505832ddd5a353d224d693fe71ef6"/><file name="system.xml" hash="14cfcb5d2b55f80391bc1c4f81b9dcf1"/></dir><dir name="lib"><file name="PaylineByMonext.wsdl" hash="c7192923eacf61d01dac8c649d5441d8"/><file name="paylineSDK.php" hash="bec523218f96e91d5e49fcc813988b1c"/><file name="v4.43.wsdl" hash="1f6030042d96082aa18d4bfca25b3187"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/><file name="mysql4-upgrade-1.7.5-1.7.6.php" hash="0ebfd38e90a8139c67087fc1e16f1aba"/><file name="mysql4-upgrade-1.7.7-1.8.1.php" hash="0784c56c59f86bea1384003f2cfd68d1"/><file name="mysql4-upgrade-1.8.1-1.8.3.php" hash="12c3983d93663fe60d0a562e06cc57ef"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="payline.css" hash="58de0b92593bd1a33e5846212964d882"/></dir><dir name="images"><dir name="monext"><file name="ae.gif" hash="f611020c37035129215aba20f475dc8c"/><file name="amex.gif" hash="f611020c37035129215aba20f475dc8c"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mcvisa.gif" hash="a09c5bda103d8d9f874cf34e0c71315d"/><file name="payline-logo.png" hash="a1a08f99791f3ed127c1d31e7408a0e0"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="528410ec4b55c2fa7081650b0cf3511d"/><file name="3xcb.png" hash="06696286a423c902175b8baa64a09ef1"/><file name="amex.png" hash="a5d5e4e9a0129d2aa56e38d05f062732"/><file name="amexoneclick.png" hash="a5d5e4e9a0129d2aa56e38d05f062732"/><file name="aurore.png" hash="6cfde017fd781558a578d81bf5fa3133"/><file name="buyster.png" hash="a00748b293a2a5d087abb5d7d01305fe"/><file name="casino.png" hash="05ce4396a78fd03d2309a8281ba12578"/><file name="cb.png" hash="3c7da656be0964ed96055e7fe2ecb748"/><file name="cofinoga.png" hash="8d0ff26091e9d045d326882a9e558724"/><file name="cyrillus.png" hash="a9dbdfb6dc1463e03ee597a6f3fbb605"/><file name="default.png" hash="9b1b4cd75889d09d12d2b50172853b63"/><file name="diners.png" hash="4e032fbe8d11001d8e76734edcfce7ef"/><file name="elv.png" hash="985364b98870ec53d5da01191c2c365e"/><file name="fnac.png" hash="4941742deecb7677fdf857b0b4ca453e"/><file name="ideal.png" hash="103f12c0d9302b0bce61587bd4bcbe5e"/><file name="internetplus.png" hash="ad0b4624c00d7d40d7bfabba8142542e"/><file name="jcb.png" hash="d040f7acc649e46a28ba22d1fe8a86c2"/><file name="kangourou.png" hash="6c0abc2e169fb4e4181ae6fefa521cdb"/><file name="leetchi.png" hash="b5c72a9a7c81fa038722e846811dd138"/><file name="maestro.png" hash="e61de1bda5ddf510b9d9c48519b530e8"/><file name="mandarine.png" hash="9d0cd1c59033b799b061aeb72351e58f"/><file name="mastercard.png" hash="aed32ea70e4561c28ab8f600e6547574"/><file name="maxicheque.png" hash="a5ecd9edc2f11d3974b0eb03f24634bc"/><file name="mcvisa.png" hash="437d55b82e510e922d4d066979cddc44"/><file name="moneo.png" hash="32f5dc4a7e82254ccbb67e8c0c195cb9"/><file name="neosurf.png" hash="aea0435bc824abeb9cc489e987cc3ddd"/><file name="okshopping.png" hash="59bcce449584ae45551733077f9ced49"/><file name="pass.png" hash="c97abf06bb567ca283111c2c9718b751"/><file name="passvisa.png" hash="69147c8e233d7ed8e6e92e57e8dbb094"/><file name="payfair.png" hash="019f2b25634078ac41597015a726d140"/><file name="paypal.png" hash="b14af2ad46c2c13287a441846b7a9c8f"/><file name="paysafecard.png" hash="39ccb58ccbcf2fbe3de3f7b9c61e0f70"/><file name="printemps.png" hash="5c3e161e0c52c684e9cf750a5105fcfc"/><file name="privilege.png" hash="ea776fdb4286dd5d018ba2facb61ed51"/><file name="skrill.png" hash="662398fe2f922b79aa8ffa6f35a7718e"/><file name="sofinco.png" hash="9a2eaf61a3f91c8ac2726def68d58153"/><file name="surcouf.png" hash="f0bd67ed89fe37aa778cedb4a3a726ca"/><file name="switch.png" hash="3c93a38e1d755744738a85e5e82ceb64"/><file name="ticketpremium.png" hash="29bca782c6d3c9c0482cf5b36d7d2bfe"/><file name="ticketsurf.png" hash="5f0fe5a3bdca8aa1e170a135f1e41433"/><file name="visa.png" hash="904ec057957eb9fc55ddba2af494e3da"/><file name="wexpay.png" hash="b6aa956a5150801fe333e22881bfb84e"/></dir><file name="vi.gif" hash="e26faaf769d9b8908bcc73245afee7af"/><file name="visa.gif" hash="e26faaf769d9b8908bcc73245afee7af"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="layout"><file name="payline.xml" hash="809e0d7a32c7ad2fa88ecb422f4246fb"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="Direct.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="Payline.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/><file name="assignProductCategories.phtml" hash="755f5da7084ef192480abb85cb8b8ae8"/><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="4e0e72bb6db23c4ddc85ab7b897eb963"/></dir></dir><file name="productcategories.phtml" hash="647dd1d9b10d0c692edbc18b64a08295"/><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/><dir name="wallet"><file name="form.phtml" hash="8aa2a9a09a931cebc8607a9341ac2707"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="payline.xml" hash="7ec509d128fc9e459dd2bc0134500e2e"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="8f4f34bff77d27328b706da327cab7c8"/><file name="Direct.phtml" hash="548d2e09a56960d43828a7027253e209"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><file name="addjs.phtml" hash="98c66d121706ab7077d6bbf1bbf6d14e"/><dir name="info"><file name="default.phtml" hash="0a2e4099998f2caa0d0b3e957d8666ed"/></dir><dir name="payment"><file name="methods.phtml" hash="1194131c240a1154e8d0cf1c95a1e74e"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="5f159dfc756fce0ee5f80a211ae4136d"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="3a8c49269470378792e2a15bd389277c"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="payment"><dir name="info"><file name="monext.phtml" hash="a4f2710913318accebd84b0c7ec4d9a8"/></dir></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="4d5eb7d4a48aac6d5c249c3c96e1c2d8"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="e3ac544b3248e86b26e9afd7058406c2"/><dir name="sidebar"><file name="form.phtml" hash="e5454c273aafc3fe80bcc3bd1331c8ab"/><file name="notlogged.phtml" hash="962b06945f1297fd6eda93f2794b5d6a"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="608c3b97558b3a93787159e9d148f08a"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="6233904b848881c00768ec8f187cbf53"/></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="c6bef273efdf832b90a5924c2cfb568e"/></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|