activemerchant-payline 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +5 -0
  3. data/.gitignore +18 -0
  4. data/.travis.yml +9 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +57 -0
  8. data/Rakefile +1 -0
  9. data/activemerchant-payline.gemspec +33 -0
  10. data/lib/active_merchant/billing/gateways/payline.rb +57 -0
  11. data/lib/active_merchant/billing/gateways/payline/payline_common.rb +368 -0
  12. data/lib/active_merchant/billing/gateways/payline/payline_constants.rb +83 -0
  13. data/lib/active_merchant/billing/gateways/payline/payline_direct_api.rb +78 -0
  14. data/lib/active_merchant/billing/gateways/payline/payline_management_payment_api.rb +154 -0
  15. data/lib/active_merchant/billing/gateways/payline/payline_status_api.rb +36 -0
  16. data/lib/active_merchant/billing/gateways/payline/payline_wallet_management.rb +249 -0
  17. data/lib/active_merchant/billing/gateways/payline/payline_web_api.rb +186 -0
  18. data/lib/active_merchant/billing/iso_4217_currency_codes.rb +32 -0
  19. data/lib/activemerchant-payline.rb +2 -0
  20. data/test/fixtures.yml +8 -0
  21. data/test/fixtures/vcr_cassettes/test_failed_create_wallet.yml +1820 -0
  22. data/test/fixtures/vcr_cassettes/test_failed_disable_payment_record.yml +1821 -0
  23. data/test/fixtures/vcr_cassettes/test_failed_disable_wallet.yml +1820 -0
  24. data/test/fixtures/vcr_cassettes/test_failed_do_authorization.yml +1956 -0
  25. data/test/fixtures/vcr_cassettes/test_failed_do_capture.yml +1890 -0
  26. data/test/fixtures/vcr_cassettes/test_failed_do_credit.yml +1882 -0
  27. data/test/fixtures/vcr_cassettes/test_failed_do_debit.yml +1981 -0
  28. data/test/fixtures/vcr_cassettes/test_failed_do_recurrent_wallet_payment.yml +2033 -0
  29. data/test/fixtures/vcr_cassettes/test_failed_do_refund.yml +1944 -0
  30. data/test/fixtures/vcr_cassettes/test_failed_do_reset.yml +1820 -0
  31. data/test/fixtures/vcr_cassettes/test_failed_do_scheduled_wallet_payment.yml +1927 -0
  32. data/test/fixtures/vcr_cassettes/test_failed_do_web_payment.yml +1822 -0
  33. data/test/fixtures/vcr_cassettes/test_failed_enable_wallet.yml +1819 -0
  34. data/test/fixtures/vcr_cassettes/test_failed_get_payment_record.yml +1821 -0
  35. data/test/fixtures/vcr_cassettes/test_failed_get_wallet.yml +1819 -0
  36. data/test/fixtures/vcr_cassettes/test_failed_get_web_payment_details.yml +1851 -0
  37. data/test/fixtures/vcr_cassettes/test_failed_immediate_wallet_payment.yml +1938 -0
  38. data/test/fixtures/vcr_cassettes/test_failed_manage_web_wallet.yml +1870 -0
  39. data/test/fixtures/vcr_cassettes/test_failed_update_wallet.yml +1820 -0
  40. data/test/fixtures/vcr_cassettes/test_failed_update_web_wallet.yml +1819 -0
  41. data/test/fixtures/vcr_cassettes/test_get_transaction_details.yml +3711 -0
  42. data/test/fixtures/vcr_cassettes/test_get_web_wallet.yml +1871 -0
  43. data/test/fixtures/vcr_cassettes/test_missing_parameters_create_web_wallet.yml +1870 -0
  44. data/test/fixtures/vcr_cassettes/test_missing_parameters_do_web_payment.yml +1822 -0
  45. data/test/fixtures/vcr_cassettes/test_successful_create_wallet.yml +1826 -0
  46. data/test/fixtures/vcr_cassettes/test_successful_create_web_wallet.yml +1822 -0
  47. data/test/fixtures/vcr_cassettes/test_successful_disable_payment_record.yml +1876 -0
  48. data/test/fixtures/vcr_cassettes/test_successful_disable_wallet.yml +1871 -0
  49. data/test/fixtures/vcr_cassettes/test_successful_do_authorization.yml +1837 -0
  50. data/test/fixtures/vcr_cassettes/test_successful_do_bank_transfer.yml +1826 -0
  51. data/test/fixtures/vcr_cassettes/test_successful_do_capture.yml +1889 -0
  52. data/test/fixtures/vcr_cassettes/test_successful_do_credit.yml +1829 -0
  53. data/test/fixtures/vcr_cassettes/test_successful_do_debit.yml +1834 -0
  54. data/test/fixtures/vcr_cassettes/test_successful_do_immediate_wallet_payment.yml +1875 -0
  55. data/test/fixtures/vcr_cassettes/test_successful_do_recurrent_wallet_payment.yml +1827 -0
  56. data/test/fixtures/vcr_cassettes/test_successful_do_refund.yml +1888 -0
  57. data/test/fixtures/vcr_cassettes/test_successful_do_reset.yml +1892 -0
  58. data/test/fixtures/vcr_cassettes/test_successful_do_scheduled_wallet_payment.yml +1821 -0
  59. data/test/fixtures/vcr_cassettes/test_successful_do_web_payment.yml +1821 -0
  60. data/test/fixtures/vcr_cassettes/test_successful_enable_wallet.yml +1924 -0
  61. data/test/fixtures/vcr_cassettes/test_successful_get_payment_record.yml +1891 -0
  62. data/test/fixtures/vcr_cassettes/test_successful_get_wallet.yml +1894 -0
  63. data/test/fixtures/vcr_cassettes/test_successful_get_web_payment_details.yml +1908 -0
  64. data/test/fixtures/vcr_cassettes/test_successful_manage_web_wallet.yml +1821 -0
  65. data/test/fixtures/vcr_cassettes/test_successful_update_wallet.yml +1825 -0
  66. data/test/fixtures/vcr_cassettes/test_successful_update_web_wallet.yml +1820 -0
  67. data/test/run_test.rb +9 -0
  68. data/test/test_helper.rb +350 -0
  69. data/test/unit/gateways/payline/payline_direct_api_test.rb +122 -0
  70. data/test/unit/gateways/payline/payline_management_payment_api_test.rb +197 -0
  71. data/test/unit/gateways/payline/payline_status_api_test.rb +30 -0
  72. data/test/unit/gateways/payline/payline_wallet_management_api_test.rb +297 -0
  73. data/test/unit/gateways/payline/payline_web_api_test.rb +221 -0
  74. metadata +360 -0
@@ -0,0 +1,3711 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://homologation.payline.com/V4/services/WebPaymentAPI?wsdl
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Authorization:
17
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Fri, 11 Aug 2017 09:01:14 GMT
25
+ Server:
26
+ - Apache
27
+ Last-Modified:
28
+ - Wed, 05 Apr 2017 12:32:47 GMT
29
+ Etag:
30
+ - '"59f72-2546c-54c6a96fd99c0"'
31
+ Accept-Ranges:
32
+ - bytes
33
+ Content-Length:
34
+ - '152684'
35
+ Content-Type:
36
+ - application/wsdl+xml
37
+ body:
38
+ encoding: UTF-8
39
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<wsdl:definitions targetNamespace=\"http://impl.ws.payline.experian.com\"
40
+ xmlns:impl=\"http://impl.ws.payline.experian.com\" xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\"
41
+ xmlns:apachesoap=\"http://xml.apache.org/xml-soap\" xmlns:intf=\"http://impl.ws.payline.experian.com\"
42
+ xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:wsdlsoap=\"http://schemas.xmlsoap.org/wsdl/soap/\"
43
+ xmlns:tns1=\"http://obj.ws.payline.experian.com\">\r\n <wsdl:types>\r\n <schema
44
+ elementFormDefault=\"qualified\" targetNamespace=\"http://impl.ws.payline.experian.com\"
45
+ xmlns=\"http://www.w3.org/2001/XMLSchema\">\r\n\t\t\t<import namespace=\"http://obj.ws.payline.experian.com\"/>\r\n\t\t\t<element
46
+ name=\"doWebPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
47
+ element is the request for the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
48
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
49
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
50
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
51
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
52
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
53
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
54
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
55
+ name=\"secondSelectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
56
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
57
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
58
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
59
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
60
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
61
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
62
+ name=\"recurring\" nillable=\"true\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
63
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
64
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
65
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
66
+ name=\"doWebPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
67
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
68
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
69
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
70
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
71
+ minOccurs=\"0\" name=\"stepCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
72
+ minOccurs=\"0\" name=\"reqCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
73
+ minOccurs=\"0\" name=\"method\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
74
+ name=\"getWebPaymentDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
75
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
76
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
77
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
78
+ name=\"getWebPaymentDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
79
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
80
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
81
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
82
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
83
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
84
+ minOccurs=\"0\" name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
85
+ minOccurs=\"0\" name=\"paymentRecordId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
86
+ minOccurs=\"0\" name=\"billingRecordList\" nillable=\"true\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
87
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
88
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
89
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
90
+ name=\"order\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
91
+ name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
92
+ minOccurs=\"0\" name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
93
+ minOccurs=\"0\" name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
94
+ minOccurs=\"0\" name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
95
+ minOccurs=\"0\" name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
96
+ minOccurs=\"0\" name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
97
+ name=\"bankAccountData\" nillable=\"true\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
98
+ name=\"doAuthorizationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
99
+ element is the request for the\r\n\t\t\t\t\t\t\tdoAuthorization\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
100
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
101
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
102
+ name=\"bankAccountData\" nillable=\"false\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t\t<element
103
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
104
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
105
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
106
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
107
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
108
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
109
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
110
+ name=\"doAuthorizationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
111
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
112
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
113
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
114
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
115
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
116
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"privateDataList\"
117
+ nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
118
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
119
+ name=\"doCaptureRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
120
+ element is the request for the\r\n\t\t\t\t\t\t\tdoCapture method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
121
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
122
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
123
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
124
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
125
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
126
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
127
+ name=\"doCaptureResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
128
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
129
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
130
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
131
+ name=\"reAuthorization\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
132
+ name=\"doDebitRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
133
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
134
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
135
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
136
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
137
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
138
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
139
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
140
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
141
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
142
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
143
+ name=\"doDebitResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
144
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
145
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
146
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
147
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
148
+ name=\"doRefundRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
149
+ element is the request for the doRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
150
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
151
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
152
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
153
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
154
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
155
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
156
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
157
+ name=\"doRefundResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
158
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoRefund method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
159
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
160
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
161
+ name=\"doResetRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
162
+ element is the request for the doReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
163
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
164
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
165
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
166
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
167
+ name=\"doResetResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
168
+ element is the reponse from the doReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
169
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
170
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
171
+ name=\"doCreditRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
172
+ element is the request for the doCredit\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
173
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
174
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
175
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
176
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
177
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
178
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
179
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
180
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
181
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
182
+ name=\"doCreditResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
183
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoCredit method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
184
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
185
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
186
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
187
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
188
+ name=\"doMassCaptureRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
189
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
190
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
191
+ name=\"captureAuthorizationList\" nillable=\"true\" type=\"tns1:captureAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
192
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
193
+ name=\"doMassCaptureResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
194
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
195
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
196
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
197
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
198
+ name=\"doMassRefundRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
199
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
200
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
201
+ name=\"refundAuthorizationList\" nillable=\"true\" type=\"tns1:refundAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
202
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
203
+ name=\"doMassRefundResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
204
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
205
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
206
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
207
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
208
+ name=\"doMassResetRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
209
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
210
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
211
+ name=\"resetAuthorizationList\" nillable=\"true\" type=\"tns1:resetAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
212
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
213
+ name=\"doMassResetResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
214
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
215
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
216
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
217
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
218
+ name=\"getMassTraitmentDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
219
+ element is the request for the\r\n\t\t\t\t\t\t\tgetMassTraitmentDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
220
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
221
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
222
+ name=\"getMassTraitmentDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
223
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetMassTraitmentDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
224
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
225
+ name=\"massTraitementID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
226
+ name=\"totalLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
227
+ name=\"failedLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
228
+ name=\"failedListObject\" nillable=\"true\" type=\"tns1:failedListObject\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
229
+ name=\"createWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
230
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
231
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
232
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
233
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
234
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
235
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
236
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
237
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
238
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
239
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
240
+ name=\"createWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
241
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
242
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
243
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
244
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
245
+ nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
246
+ name=\"fraudResultDetails\" nillable=\"true\" type=\"tns1:fraudResultDetails\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
247
+ name=\"updateWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
248
+ element is the request for the\r\n\t\t\t\t\t\t\tupdateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
249
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
250
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
251
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
252
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
253
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
254
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
255
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
256
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
257
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
258
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
259
+ name=\"updateWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
260
+ element is the reponse from the\r\n\t\t\t\t\t\t\tupdateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
261
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
262
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
263
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
264
+ nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
265
+ name=\"getWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
266
+ element is the request for the\r\n\t\t\t\t\t\t\tgetWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
267
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
268
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
269
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
270
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
271
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
272
+ name=\"getWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
273
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
274
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
275
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
276
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
277
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
278
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
279
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
280
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
281
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
282
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
283
+ name=\"getCardsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
284
+ element is the request for the\r\n\t\t\t\t\t\t\tgetCards method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
285
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
286
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
287
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
288
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
289
+ name=\"getCardsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
290
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetCards method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
291
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
292
+ name=\"cardsList\" nillable=\"true\" type=\"tns1:cardsList\"/>\r\n\t\t\t\t\t\t<element
293
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
294
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
295
+ name=\"disableWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
296
+ element is the request for the\r\n\t\t\t\t\t\t\tdisableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
297
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
298
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
299
+ name=\"walletIdList\" nillable=\"false\" type=\"tns1:walletIdList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
300
+ name=\"disableWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
301
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdisableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
302
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
303
+ name=\"walletIdList\" nillable=\"false\" type=\"tns1:walletIdList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
304
+ name=\"enableWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
305
+ element is the request for the\r\n\t\t\t\t\t\t\tenableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
306
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
307
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
308
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
309
+ name=\"enableWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
310
+ element is the reponse from the\r\n\t\t\t\t\t\t\tenableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
311
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
312
+ name=\"doImmediateWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
313
+ element is the request for the\r\n\t\t\t\t\t\t\tdoImmediateWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
314
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
315
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
316
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
317
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
318
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
319
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
320
+ name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
321
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
322
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
323
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
324
+ name=\"doImmediateWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
325
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoImmediateWalletPayment
326
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
327
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
328
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
329
+ name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
330
+ name=\"doScheduledWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
331
+ element is the request for the\r\n\t\t\t\t\t\t\tdoScheduledWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
332
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
333
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
334
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
335
+ name=\"orderDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
336
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
337
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
338
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
339
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
340
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
341
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
342
+ name=\"doScheduledWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
343
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoScheduledWalletPayment
344
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
345
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
346
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
347
+ name=\"doRecurrentWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
348
+ element is the request for the\r\n\t\t\t\t\t\t\tdoRecurrentWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
349
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
350
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
351
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
352
+ name=\"orderDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
353
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
354
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
355
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
356
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
357
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
358
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
359
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
360
+ name=\"doRecurrentWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
361
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoRecurrentWalletPayment
362
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
363
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
364
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
365
+ name=\"billingRecordList\" nillable=\"false\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
366
+ name=\"getPaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
367
+ element is the request for the\r\n\t\t\t\t\t\t\tgetPaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
368
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
369
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
370
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
371
+ name=\"getPaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
372
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetPaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
373
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
374
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
375
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
376
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
377
+ name=\"billingRecordList\" nillable=\"false\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
378
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
379
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
380
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
381
+ name=\"disablePaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
382
+ element is the request for the\r\n\t\t\t\t\t\t\tdisablePaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
383
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
384
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
385
+ name=\"disablePaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
386
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdisablePaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
387
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
388
+ name=\"manageWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
389
+ element is the request for the\r\n\t\t\t\t\t\t\tmanageWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
390
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
391
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
392
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
393
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
394
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
395
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
396
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
397
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
398
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
399
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
400
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
401
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
402
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
403
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
404
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
405
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
406
+ name=\"manageWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
407
+ element is the reponse from the\r\n\t\t\t\t\t\t\tmanageWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
408
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
409
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
410
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
411
+ name=\"createWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
412
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
413
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
414
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
415
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
416
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
417
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
418
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
419
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
420
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
421
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
422
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
423
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
424
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
425
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
426
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
427
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
428
+ name=\"createWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
429
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
430
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
431
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
432
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
433
+ name=\"updateWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
434
+ element is the request for the\r\n\t\t\t\t\t\t\tupdateWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
435
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
436
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
437
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
438
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
439
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
440
+ name=\"updateOwnerDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
441
+ name=\"updatePaymentDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
442
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
443
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
444
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
445
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
446
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
447
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
448
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
449
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
450
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
451
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
452
+ name=\"updateWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
453
+ element is the reponse from the\r\n\t\t\t\t\t\t\tupdateWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
454
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
455
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
456
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
457
+ name=\"getWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
458
+ element is the request for the\r\n\t\t\t\t\t\t\tgetWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
459
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
460
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
461
+ name=\"getWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
462
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
463
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
464
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
465
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
466
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
467
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
468
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
469
+ name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
470
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
471
+ name=\"getTransactionDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
472
+ element is the request for the\r\n\t\t\t\t\t\t\tgetTransactionDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
473
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
474
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
475
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
476
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
477
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
478
+ name=\"transactionHistory\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
479
+ name=\"archiveSearch\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
480
+ name=\"getTransactionDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
481
+ element is the response for the\r\n\t\t\t\t\t\t\tgetTransactionDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
482
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
483
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
484
+ name=\"payment\" nillable=\"true\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
485
+ name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
486
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
487
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
488
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
489
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
490
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"associatedTransactionsList\"
491
+ nillable=\"true\" type=\"tns1:associatedTransactionsList\"/>\r\n\t\t\t\t\t\t<element
492
+ name=\"statusHistoryList\" nillable=\"true\" type=\"tns1:statusHistoryList\"/>\r\n\t\t\t\t\t\t<element
493
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
494
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
495
+ minOccurs=\"0\" name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
496
+ name=\"bankAccountData\" nillable=\"true\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
497
+ name=\"transactionsSearchRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
498
+ element is the request for the\r\n\t\t\t\t\t\t\ttransactionsSearch method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
499
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
500
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
501
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
502
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
503
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
504
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
505
+ name=\"authorizationNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
506
+ name=\"returnCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
507
+ name=\"paymentMean\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
508
+ name=\"transactionType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
509
+ name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
510
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
511
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
512
+ name=\"cardNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
513
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
514
+ name=\"minAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
515
+ name=\"maxAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
516
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
517
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
518
+ name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
519
+ name=\"transactionsSearchResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
520
+ element is the response for the\r\n\t\t\t\t\t\t\ttransactionsSearch method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
521
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
522
+ name=\"transactionList\" nillable=\"true\" type=\"tns1:transactionList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
523
+ name=\"verifyEnrollmentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
524
+ element is the request for the\r\n\t\t\t\t\t\t\tverifyEnrollment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
525
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
526
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
527
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
528
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
529
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
530
+ name=\"userAgent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
531
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
532
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
533
+ minOccurs=\"0\" name=\"generateVirtualCvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
534
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
535
+ name=\"verifyEnrollmentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
536
+ element is the reponse from the\r\n\t\t\t\t\t\t\tverifyEnrollment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
537
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
538
+ name=\"actionUrl\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
539
+ name=\"actionMethod\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
540
+ name=\"pareqFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
541
+ name=\"pareqFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
542
+ name=\"termUrlName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
543
+ name=\"termUrlValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
544
+ name=\"mdFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
545
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
546
+ name=\"mpiResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
547
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
548
+ minOccurs=\"0\" name=\"virtualCvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
549
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
550
+ name=\"verifyAuthenticationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
551
+ element is the request for the\r\n\t\t\t\t\t\t\tdoAuthentication method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
552
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
553
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
554
+ name=\"pares\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
555
+ name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
556
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
557
+ name=\"verifyAuthenticationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
558
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoAuthentication method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
559
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
560
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
561
+ name=\"mpiResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
562
+ name=\"createMerchantRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
563
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateMerchant\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
564
+ name=\"corporateName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
565
+ name=\"publicName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
566
+ name=\"currency\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>currency
567
+ in ISO 4217 numeric format\r\n\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t\t<restriction
568
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t<length value=\"3\"/>\r\n\t\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
569
+ name=\"nationalID\" nillable=\"true\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>unique
570
+ national merchant ID</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<choice>\r\n\t\t\t\t\t\t\t\t\t<element
571
+ name=\"SIRET\">\r\n\t\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t\t<documentation>Systeme
572
+ d identification du Repertoire des\r\n\t\t\t\t\t\t\t\t\t\t\t\tENtreprises\r\n\t\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t\t\t\t\t<restriction
573
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<length value=\"14\"/>\r\n\t\t\t\t\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t\t\t\t<element
574
+ name=\"other\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t\t<documentation>to
575
+ use if country is not France\r\n\t\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t\t\t</choice>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
576
+ name=\"distributor\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Payline
577
+ Distributor ID</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
578
+ name=\"merchantAddress\" nillable=\"true\" type=\"tns1:addressInterlocutor\"/>\r\n\t\t\t\t\t\t<element
579
+ name=\"businessInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
580
+ name=\"technicalInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
581
+ name=\"subscription\" nillable=\"true\" type=\"tns1:subscription\"/>\r\n\t\t\t\t\t\t<element
582
+ name=\"poss\" nillable=\"true\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>list
583
+ of point of sell</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
584
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"pos\" nillable=\"true\" type=\"tns1:pointOfSell\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
585
+ name=\"partner\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Billing
586
+ partner. 1:monext, 2:cetib, 3:payline.com\r\n\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
587
+ name=\"createMerchantResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
588
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateMerchant\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
589
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
590
+ name=\"connectionData\" nillable=\"false\" type=\"tns1:connectionData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
591
+ name=\"doScoringChequeRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
592
+ element is the request for the\r\n\t\t\t\t\t\t\tdoScoringCheque\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
593
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
594
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
595
+ name=\"cheque\" nillable=\"false\" type=\"tns1:cheque\"/>\r\n\t\t\t\t\t\t<element
596
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
597
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
598
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
599
+ name=\"doScoringChequeResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
600
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoScoringCheque method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
601
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
602
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
603
+ name=\"scoringCheque\" nillable=\"false\" type=\"tns1:scoringCheque\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
604
+ name=\"getEncryptionKeyRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
605
+ element is the request for the\r\n\t\t\t\t\t\t\tgetEncryptionKeyRequest method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
606
+ name=\"getEncryptionKeyResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
607
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetEncryptionKeyResponse
608
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
609
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
610
+ name=\"key\" nillable=\"false\" type=\"tns1:key\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
611
+ name=\"doReAuthorizationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
612
+ element is the request for the\r\n\t\t\t\t\t\t\tdoReAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
613
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
614
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
615
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
616
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
617
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
618
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
619
+ name=\"doReAuthorizationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
620
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoReAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
621
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
622
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
623
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
624
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
625
+ name=\"getMerchantSettingsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
626
+ element is the request for the\r\n\t\t\t\t\t\t\tgetMerchantSettings method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
627
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
628
+ name=\"getMerchantSettingsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
629
+ element is the response from the\r\n\t\t\t\t\t\t\tgetMerchantSettings method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
630
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
631
+ name=\"listPointOfSell\" nillable=\"false\">\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
632
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"pointOfSell\" type=\"tns1:pointOfSell\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
633
+ name=\"getBalanceRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
634
+ element is the request for the\r\n\t\t\t\t\t\t\tgetBalance\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
635
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
636
+ name=\"cardID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
637
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
638
+ name=\"getBalanceResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
639
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetBalance\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
640
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
641
+ name=\"balance\" nillable=\"false\">\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
642
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"amount\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t\t<element
643
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"currency\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
644
+ name=\"crdproduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
645
+ name=\"crdprogram\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
646
+ name=\"crddesign\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
647
+ name=\"getAlertDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\t\t\t\t\r\n\t\t\t\t\t\t<element
648
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"version\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\t\t\t\t\t\r\n\t\t\t\t\t\t<element
649
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
650
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
651
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
652
+ minOccurs=\"1\" name=\"TransactionDate\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
653
+ name=\"getAlertDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
654
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
655
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
656
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"ExplanationCode\" nillable=\"true\"
657
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
658
+ minOccurs=\"0\" name=\"ExplanationLabel\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
659
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionStatus\" nillable=\"false\"
660
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
661
+ minOccurs=\"1\" name=\"MerchantLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
662
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
663
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
664
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
665
+ minOccurs=\"1\" name=\"SecurityLevel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
666
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
667
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
668
+ minOccurs=\"1\" name=\"TransactionAmount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
669
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionCurrency\" nillable=\"false\"
670
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
671
+ minOccurs=\"1\" name=\"PaymentType\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
672
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PaymentData\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
673
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"HolderName\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
674
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ReferenceData\" nillable=\"false\"
675
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
676
+ minOccurs=\"0\" name=\"CustomerId\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
677
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"BuyerFirstName\" nillable=\"true\"
678
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
679
+ minOccurs=\"0\" name=\"BuyerLastName\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
680
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"CustomerTransHist\" nillable=\"false\"
681
+ type=\"tns1:CustomerTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
682
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PaymentMeansTransHist\" nillable=\"false\"
683
+ type=\"tns1:PaymentMeansTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
684
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertsTransHist\" nillable=\"false\"
685
+ type=\"tns1:AlertsTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
686
+ name=\"getTokenRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
687
+ name=\"cardNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
688
+ name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
689
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
690
+ name=\"getTokenResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
691
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
692
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
693
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"maskedCardNumber\" nillable=\"false\"
694
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
695
+ name=\"expirationDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
696
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"virtualCard\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
697
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardType\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
698
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardProduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
699
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"acceptanceNetwork\" nillable=\"false\"
700
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
701
+ name=\"bank\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
702
+ name=\"unBlockRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
703
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
704
+ name=\"transactionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
705
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
706
+ name=\"unBlockResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
707
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
708
+ name=\"updatePaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
709
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
710
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
711
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
712
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurringForUpdate\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
713
+ name=\"updatePaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
714
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
715
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
716
+ name=\"isDisabled\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
717
+ name=\"disableDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
718
+ name=\"privateDataList\" nillable=\"false\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
719
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
720
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
721
+ name=\"getBillingRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
722
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
723
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
724
+ name=\"billingRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
725
+ name=\"getBillingRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
726
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
727
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
728
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
729
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
730
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
731
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
732
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
733
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
734
+ name=\"updateBillingRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
735
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
736
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
737
+ name=\"billingRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
738
+ name=\"billingRecordForUpdate\" nillable=\"false\" type=\"tns1:billingRecordForUpdate\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
739
+ name=\"updateBillingRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
740
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
741
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
742
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
743
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
744
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
745
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
746
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
747
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
748
+ name=\"doBankTransferRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
749
+ element is the request for the doBankTransfer\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
750
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
751
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
752
+ name=\"creditor\" nillable=\"false\" type=\"tns1:creditor\"/>\r\n\t\t\t\t\t\t<element
753
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
754
+ name=\"transactionID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
755
+ name=\"orderID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
756
+ name=\"doBankTransferResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
757
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoBankTransfer method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
758
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
759
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t\r\n\t\t</schema>\r\n
760
+ \ <schema elementFormDefault=\"qualified\" targetNamespace=\"http://obj.ws.payline.experian.com\"
761
+ xmlns=\"http://www.w3.org/2001/XMLSchema\">\r\n\t\t\t<complexType name=\"result\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
762
+ element contains information about the\r\n\t\t\t\t\t\tprocess\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
763
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
764
+ minOccurs=\"0\" name=\"shortMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
765
+ minOccurs=\"0\" name=\"longMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
766
+ minOccurs=\"0\" name=\"partnerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
767
+ minOccurs=\"0\" name=\"partnerCodeLabel\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
768
+ name=\"cardOut\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
769
+ name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
770
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
771
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
772
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
773
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
774
+ name=\"extendedCardType\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
775
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
776
+ minOccurs=\"0\" name=\"isCvd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
777
+ minOccurs=\"0\" name=\"bank\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
778
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
779
+ minOccurs=\"0\" name=\"network\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
780
+ minOccurs=\"0\" name=\"product\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
781
+ name=\"order\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
782
+ element contains information about the\r\n\t\t\t\t\t\torder\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
783
+ name=\"ref\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
784
+ minOccurs=\"0\" name=\"origin\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
785
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
786
+ minOccurs=\"0\" name=\"taxes\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
787
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
788
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
789
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
790
+ minOccurs=\"0\" name=\"details\" nillable=\"true\" type=\"tns1:details\"/>\r\n\t\t\t\t\t<element
791
+ minOccurs=\"0\" name=\"deliveryTime\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
792
+ minOccurs=\"0\" name=\"deliveryMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
793
+ minOccurs=\"0\" name=\"deliveryExpectedDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
794
+ minOccurs=\"0\" name=\"deliveryExpectedDelay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
795
+ name=\"key\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
796
+ element contains information about the\r\n\t\t\t\t\t\tencryptionKey\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
797
+ name=\"keyId\" nillable=\"false\" type=\"xsd:integer\"/>\r\n\t\t\t\t\t<element
798
+ name=\"modulus\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
799
+ name=\"publicExponent\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
800
+ name=\"expirationDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
801
+ name=\"details\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
802
+ element contains an array of orderDetail\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
803
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"details\" type=\"tns1:orderDetail\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
804
+ name=\"orderDetail\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
805
+ element contains information about the\r\n\t\t\t\t\t\torder\r\n\t\t\t\t\t\tproduct\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
806
+ minOccurs=\"0\" name=\"ref\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
807
+ minOccurs=\"0\" name=\"price\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
808
+ minOccurs=\"0\" name=\"quantity\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
809
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
810
+ minOccurs=\"0\" name=\"category\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
811
+ minOccurs=\"0\" name=\"brand\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
812
+ minOccurs=\"0\" name=\"subcategory1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
813
+ minOccurs=\"0\" name=\"subcategory2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
814
+ minOccurs=\"0\" name=\"additionalData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
815
+ minOccurs=\"0\" name=\"taxRate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
816
+ name=\"privateData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
817
+ element contains information about the\r\n\t\t\t\t\t\tmerchant\r\n\t\t\t\t\t\tprivate
818
+ data\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
819
+ name=\"key\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
820
+ name=\"value\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
821
+ name=\"transaction\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
822
+ element contains information about the\r\n\t\t\t\t\t\ttransaction\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
823
+ name=\"id\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
824
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
825
+ minOccurs=\"0\" name=\"isDuplicated\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
826
+ name=\"isPossibleFraud\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
827
+ minOccurs=\"0\" name=\"fraudResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
828
+ minOccurs=\"0\" name=\"fraudResultDetails\" nillable=\"true\" type=\"tns1:fraudResultDetails\"/>\r\n\t\t\t\t\t<element
829
+ minOccurs=\"0\" name=\"explanation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
830
+ minOccurs=\"0\" name=\"threeDSecure\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
831
+ minOccurs=\"0\" name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
832
+ minOccurs=\"0\" name=\"score\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
833
+ minOccurs=\"0\" name=\"externalWalletType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
834
+ minOccurs=\"0\" name=\"externalWalletContractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
835
+ minOccurs=\"0\" name=\"partnerAdditionalData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
836
+ name=\"fraudResultDetails\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
837
+ element contains information about the\r\n\t\t\t\t\t\tfraud\r\n\t\t\t\t\t\tresult
838
+ details\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
839
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
840
+ name=\"shortMessage\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
841
+ name=\"longMessage\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
842
+ name=\"payment\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
843
+ element contains information about the\r\n\t\t\t\t\t\tpayment\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
844
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
845
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
846
+ name=\"action\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
847
+ name=\"mode\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
848
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
849
+ minOccurs=\"0\" name=\"differedActionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
850
+ minOccurs=\"0\" name=\"method\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
851
+ name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
852
+ minOccurs=\"0\" name=\"cardBrand\" nillable=\"true\" type=\"string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
853
+ name=\"authorization\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
854
+ element contains information about the\r\n\t\t\t\t\t\tauthorization\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
855
+ name=\"number\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
856
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
857
+ name=\"paymentData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
858
+ element contains information about the paymentData\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
859
+ minOccurs=\"0\" name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
860
+ minOccurs=\"0\" name=\"network\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
861
+ minOccurs=\"0\" name=\"tokenData\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
862
+ name=\"card\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
863
+ element contains information about the card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
864
+ minOccurs=\"0\" name=\"encryptionKeyId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
865
+ minOccurs=\"0\" name=\"encryptedData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
866
+ minOccurs=\"0\" name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
867
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
868
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
869
+ minOccurs=\"0\" name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
870
+ minOccurs=\"0\" name=\"ownerBirthdayDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
871
+ minOccurs=\"0\" name=\"password\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
872
+ minOccurs=\"0\" name=\"cardPresent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
873
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
874
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
875
+ minOccurs=\"0\" name=\"paymentData\" nillable=\"true\" type=\"tns1:paymentData\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
876
+ name=\"buyer\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
877
+ element contains information about the\r\n\t\t\t\t\t\tbuyer\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
878
+ name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
879
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
880
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
881
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
882
+ name=\"shippingAdress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
883
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
884
+ name=\"accountCreateDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
885
+ name=\"accountAverageAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
886
+ name=\"accountOrderCount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
887
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
888
+ name=\"walletDisplayed\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
889
+ name=\"walletSecured\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
890
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
891
+ name=\"ip\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
892
+ name=\"mobilePhone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
893
+ name=\"customerId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
894
+ name=\"legalStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
895
+ name=\"legalDocument\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
896
+ name=\"birthDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
897
+ name=\"fingerprintID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
898
+ name=\"deviceFingerprint\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
899
+ name=\"isBot\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
900
+ name=\"isIncognito\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
901
+ name=\"isBehindProxy\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
902
+ name=\"isFromTor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
903
+ name=\"isEmulator\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
904
+ name=\"isRooted\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
905
+ name=\"hasTimezoneMismatch\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
906
+ name=\"owner\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
907
+ element contains information about the\r\n\t\t\t\t\t\towner\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
908
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
909
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
910
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:addressOwner\"/>\r\n\t\t\t\t\t<element
911
+ name=\"issueCardDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
912
+ name=\"address\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
913
+ element contains information about the\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
914
+ minOccurs=\"0\" name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
915
+ minOccurs=\"0\" name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
916
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
917
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
918
+ minOccurs=\"0\" name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
919
+ minOccurs=\"0\" name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
920
+ minOccurs=\"0\" name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
921
+ minOccurs=\"0\" name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
922
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
923
+ minOccurs=\"0\" name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
924
+ minOccurs=\"0\" name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
925
+ minOccurs=\"0\" name=\"county\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
926
+ minOccurs=\"0\" name=\"phoneType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
927
+ name=\"addressOwner\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
928
+ element contains information about the\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
929
+ name=\"street\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
930
+ name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
931
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
932
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
933
+ name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
934
+ name=\"capture\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
935
+ element contains information about the\r\n\t\t\t\t\t\tcapture\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
936
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
937
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
938
+ name=\"refund\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
939
+ element contains information about the\r\n\t\t\t\t\t\trefund\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
940
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
941
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
942
+ name=\"selectedContractList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
943
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
944
+ maxOccurs=\"25\" minOccurs=\"1\" name=\"selectedContract\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
945
+ name=\"privateDataList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
946
+ array of private data\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
947
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"privateData\" type=\"tns1:privateData\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
948
+ name=\"contractNumberWalletList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
949
+ array of contract number of a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
950
+ maxOccurs=\"99\" minOccurs=\"0\" name=\"contractNumberWallet\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
951
+ name=\"cardsList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
952
+ array of cards\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
953
+ maxOccurs=\"99\" minOccurs=\"0\" name=\"cards\" type=\"tns1:cards\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
954
+ name=\"captureAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
955
+ array of authorization to capture\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
956
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"capture\" type=\"tns1:capture\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
957
+ name=\"refundAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
958
+ array of authorization to refund\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
959
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"refund\" type=\"tns1:refund\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
960
+ name=\"resetAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
961
+ array of authorization to reset\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
962
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"transactionID\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
963
+ name=\"failedListObject\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
964
+ array of mass element failed\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
965
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"failedObject\" type=\"tns1:transaction\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
966
+ name=\"failedObject\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
967
+ element contains failedObject\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
968
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
969
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
970
+ name=\"recurring\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
971
+ element contains element for recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
972
+ name=\"firstAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
973
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
974
+ name=\"billingCycle\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
975
+ name=\"billingLeft\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
976
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
977
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
978
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
979
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
980
+ name=\"amountModificationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
981
+ name=\"recurringForUpdate\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
982
+ element contains element for update a recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
983
+ name=\"billingLeft\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
984
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
985
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
986
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
987
+ name=\"amountModificationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
988
+ name=\"billingRecord\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
989
+ element contains element for a billing\r\n\t\t\t\t\t\trecord\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
990
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
991
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
992
+ name=\"status\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
993
+ minOccurs=\"0\" name=\"result\" nillable=\"true\" type=\"tns1:result\"/>\r\n\t\t\t\t\t<element
994
+ minOccurs=\"0\" name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t<element
995
+ minOccurs=\"0\" name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t<element
996
+ minOccurs=\"0\" name=\"nbTry\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
997
+ minOccurs=\"0\" name=\"rank\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
998
+ name=\"billingRecordList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
999
+ array of billing record\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1000
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"billingRecord\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t\r\n\t\t\t<complexType
1001
+ name=\"billingRecordForUpdate\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1002
+ element contains element for update a recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1003
+ name=\"date\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1004
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1005
+ name=\"status\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1006
+ name=\"executionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t\r\n\t\t\t<complexType
1007
+ name=\"wallet\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1008
+ element contains element for a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1009
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1010
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1011
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1012
+ minOccurs=\"0\" name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1013
+ minOccurs=\"0\" name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
1014
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
1015
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1016
+ minOccurs=\"0\" name=\"default\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1017
+ minOccurs=\"0\" name=\"cardStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1018
+ minOccurs=\"0\" name=\"cardBrand\" nillable=\"true\" type=\"string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1019
+ name=\"cards\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1020
+ element contains element for a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1021
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1022
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1023
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1024
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1025
+ name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
1026
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
1027
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1028
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1029
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1030
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1031
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t<element
1032
+ name=\"default\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1033
+ name=\"walletIdList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1034
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1035
+ maxOccurs=\"500\" minOccurs=\"1\" name=\"walletId\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1036
+ name=\"transactionList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1037
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1038
+ maxOccurs=\"5000\" minOccurs=\"0\" name=\"transaction\" type=\"tns1:transaction\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1039
+ name=\"authentication3DSecure\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1040
+ element contains element for a 3DSecure\r\n\t\t\t\t\t\ttransaction\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1041
+ minOccurs=\"0\" name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1042
+ minOccurs=\"0\" name=\"pares\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1043
+ minOccurs=\"0\" name=\"xid\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1044
+ minOccurs=\"0\" name=\"eci\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1045
+ minOccurs=\"0\" name=\"cavv\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1046
+ minOccurs=\"0\" name=\"cavvAlgorithm\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1047
+ minOccurs=\"0\" name=\"vadsResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1048
+ minOccurs=\"0\" name=\"typeSecurisation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1049
+ minOccurs=\"0\" name=\"PaResStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1050
+ minOccurs=\"0\" name=\"VeResStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1051
+ name=\"connectionData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1052
+ element contains the merchant connection\r\n\t\t\t\t\t\tparameters\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1053
+ name=\"merchantId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1054
+ name=\"userId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1055
+ name=\"password\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1056
+ name=\"secretQuestion\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1057
+ name=\"secretAnswer\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1058
+ name=\"scoringCheque\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1059
+ element contains the scoring cheque parameters\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1060
+ name=\"chequeNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1061
+ name=\"additionalDataResponse\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1062
+ name=\"terminalId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1063
+ name=\"additionalPrivateData\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1064
+ name=\"addressInterlocutor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1065
+ element contains information about Interlocutor\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1066
+ name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1067
+ name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1068
+ name=\"city\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1069
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1070
+ name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1071
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1072
+ name=\"interlocutor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1073
+ element contains information about Interlocutor\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1074
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1075
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1076
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1077
+ name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1078
+ name=\"mobile\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1079
+ name=\"fax\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1080
+ name=\"addressInterlocutor\" nillable=\"true\" type=\"tns1:addressInterlocutor\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1081
+ name=\"option\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1082
+ array of subscribed options\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1083
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"subscribed\"
1084
+ nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"endDate\"
1085
+ nillable=\"true\" type=\"xsd:dateTime\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1086
+ name=\"subscription\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1087
+ element contains information about the payline\r\n\t\t\t\t\t\tpackage subscribed
1088
+ by the merchant\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1089
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element maxOccurs=\"unbounded\"
1090
+ minOccurs=\"0\" name=\"option\" type=\"tns1:option\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1091
+ name=\"iban\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1092
+ element contains IBAN information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1093
+ name=\"CountryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1094
+ name=\"checkKey\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1095
+ name=\"BBAN\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1096
+ name=\"BIC\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1097
+ name=\"rib\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1098
+ element contains RIB information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1099
+ name=\"tellerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1100
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1101
+ name=\"key\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1102
+ name=\"bankAccount\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1103
+ element contains bankAccount information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1104
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1105
+ name=\"bankNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1106
+ name=\"iban\" nillable=\"true\" type=\"tns1:iban\"/>\r\n\t\t\t\t\t<element
1107
+ name=\"rib\" nillable=\"true\" type=\"tns1:rib\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1108
+ name=\"bankAccountData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1109
+ element contains bank Account information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1110
+ name=\"countryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1111
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1112
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1113
+ name=\"key\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1114
+ name=\"technicalData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1115
+ element contains technical data used to define\r\n\t\t\t\t\t\tacquirer service\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1116
+ name=\"terminalNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1117
+ name=\"GTInstance\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1118
+ name=\"paymentProfil\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1119
+ name=\"contract\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1120
+ element contains all information about contract\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1121
+ name=\"cardType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1122
+ minOccurs=\"0\" name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1123
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1124
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1125
+ default=\"Manual\" name=\"settlementType\">\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
1126
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<enumeration value=\"Manual\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
1127
+ value=\"Now\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"1Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
1128
+ value=\"2Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"3Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
1129
+ value=\"4Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"5Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
1130
+ value=\"6Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"7Day\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1131
+ name=\"maxAmountPerTransaction\" nillable=\"true\" type=\"xsd:int\"/>\r\n\t\t\t\t\t<element
1132
+ name=\"technicalData\" nillable=\"true\" type=\"tns1:technicalData\"/>\r\n\t\t\t\t\t<element
1133
+ name=\"bankAccount\" nillable=\"true\" type=\"tns1:bankAccount\"/>\r\n\t\t\t\t\t<element
1134
+ name=\"acquirerInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t<element
1135
+ name=\"description\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1136
+ name=\"logoEnable\" nillable=\"false\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1137
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"smallLogoMime\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1138
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"smallLogo\" type=\"xsd:base64Binary\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1139
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"normalLogoMime\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1140
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"normalLogo\" type=\"xsd:base64Binary\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1141
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"contribution\" type=\"tns1:contribution\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1142
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"enrolment3DS\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1143
+ name=\"customPaymentPageCode\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1144
+ element contains all information about\r\n\t\t\t\t\t\tcustomPaymentPageCode\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1145
+ name=\"code\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1146
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1147
+ name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1148
+ name=\"ticketSend\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1149
+ element contains information e-ticket\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1150
+ name=\"toBuyer\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1151
+ name=\"toMerchant\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1152
+ name=\"pointOfSell\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1153
+ element contains all information about point of\r\n\t\t\t\t\t\tsell\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1154
+ name=\"siret\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1155
+ name=\"codeMcc\" nillable=\"true\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Merchant
1156
+ Category Code</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
1157
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<xsd:length value=\"4\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1158
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1159
+ name=\"webmasterEmail\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1160
+ minOccurs=\"0\" name=\"comments\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1161
+ name=\"webstoreURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1162
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1163
+ minOccurs=\"0\" name=\"privateLifeURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1164
+ minOccurs=\"0\" name=\"saleCondURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1165
+ minOccurs=\"0\" name=\"buyerMustAcceptSaleCond\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1166
+ minOccurs=\"0\" name=\"endOfPaymentRedirection\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1167
+ name=\"ticketSend\" nillable=\"true\" type=\"tns1:ticketSend\"/>\r\n\t\t\t\t\t<element
1168
+ name=\"contracts\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1169
+ of contract</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
1170
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"contract\" type=\"tns1:contract\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1171
+ name=\"virtualTerminal\" nillable=\"true\" type=\"tns1:virtualTerminal\"/>\r\n\t\t\t\t\t<element
1172
+ name=\"customPaymentPageCodeList\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1173
+ of custom payment page code</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
1174
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"customPaymentPageCode\" type=\"tns1:customPaymentPageCode\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1175
+ name=\"virtualTerminal\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>virtualTerminal</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1176
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element default=\"10\"
1177
+ name=\"inactivityDelay\" type=\"xsd:int\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>http
1178
+ session timeout delay</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1179
+ minOccurs=\"0\" name=\"logo\" type=\"xsd:string\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>path
1180
+ to logo</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1181
+ name=\"functions\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1182
+ of functions</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
1183
+ maxOccurs=\"unbounded\" name=\"function\" type=\"tns1:virtualTerminalFunction\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1184
+ name=\"virtualTerminalFunction\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>functions
1185
+ availbe in virtual terminal\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1186
+ name=\"function\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Please
1187
+ refer to Payline documentation\r\n\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
1188
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<enumeration value=\"simplePayment\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
1189
+ value=\"walletCreation\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"nXPayment\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1190
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<sequence minOccurs=\"0\">\r\n\t\t\t\t\t\t<element
1191
+ maxOccurs=\"unbounded\" name=\"functionParameter\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Value
1192
+ of parameter</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<attribute
1193
+ name=\"id\">\r\n\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t<documentation>Parameter
1194
+ ID. Refer to payline documentation\r\n\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t</attribute>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1195
+ name=\"cheque\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1196
+ element contains information about the\r\n\t\t\t\t\t\tcheque\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1197
+ name=\"number\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1198
+ name=\"contribution\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1199
+ element contains all information about\r\n\t\t\t\t\t\tcontrinution\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1200
+ name=\"enable\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"type\"
1201
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"value\"
1202
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"nbFreeTransaction\"
1203
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"minAmountTransaction\"
1204
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"maxAmountTransaction\"
1205
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1206
+ name=\"associatedTransactions\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1207
+ element contains information about the\r\n\t\t\t\t\t\tassociated transactions\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1208
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1209
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1210
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
1211
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
1212
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
1213
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1214
+ name=\"associatedTransactionsList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1215
+ array of associatedTransactions\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1216
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"associatedTransactions\" type=\"tns1:associatedTransactions\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1217
+ name=\"statusHistory\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1218
+ element contains information about the\r\n\t\t\t\t\t\tstatus\r\n\t\t\t\t\t\tHistory\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1219
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1220
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
1221
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"fees\"
1222
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
1223
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
1224
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1225
+ name=\"statusHistoryList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1226
+ array of statusHistory\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1227
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"statusHistory\" type=\"tns1:statusHistory\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n<complexType
1228
+ name=\"paymentAdditional\">\r\n\t<annotation>\r\n\t\t<documentation>\r\n\t\t\tThis
1229
+ element contains information about the\r\n\t\t\tpaymentAdditional\r\n\t\t</documentation>\r\n\t</annotation>\r\n\t<sequence>\r\n\t\t<element
1230
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t<element
1231
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t<element
1232
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t<element
1233
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t<element
1234
+ minOccurs=\"0\" name=\"card\" nillable=\"true\" type=\"tns1:cardOut\"/>\r\n\t\t<element
1235
+ minOccurs=\"0\" name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t</sequence>\r\n</complexType>\r\n\r\n\t\t\t<complexType
1236
+ name=\"paymentAdditionalList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1237
+ array of paymentAdditionalList\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1238
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"paymentAdditional\" type=\"tns1:paymentAdditional\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1239
+ name=\"CustomerTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1240
+ array of CustomerTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1241
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"CustomerTrans\" type=\"tns1:CustomerTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1242
+ name=\"CustomerTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1243
+ minOccurs=\"1\" name=\"IsLCLFAlerted\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1244
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
1245
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1246
+ minOccurs=\"1\" name=\"ReferenceOrder\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1247
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"CardCode\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1248
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
1249
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1250
+ minOccurs=\"1\" name=\"Amount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1251
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"Status\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1252
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1253
+ name=\"PaymentMeansTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1254
+ array of PaymentMeansTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1255
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"PaymentMeansTrans\" type=\"tns1:PaymentMeansTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1256
+ name=\"PaymentMeansTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1257
+ minOccurs=\"1\" name=\"IsLCLFAlerted\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1258
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
1259
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1260
+ minOccurs=\"1\" name=\"ReferenceOrder\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1261
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"CustomerData\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1262
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
1263
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1264
+ minOccurs=\"1\" name=\"Amount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1265
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"Status\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1266
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1267
+ name=\"AlertsTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
1268
+ array of AlertsTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1269
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"AlertsTrans\" type=\"tns1:AlertsTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1270
+ name=\"AlertsTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1271
+ minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1272
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExplanationLabel\" nillable=\"false\"
1273
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1274
+ minOccurs=\"1\" name=\"ExplanationCode\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1275
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"RuleName\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1276
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"RuleAction\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
1277
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"RuleCriteria\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
1278
+ name=\"creditor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
1279
+ element contains information about the\r\n\t\t\t\t\t\tcreditor\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
1280
+ name=\"bic\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1281
+ name=\"iban\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1282
+ name=\"name\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t</schema>\r\n
1283
+ \ </wsdl:types>\r\n <wsdl:message name=\"getTransactionDetailsRequest\">\r\n
1284
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsRequest\">\r\n
1285
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentRequest\">\r\n
1286
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentRequest\">\r\n
1287
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitRequest\">\r\n
1288
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitRequest\">\r\n </wsdl:part>\r\n
1289
+ \ </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentResponse\">\r\n
1290
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentResponse\">\r\n
1291
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureResponse\">\r\n
1292
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureResponse\">\r\n
1293
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentRequest\">\r\n
1294
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentRequest\">\r\n
1295
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletRequest\">\r\n
1296
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletRequest\">\r\n
1297
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationResponse\">\r\n
1298
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationResponse\">\r\n
1299
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsResponse\">\r\n
1300
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsResponse\">\r\n
1301
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletRequest\">\r\n
1302
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletRequest\">\r\n
1303
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceResponse\">\r\n
1304
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceResponse\">\r\n
1305
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationRequest\">\r\n
1306
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationRequest\">\r\n
1307
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentRequest\">\r\n
1308
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentRequest\">\r\n
1309
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebWalletRequest\">\r\n
1310
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebWalletRequest\">\r\n
1311
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationResponse\">\r\n
1312
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationResponse\">\r\n
1313
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeRequest\">\r\n
1314
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeRequest\">\r\n
1315
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferRequest\">\r\n
1316
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferRequest\">\r\n
1317
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRefundRequest\">\r\n
1318
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRefundRequest\">\r\n </wsdl:part>\r\n
1319
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassResetRequest\">\r\n <wsdl:part
1320
+ name=\"parameters\" element=\"impl:doMassResetRequest\">\r\n </wsdl:part>\r\n
1321
+ \ </wsdl:message>\r\n <wsdl:message name=\"getWebWalletResponse\">\r\n <wsdl:part
1322
+ name=\"parameters\" element=\"impl:getWebWalletResponse\">\r\n </wsdl:part>\r\n
1323
+ \ </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsRequest\">\r\n
1324
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsRequest\">\r\n
1325
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceRequest\">\r\n
1326
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceRequest\">\r\n
1327
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletRequest\">\r\n
1328
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletRequest\">\r\n
1329
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeResponse\">\r\n
1330
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeResponse\">\r\n
1331
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordResponse\">\r\n
1332
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordResponse\">\r\n
1333
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordRequest\">\r\n
1334
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordRequest\">\r\n
1335
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletRequest\">\r\n
1336
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletRequest\">\r\n
1337
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockRequest\">\r\n
1338
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockRequest\">\r\n </wsdl:part>\r\n
1339
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassRefundRequest\">\r\n <wsdl:part
1340
+ name=\"parameters\" element=\"impl:doMassRefundRequest\">\r\n </wsdl:part>\r\n
1341
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletRequest\">\r\n <wsdl:part
1342
+ name=\"parameters\" element=\"impl:enableWalletRequest\">\r\n </wsdl:part>\r\n
1343
+ \ </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentRequest\">\r\n
1344
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentRequest\">\r\n
1345
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletResponse\">\r\n
1346
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletResponse\">\r\n
1347
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentResponse\">\r\n
1348
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentResponse\">\r\n
1349
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationRequest\">\r\n
1350
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationRequest\">\r\n
1351
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentRequest\">\r\n
1352
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentRequest\">\r\n
1353
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletResponse\">\r\n
1354
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletResponse\">\r\n
1355
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitResponse\">\r\n
1356
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitResponse\">\r\n </wsdl:part>\r\n
1357
+ \ </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordResponse\">\r\n
1358
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordResponse\">\r\n
1359
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferResponse\">\r\n
1360
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferResponse\">\r\n
1361
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassRefundResponse\">\r\n
1362
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassRefundResponse\">\r\n
1363
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletRequest\">\r\n
1364
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletRequest\">\r\n
1365
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureRequest\">\r\n
1366
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureRequest\">\r\n
1367
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantRequest\">\r\n
1368
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantRequest\">\r\n
1369
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyResponse\">\r\n
1370
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyResponse\">\r\n
1371
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantResponse\">\r\n
1372
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantResponse\">\r\n
1373
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsRequest\">\r\n
1374
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsRequest\">\r\n
1375
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsRequest\">\r\n
1376
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsRequest\">\r\n
1377
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletResponse\">\r\n
1378
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletResponse\">\r\n
1379
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentResponse\">\r\n
1380
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentResponse\">\r\n
1381
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletResponse\">\r\n
1382
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletResponse\">\r\n
1383
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletRequest\">\r\n
1384
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletRequest\">\r\n
1385
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassResetResponse\">\r\n
1386
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassResetResponse\">\r\n
1387
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditResponse\">\r\n
1388
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditResponse\">\r\n
1389
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordResponse\">\r\n
1390
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordResponse\">\r\n
1391
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchRequest\">\r\n
1392
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchRequest\">\r\n
1393
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordRequest\">\r\n
1394
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordRequest\">\r\n
1395
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getTokenResponse\">\r\n
1396
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTokenResponse\">\r\n
1397
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsResponse\">\r\n
1398
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsResponse\">\r\n
1399
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentResponse\">\r\n
1400
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentResponse\">\r\n
1401
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordRequest\">\r\n
1402
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordRequest\">\r\n
1403
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationRequest\">\r\n
1404
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationRequest\">\r\n
1405
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletRequest\">\r\n
1406
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletRequest\">\r\n
1407
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyRequest\">\r\n
1408
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyRequest\">\r\n
1409
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureResponse\">\r\n
1410
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureResponse\">\r\n
1411
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetResponse\">\r\n
1412
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetResponse\">\r\n </wsdl:part>\r\n
1413
+ \ </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletResponse\">\r\n
1414
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletResponse\">\r\n
1415
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletResponse\">\r\n
1416
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletResponse\">\r\n
1417
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockResponse\">\r\n
1418
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockResponse\">\r\n </wsdl:part>\r\n
1419
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsResponse\">\r\n
1420
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsResponse\">\r\n
1421
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationResponse\">\r\n
1422
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationResponse\">\r\n
1423
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditRequest\">\r\n
1424
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditRequest\">\r\n </wsdl:part>\r\n
1425
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTokenRequest\">\r\n <wsdl:part
1426
+ name=\"parameters\" element=\"impl:getTokenRequest\">\r\n </wsdl:part>\r\n
1427
+ \ </wsdl:message>\r\n <wsdl:message name=\"doRefundResponse\">\r\n <wsdl:part
1428
+ name=\"parameters\" element=\"impl:doRefundResponse\">\r\n </wsdl:part>\r\n
1429
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTransactionDetailsResponse\">\r\n
1430
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsResponse\">\r\n
1431
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsResponse\">\r\n
1432
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsResponse\">\r\n
1433
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureRequest\">\r\n
1434
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureRequest\">\r\n
1435
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordRequest\">\r\n
1436
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordRequest\">\r\n
1437
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordRequest\">\r\n
1438
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordRequest\">\r\n
1439
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletResponse\">\r\n
1440
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletResponse\">\r\n
1441
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordResponse\">\r\n
1442
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordResponse\">\r\n
1443
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentResponse\">\r\n
1444
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentResponse\">\r\n
1445
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsRequest\">\r\n
1446
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsRequest\">\r\n
1447
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetRequest\">\r\n
1448
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetRequest\">\r\n </wsdl:part>\r\n
1449
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletResponse\">\r\n <wsdl:part
1450
+ name=\"parameters\" element=\"impl:enableWalletResponse\">\r\n </wsdl:part>\r\n
1451
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsResponse\">\r\n
1452
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsResponse\">\r\n
1453
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordResponse\">\r\n
1454
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordResponse\">\r\n
1455
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchResponse\">\r\n
1456
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchResponse\">\r\n
1457
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsRequest\">\r\n
1458
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsRequest\">\r\n </wsdl:part>\r\n
1459
+ \ </wsdl:message>\r\n <wsdl:portType name=\"WebPaymentAPI\">\r\n <wsdl:operation
1460
+ name=\"doWebPayment\">\r\n <wsdl:input name=\"doWebPaymentRequest\" message=\"impl:doWebPaymentRequest\">\r\n
1461
+ \ </wsdl:input>\r\n <wsdl:output name=\"doWebPaymentResponse\" message=\"impl:doWebPaymentResponse\">\r\n
1462
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebPaymentDetails\">\r\n
1463
+ \ <wsdl:input name=\"getWebPaymentDetailsRequest\" message=\"impl:getWebPaymentDetailsRequest\">\r\n
1464
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebPaymentDetailsResponse\"
1465
+ message=\"impl:getWebPaymentDetailsResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1466
+ \ <wsdl:operation name=\"manageWebWallet\">\r\n <wsdl:input name=\"manageWebWalletRequest\"
1467
+ message=\"impl:manageWebWalletRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1468
+ name=\"manageWebWalletResponse\" message=\"impl:manageWebWalletResponse\">\r\n
1469
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWebWallet\">\r\n
1470
+ \ <wsdl:input name=\"createWebWalletRequest\" message=\"impl:createWebWalletRequest\">\r\n
1471
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWebWalletResponse\" message=\"impl:createWebWalletResponse\">\r\n
1472
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWebWallet\">\r\n
1473
+ \ <wsdl:input name=\"updateWebWalletRequest\" message=\"impl:updateWebWalletRequest\">\r\n
1474
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWebWalletResponse\" message=\"impl:updateWebWalletResponse\">\r\n
1475
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n
1476
+ \ <wsdl:input name=\"getWebWalletRequest\" message=\"impl:getWebWalletRequest\">\r\n
1477
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebWalletResponse\" message=\"impl:getWebWalletResponse\">\r\n
1478
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
1479
+ name=\"DirectPaymentAPI\">\r\n <wsdl:operation name=\"doAuthorization\">\r\n
1480
+ \ <wsdl:input name=\"doAuthorizationRequest\" message=\"impl:doAuthorizationRequest\">\r\n
1481
+ \ </wsdl:input>\r\n <wsdl:output name=\"doAuthorizationResponse\" message=\"impl:doAuthorizationResponse\">\r\n
1482
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCapture\">\r\n
1483
+ \ <wsdl:input name=\"doCaptureRequest\" message=\"impl:doCaptureRequest\">\r\n
1484
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCaptureResponse\" message=\"impl:doCaptureResponse\">\r\n
1485
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
1486
+ \ <wsdl:input name=\"doReAuthorizationRequest\" message=\"impl:doReAuthorizationRequest\">\r\n
1487
+ \ </wsdl:input>\r\n <wsdl:output name=\"doReAuthorizationResponse\"
1488
+ message=\"impl:doReAuthorizationResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1489
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdl:input name=\"doDebitRequest\"
1490
+ message=\"impl:doDebitRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1491
+ name=\"doDebitResponse\" message=\"impl:doDebitResponse\">\r\n </wsdl:output>\r\n
1492
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdl:input
1493
+ name=\"doRefundRequest\" message=\"impl:doRefundRequest\">\r\n </wsdl:input>\r\n
1494
+ \ <wsdl:output name=\"doRefundResponse\" message=\"impl:doRefundResponse\">\r\n
1495
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReset\">\r\n
1496
+ \ <wsdl:input name=\"doResetRequest\" message=\"impl:doResetRequest\">\r\n
1497
+ \ </wsdl:input>\r\n <wsdl:output name=\"doResetResponse\" message=\"impl:doResetResponse\">\r\n
1498
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n
1499
+ \ <wsdl:input name=\"doCreditRequest\" message=\"impl:doCreditRequest\">\r\n
1500
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCreditResponse\" message=\"impl:doCreditResponse\">\r\n
1501
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWallet\">\r\n
1502
+ \ <wsdl:input name=\"createWalletRequest\" message=\"impl:createWalletRequest\">\r\n
1503
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWalletResponse\" message=\"impl:createWalletResponse\">\r\n
1504
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n
1505
+ \ <wsdl:input name=\"updateWalletRequest\" message=\"impl:updateWalletRequest\">\r\n
1506
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWalletResponse\" message=\"impl:updateWalletResponse\">\r\n
1507
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWallet\">\r\n
1508
+ \ <wsdl:input name=\"getWalletRequest\" message=\"impl:getWalletRequest\">\r\n
1509
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWalletResponse\" message=\"impl:getWalletResponse\">\r\n
1510
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n
1511
+ \ <wsdl:input name=\"getCardsRequest\" message=\"impl:getCardsRequest\">\r\n
1512
+ \ </wsdl:input>\r\n <wsdl:output name=\"getCardsResponse\" message=\"impl:getCardsResponse\">\r\n
1513
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"disableWallet\">\r\n
1514
+ \ <wsdl:input name=\"disableWalletRequest\" message=\"impl:disableWalletRequest\">\r\n
1515
+ \ </wsdl:input>\r\n <wsdl:output name=\"disableWalletResponse\" message=\"impl:disableWalletResponse\">\r\n
1516
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n
1517
+ \ <wsdl:input name=\"enableWalletRequest\" message=\"impl:enableWalletRequest\">\r\n
1518
+ \ </wsdl:input>\r\n <wsdl:output name=\"enableWalletResponse\" message=\"impl:enableWalletResponse\">\r\n
1519
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doImmediateWalletPayment\">\r\n
1520
+ \ <wsdl:input name=\"doImmediateWalletPaymentRequest\" message=\"impl:doImmediateWalletPaymentRequest\">\r\n
1521
+ \ </wsdl:input>\r\n <wsdl:output name=\"doImmediateWalletPaymentResponse\"
1522
+ message=\"impl:doImmediateWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1523
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
1524
+ \ <wsdl:input name=\"doScheduledWalletPaymentRequest\" message=\"impl:doScheduledWalletPaymentRequest\">\r\n
1525
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScheduledWalletPaymentResponse\"
1526
+ message=\"impl:doScheduledWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1527
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n
1528
+ \ <wsdl:input name=\"doRecurrentWalletPaymentRequest\" message=\"impl:doRecurrentWalletPaymentRequest\">\r\n
1529
+ \ </wsdl:input>\r\n <wsdl:output name=\"doRecurrentWalletPaymentResponse\"
1530
+ message=\"impl:doRecurrentWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1531
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getPaymentRecord\">\r\n
1532
+ \ <wsdl:input name=\"getPaymentRecordRequest\" message=\"impl:getPaymentRecordRequest\">\r\n
1533
+ \ </wsdl:input>\r\n <wsdl:output name=\"getPaymentRecordResponse\"
1534
+ message=\"impl:getPaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1535
+ \ <wsdl:operation name=\"disablePaymentRecord\">\r\n <wsdl:input name=\"disablePaymentRecordRequest\"
1536
+ message=\"impl:disablePaymentRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1537
+ name=\"disablePaymentRecordResponse\" message=\"impl:disablePaymentRecordResponse\">\r\n
1538
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"verifyEnrollment\">\r\n
1539
+ \ <wsdl:input name=\"verifyEnrollmentRequest\" message=\"impl:verifyEnrollmentRequest\">\r\n
1540
+ \ </wsdl:input>\r\n <wsdl:output name=\"verifyEnrollmentResponse\"
1541
+ message=\"impl:verifyEnrollmentResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1542
+ \ <wsdl:operation name=\"verifyAuthentication\">\r\n <wsdl:input name=\"verifyAuthenticationRequest\"
1543
+ message=\"impl:verifyAuthenticationRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1544
+ name=\"verifyAuthenticationResponse\" message=\"impl:verifyAuthenticationResponse\">\r\n
1545
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
1546
+ \ <wsdl:input name=\"createMerchantRequest\" message=\"impl:createMerchantRequest\">\r\n
1547
+ \ </wsdl:input>\r\n <wsdl:output name=\"createMerchantResponse\" message=\"impl:createMerchantResponse\">\r\n
1548
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doScoringCheque\">\r\n
1549
+ \ <wsdl:input name=\"doScoringChequeRequest\" message=\"impl:doScoringChequeRequest\">\r\n
1550
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScoringChequeResponse\" message=\"impl:doScoringChequeResponse\">\r\n
1551
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getEncryptionKey\">\r\n
1552
+ \ <wsdl:input name=\"getEncryptionKeyRequest\" message=\"impl:getEncryptionKeyRequest\">\r\n
1553
+ \ </wsdl:input>\r\n <wsdl:output name=\"getEncryptionKeyResponse\"
1554
+ message=\"impl:getEncryptionKeyResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1555
+ \ <wsdl:operation name=\"getMerchantSettings\">\r\n <wsdl:input name=\"getMerchantSettingsRequest\"
1556
+ message=\"impl:getMerchantSettingsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1557
+ name=\"getMerchantSettingsResponse\" message=\"impl:getMerchantSettingsResponse\">\r\n
1558
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getBalance\">\r\n
1559
+ \ <wsdl:input name=\"getBalanceRequest\" message=\"impl:getBalanceRequest\">\r\n
1560
+ \ </wsdl:input>\r\n <wsdl:output name=\"getBalanceResponse\" message=\"impl:getBalanceResponse\">\r\n
1561
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n
1562
+ \ <wsdl:input message=\"impl:getTokenRequest\">\r\n </wsdl:input>\r\n
1563
+ \ <wsdl:output message=\"impl:getTokenResponse\">\r\n </wsdl:output>\r\n
1564
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"unBlock\">\r\n <wsdl:input
1565
+ name=\"unBlockRequest\" message=\"impl:unBlockRequest\">\r\n </wsdl:input>\r\n
1566
+ \ <wsdl:output name=\"unBlockResponse\" message=\"impl:unBlockResponse\">\r\n
1567
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
1568
+ \ <wsdl:input name=\"updatePaymentRecordRequest\" message=\"impl:updatePaymentRecordRequest\">\r\n
1569
+ \ </wsdl:input>\r\n <wsdl:output name=\"updatePaymentRecordResponse\"
1570
+ message=\"impl:updatePaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1571
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdl:input name=\"getBillingRecordRequest\"
1572
+ message=\"impl:getBillingRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1573
+ name=\"getBillingRecordResponse\" message=\"impl:getBillingRecordResponse\">\r\n
1574
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateBillingRecord\">\r\n
1575
+ \ <wsdl:input name=\"updateBillingRecordRequest\" message=\"impl:updateBillingRecordRequest\">\r\n
1576
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateBillingRecordResponse\"
1577
+ message=\"impl:updateBillingRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1578
+ \ <wsdl:operation name=\"doBankTransfer\">\r\n <wsdl:input name=\"doBankTransferRequest\"
1579
+ message=\"impl:doBankTransferRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1580
+ name=\"doBankTransferResponse\" message=\"impl:doBankTransferResponse\">\r\n
1581
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
1582
+ name=\"MassPaymentAPI\">\r\n <wsdl:operation name=\"doMassCapture\">\r\n
1583
+ \ <wsdl:input name=\"doMassCaptureRequest\" message=\"impl:doMassCaptureRequest\">\r\n
1584
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassCaptureResponse\" message=\"impl:doMassCaptureResponse\">\r\n
1585
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassRefund\">\r\n
1586
+ \ <wsdl:input name=\"doMassRefundRequest\" message=\"impl:doMassRefundRequest\">\r\n
1587
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassRefundResponse\" message=\"impl:doMassRefundResponse\">\r\n
1588
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassReset\">\r\n
1589
+ \ <wsdl:input name=\"doMassResetRequest\" message=\"impl:doMassResetRequest\">\r\n
1590
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassResetResponse\" message=\"impl:doMassResetResponse\">\r\n
1591
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
1592
+ \ <wsdl:input name=\"getMassTraitmentDetailsRequest\" message=\"impl:getMassTraitmentDetailsRequest\">\r\n
1593
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMassTraitmentDetailsResponse\"
1594
+ message=\"impl:getMassTraitmentDetailsResponse\">\r\n </wsdl:output>\r\n
1595
+ \ </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType name=\"ExtendedAPI\">\r\n
1596
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdl:input name=\"getTransactionDetailsRequest\"
1597
+ message=\"impl:getTransactionDetailsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1598
+ name=\"getTransactionDetailsResponse\" message=\"impl:getTransactionDetailsResponse\">\r\n
1599
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"transactionsSearch\">\r\n
1600
+ \ <wsdl:input name=\"transactionsSearchRequest\" message=\"impl:transactionsSearchRequest\">\r\n
1601
+ \ </wsdl:input>\r\n <wsdl:output name=\"transactionsSearchResponse\"
1602
+ message=\"impl:transactionsSearchResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1603
+ \ <wsdl:operation name=\"getAlertDetails\">\r\n <wsdl:input message=\"impl:getAlertDetailsRequest\">\r\n
1604
+ \ </wsdl:input>\r\n <wsdl:output message=\"impl:getAlertDetailsResponse\">\r\n
1605
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:binding
1606
+ name=\"DirectPaymentAPISoapBinding\" type=\"impl:DirectPaymentAPI\">\r\n <wsdlsoap:binding
1607
+ style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1608
+ \ <wsdl:operation name=\"doAuthorization\">\r\n <wsdlsoap:operation
1609
+ soapAction=\"doAuthorization\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1610
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1611
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1612
+ name=\"doCapture\">\r\n <wsdlsoap:operation soapAction=\"doCapture\"/>\r\n
1613
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1614
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1615
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
1616
+ \ <wsdlsoap:operation soapAction=\"doReAuthorization\"/>\r\n <wsdl:input>\r\n
1617
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1618
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1619
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdlsoap:operation soapAction=\"doDebit\"/>\r\n
1620
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1621
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1622
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdlsoap:operation
1623
+ soapAction=\"doRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1624
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1625
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1626
+ name=\"doReset\">\r\n <wsdlsoap:operation soapAction=\"doReset\"/>\r\n
1627
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1628
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1629
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n <wsdlsoap:operation
1630
+ soapAction=\"doCredit\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1631
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1632
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1633
+ name=\"createWallet\">\r\n <wsdlsoap:operation soapAction=\"createWallet\"/>\r\n
1634
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1635
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1636
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n <wsdlsoap:operation
1637
+ soapAction=\"updateWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1638
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1639
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1640
+ name=\"getWallet\">\r\n <wsdlsoap:operation soapAction=\"getWallet\"/>\r\n
1641
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1642
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1643
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n <wsdlsoap:operation
1644
+ soapAction=\"getCards\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1645
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1646
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1647
+ name=\"disableWallet\">\r\n <wsdlsoap:operation soapAction=\"disableWallet\"/>\r\n
1648
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1649
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1650
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n <wsdlsoap:operation
1651
+ soapAction=\"enableWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1652
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1653
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1654
+ name=\"doImmediateWalletPayment\">\r\n <wsdlsoap:operation soapAction=\"doImmediateWalletPayment\"/>\r\n
1655
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1656
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1657
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
1658
+ \ <wsdlsoap:operation soapAction=\"doScheduledWalletPayment\"/>\r\n <wsdl:input>\r\n
1659
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1660
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1661
+ \ <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n <wsdlsoap:operation
1662
+ soapAction=\"doRecurrentWalletPayment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1663
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1664
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1665
+ name=\"getPaymentRecord\">\r\n <wsdlsoap:operation soapAction=\"getPaymentRecord\"/>\r\n
1666
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1667
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1668
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"disablePaymentRecord\">\r\n
1669
+ \ <wsdlsoap:operation soapAction=\"disablePaymentRecord\"/>\r\n <wsdl:input>\r\n
1670
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1671
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1672
+ \ <wsdl:operation name=\"verifyEnrollment\">\r\n <wsdlsoap:operation
1673
+ soapAction=\"verifyEnrollment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1674
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1675
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1676
+ name=\"verifyAuthentication\">\r\n <wsdlsoap:operation soapAction=\"verifyAuthentication\"/>\r\n
1677
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1678
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1679
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
1680
+ \ <wsdlsoap:operation soapAction=\"createMerchant\"/>\r\n <wsdl:input>\r\n
1681
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1682
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1683
+ \ <wsdl:operation name=\"doScoringCheque\">\r\n <wsdlsoap:operation
1684
+ soapAction=\"doScoringCheque\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1685
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1686
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1687
+ name=\"getEncryptionKey\">\r\n <wsdlsoap:operation soapAction=\"getEncryptionKey\"/>\r\n
1688
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1689
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1690
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMerchantSettings\">\r\n
1691
+ \ <wsdlsoap:operation soapAction=\"getMerchantSettings\"/>\r\n <wsdl:input
1692
+ name=\"getMerchantSettingsRequest\">\r\n <wsdlsoap:body use=\"literal\"/>\r\n
1693
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMerchantSettingsResponse\">\r\n
1694
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1695
+ \ <wsdl:operation name=\"getBalance\">\r\n <wsdlsoap:operation soapAction=\"getBalance\"/>\r\n
1696
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1697
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1698
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n <wsdlsoap:operation
1699
+ soapAction=\"getToken\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1700
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1701
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1702
+ name=\"unBlock\">\r\n <wsdlsoap:operation soapAction=\"unBlock\"/>\r\n
1703
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1704
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1705
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
1706
+ \ <wsdlsoap:operation soapAction=\"updatePaymentRecord\"/>\r\n <wsdl:input>\r\n
1707
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1708
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1709
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdlsoap:operation
1710
+ soapAction=\"getBillingRecord\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1711
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1712
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1713
+ name=\"updateBillingRecord\">\r\n <wsdlsoap:operation soapAction=\"updateBillingRecord\"/>\r\n
1714
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1715
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1716
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doBankTransfer\">\r\n
1717
+ \ <wsdlsoap:operation soapAction=\"doBankTransfer\"/>\r\n <wsdl:input>\r\n
1718
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1719
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1720
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"WebPaymentAPISoapBinding\" type=\"impl:WebPaymentAPI\">\r\n
1721
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1722
+ \ <wsdl:operation name=\"getWebPaymentDetails\">\r\n <wsdlsoap:operation
1723
+ soapAction=\"getWebPaymentDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1724
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1725
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1726
+ name=\"doWebPayment\">\r\n <wsdlsoap:operation soapAction=\"doWebPayment\"/>\r\n
1727
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1728
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1729
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"manageWebWallet\">\r\n
1730
+ \ <wsdlsoap:operation soapAction=\"manageWebWallet\"/>\r\n <wsdl:input>\r\n
1731
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1732
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1733
+ \ <wsdl:operation name=\"createWebWallet\">\r\n <wsdlsoap:operation
1734
+ soapAction=\"createWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1735
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1736
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1737
+ name=\"updateWebWallet\">\r\n <wsdlsoap:operation soapAction=\"updateWebWallet\"/>\r\n
1738
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1739
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1740
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n <wsdlsoap:operation
1741
+ soapAction=\"getWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1742
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1743
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1744
+ \ <wsdl:binding name=\"ExtendedAPISoapBinding\" type=\"impl:ExtendedAPI\">\r\n
1745
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1746
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdlsoap:operation
1747
+ soapAction=\"getTransactionDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1748
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1749
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1750
+ name=\"transactionsSearch\">\r\n <wsdlsoap:operation soapAction=\"transactionsSearch\"/>\r\n
1751
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1752
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1753
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getAlertDetails\">\r\n
1754
+ \ <wsdlsoap:operation soapAction=\"getAlertDetails\"/>\r\n <wsdl:input>\r\n
1755
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1756
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1757
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"MassPaymentAPISoapBinding\" type=\"impl:MassPaymentAPI\">\r\n
1758
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1759
+ \ <wsdl:operation name=\"doMassCapture\">\r\n <wsdlsoap:operation soapAction=\"doMassCapture\"/>\r\n
1760
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1761
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1762
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doMassRefund\">\r\n <wsdlsoap:operation
1763
+ soapAction=\"doMassRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1764
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1765
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1766
+ name=\"doMassReset\">\r\n <wsdlsoap:operation soapAction=\"doMassReset\"/>\r\n
1767
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1768
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1769
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
1770
+ \ <wsdlsoap:operation soapAction=\"getMassTraitmentDetails\"/>\r\n <wsdl:input>\r\n
1771
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1772
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1773
+ \ </wsdl:binding>\r\n <wsdl:service name=\"WebPaymentAPI\">\r\n <wsdl:port
1774
+ name=\"WebPaymentAPI\" binding=\"impl:WebPaymentAPISoapBinding\">\r\n <wsdlsoap:address
1775
+ location=\"http://host/V4/services/WebPaymentAPI\"/>\r\n </wsdl:port>\r\n
1776
+ \ </wsdl:service>\r\n</wsdl:definitions>\r\n"
1777
+ http_version:
1778
+ recorded_at: Fri, 11 Aug 2017 09:01:14 GMT
1779
+ - request:
1780
+ method: post
1781
+ uri: https://homologation.payline.com/V4/services/DirectPaymentAPI
1782
+ body:
1783
+ encoding: UTF-8
1784
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1785
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:impl="http://impl.ws.payline.experian.com"
1786
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://obj.ws.payline.experian.com"><env:Body><impl:doAuthorizationRequest><impl:payment><ins0:amount>1000</ins0:amount><ins0:currency>978</ins0:currency><ins0:action>100</ins0:action><ins0:mode>CPT</ins0:mode><ins0:contractNumber>1234567</ins0:contractNumber></impl:payment><impl:bankAccountData
1787
+ xsi:nil="true"/><impl:card><ins0:number>4970100000325734</ins0:number><ins0:type>VISA</ins0:type><ins0:expirationDate>1217</ins0:expirationDate><ins0:cvx>123</ins0:cvx></impl:card><impl:order><ins0:amount>1000</ins0:amount><ins0:currency>978</ins0:currency><ins0:ref>c173817509f39d673e0543c8a1c0d10b</ins0:ref><ins0:date>11/08/2017
1788
+ 11:01</ins0:date></impl:order><impl:buyer></impl:buyer><impl:version>16</impl:version><impl:contractNumber>1234567</impl:contractNumber><impl:languageCode
1789
+ xsi:nil="true"/><impl:securityMode>SSL</impl:securityMode><impl:returnURL>http://192.168.1.41:3000/</impl:returnURL><impl:cancelURL>http://192.168.1.41:3000/</impl:cancelURL><impl:notificationURL
1790
+ xsi:nil="true"/><impl:customPaymentPageCode xsi:nil="true"/><impl:selectedContractList><impl:selectedContract>1234567</impl:selectedContract></impl:selectedContractList></impl:doAuthorizationRequest></env:Body></env:Envelope>
1791
+ headers:
1792
+ Soapaction:
1793
+ - '"doAuthorization"'
1794
+ Content-Type:
1795
+ - text/xml;charset=UTF-8
1796
+ Content-Length:
1797
+ - '1471'
1798
+ Accept-Encoding:
1799
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1800
+ Accept:
1801
+ - "*/*"
1802
+ User-Agent:
1803
+ - Ruby
1804
+ Authorization:
1805
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
1806
+ response:
1807
+ status:
1808
+ code: 200
1809
+ message: OK
1810
+ headers:
1811
+ Date:
1812
+ - Fri, 11 Aug 2017 09:01:14 GMT
1813
+ Content-Type:
1814
+ - text/xml;charset=UTF-8
1815
+ Vary:
1816
+ - Accept-Encoding
1817
+ Content-Length:
1818
+ - '724'
1819
+ Connection:
1820
+ - Keep-Alive
1821
+ body:
1822
+ encoding: ASCII-8BIT
1823
+ string: <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><doAuthorizationResponse
1824
+ xmlns="http://impl.ws.payline.experian.com"><result xmlns="http://impl.ws.payline.experian.com"><code
1825
+ xmlns="http://obj.ws.payline.experian.com">00000</code><shortMessage xmlns="http://obj.ws.payline.experian.com">ACCEPTED</shortMessage><longMessage
1826
+ xmlns="http://obj.ws.payline.experian.com">Transaction approved</longMessage></result><transaction
1827
+ xmlns="http://impl.ws.payline.experian.com"><id xmlns="http://obj.ws.payline.experian.com">17223110115774</id><date
1828
+ xmlns="http://obj.ws.payline.experian.com">11/08/17 11:01:15</date><isDuplicated
1829
+ xmlns="http://obj.ws.payline.experian.com">0</isDuplicated><isPossibleFraud
1830
+ xmlns="http://obj.ws.payline.experian.com">0</isPossibleFraud><fraudResult
1831
+ xmlns="http://obj.ws.payline.experian.com" /><explanation xmlns="http://obj.ws.payline.experian.com"
1832
+ /><threeDSecure xmlns="http://obj.ws.payline.experian.com">N</threeDSecure><score
1833
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1834
+ xsi:nil="true" /></transaction><authorization xmlns="http://impl.ws.payline.experian.com"><number
1835
+ xmlns="http://obj.ws.payline.experian.com">A55A</number><date xmlns="http://obj.ws.payline.experian.com">11/08/17
1836
+ 11:01:15</date></authorization><card xmlns="http://impl.ws.payline.experian.com"><number
1837
+ xmlns="http://obj.ws.payline.experian.com">497010XXXXXX5734</number><type
1838
+ xmlns="http://obj.ws.payline.experian.com">CB</type><expirationDate xmlns="http://obj.ws.payline.experian.com">1217</expirationDate></card><extendedCard
1839
+ xmlns="http://impl.ws.payline.experian.com"><country xmlns="http://obj.ws.payline.experian.com">FRA</country><isCvd
1840
+ xmlns="http://obj.ws.payline.experian.com" /><bank xmlns="http://obj.ws.payline.experian.com"
1841
+ /><type xmlns="http://obj.ws.payline.experian.com">VISA</type><network xmlns="http://obj.ws.payline.experian.com">VISA</network><product
1842
+ xmlns="http://obj.ws.payline.experian.com">Visa Business</product></extendedCard><contractNumber
1843
+ xmlns="http://impl.ws.payline.experian.com">1234567</contractNumber></doAuthorizationResponse></soapenv:Body></soapenv:Envelope>
1844
+ http_version:
1845
+ recorded_at: Fri, 11 Aug 2017 09:01:15 GMT
1846
+ - request:
1847
+ method: get
1848
+ uri: https://homologation.payline.com/V4/services/WebPaymentAPI?wsdl
1849
+ body:
1850
+ encoding: US-ASCII
1851
+ string: ''
1852
+ headers:
1853
+ Accept-Encoding:
1854
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1855
+ Accept:
1856
+ - "*/*"
1857
+ User-Agent:
1858
+ - Ruby
1859
+ Authorization:
1860
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
1861
+ response:
1862
+ status:
1863
+ code: 200
1864
+ message: OK
1865
+ headers:
1866
+ Date:
1867
+ - Fri, 11 Aug 2017 09:01:15 GMT
1868
+ Server:
1869
+ - Apache
1870
+ Last-Modified:
1871
+ - Wed, 05 Apr 2017 12:32:47 GMT
1872
+ Etag:
1873
+ - '"26-2546c-54c6a96fd99c0"'
1874
+ Accept-Ranges:
1875
+ - bytes
1876
+ Content-Length:
1877
+ - '152684'
1878
+ Content-Type:
1879
+ - application/wsdl+xml
1880
+ body:
1881
+ encoding: UTF-8
1882
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<wsdl:definitions targetNamespace=\"http://impl.ws.payline.experian.com\"
1883
+ xmlns:impl=\"http://impl.ws.payline.experian.com\" xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\"
1884
+ xmlns:apachesoap=\"http://xml.apache.org/xml-soap\" xmlns:intf=\"http://impl.ws.payline.experian.com\"
1885
+ xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:wsdlsoap=\"http://schemas.xmlsoap.org/wsdl/soap/\"
1886
+ xmlns:tns1=\"http://obj.ws.payline.experian.com\">\r\n <wsdl:types>\r\n <schema
1887
+ elementFormDefault=\"qualified\" targetNamespace=\"http://impl.ws.payline.experian.com\"
1888
+ xmlns=\"http://www.w3.org/2001/XMLSchema\">\r\n\t\t\t<import namespace=\"http://obj.ws.payline.experian.com\"/>\r\n\t\t\t<element
1889
+ name=\"doWebPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1890
+ element is the request for the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1891
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1892
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1893
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1894
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1895
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
1896
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1897
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
1898
+ name=\"secondSelectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
1899
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1900
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1901
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1902
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
1903
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
1904
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1905
+ name=\"recurring\" nillable=\"true\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
1906
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1907
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
1908
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1909
+ name=\"doWebPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1910
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1911
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
1912
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1913
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1914
+ minOccurs=\"0\" name=\"stepCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1915
+ minOccurs=\"0\" name=\"reqCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1916
+ minOccurs=\"0\" name=\"method\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1917
+ name=\"getWebPaymentDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1918
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1919
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1920
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1921
+ name=\"getWebPaymentDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1922
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoWebPayment\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1923
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
1924
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
1925
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1926
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
1927
+ minOccurs=\"0\" name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1928
+ minOccurs=\"0\" name=\"paymentRecordId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1929
+ minOccurs=\"0\" name=\"billingRecordList\" nillable=\"true\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
1930
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
1931
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
1932
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
1933
+ name=\"order\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
1934
+ name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
1935
+ minOccurs=\"0\" name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1936
+ minOccurs=\"0\" name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1937
+ minOccurs=\"0\" name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
1938
+ minOccurs=\"0\" name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
1939
+ minOccurs=\"0\" name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1940
+ name=\"bankAccountData\" nillable=\"true\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1941
+ name=\"doAuthorizationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1942
+ element is the request for the\r\n\t\t\t\t\t\t\tdoAuthorization\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1943
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1944
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1945
+ name=\"bankAccountData\" nillable=\"false\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t\t<element
1946
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
1947
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
1948
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
1949
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
1950
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1951
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
1952
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1953
+ name=\"doAuthorizationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1954
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1955
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
1956
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
1957
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
1958
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
1959
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"privateDataList\"
1960
+ nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1961
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1962
+ name=\"doCaptureRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1963
+ element is the request for the\r\n\t\t\t\t\t\t\tdoCapture method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1964
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1965
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1966
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1967
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1968
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1969
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1970
+ name=\"doCaptureResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1971
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1972
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
1973
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
1974
+ name=\"reAuthorization\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1975
+ name=\"doDebitRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1976
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1977
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1978
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
1979
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
1980
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
1981
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
1982
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1983
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
1984
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
1985
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1986
+ name=\"doDebitResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1987
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
1988
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
1989
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
1990
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
1991
+ name=\"doRefundRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
1992
+ element is the request for the doRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
1993
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1994
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1995
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
1996
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1997
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
1998
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
1999
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2000
+ name=\"doRefundResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2001
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoRefund method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2002
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2003
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2004
+ name=\"doResetRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2005
+ element is the request for the doReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2006
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2007
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2008
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2009
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2010
+ name=\"doResetResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2011
+ element is the reponse from the doReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2012
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2013
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2014
+ name=\"doCreditRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2015
+ element is the request for the doCredit\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2016
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2017
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2018
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
2019
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2020
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2021
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2022
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2023
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2024
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2025
+ name=\"doCreditResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2026
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoCredit method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2027
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2028
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
2029
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
2030
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2031
+ name=\"doMassCaptureRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2032
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2033
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2034
+ name=\"captureAuthorizationList\" nillable=\"true\" type=\"tns1:captureAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
2035
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2036
+ name=\"doMassCaptureResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2037
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassCapture\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2038
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2039
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2040
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2041
+ name=\"doMassRefundRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2042
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2043
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2044
+ name=\"refundAuthorizationList\" nillable=\"true\" type=\"tns1:refundAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
2045
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2046
+ name=\"doMassRefundResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2047
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2048
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2049
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2050
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2051
+ name=\"doMassResetRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2052
+ element is the request for the\r\n\t\t\t\t\t\t\tdoMassRefund\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2053
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2054
+ name=\"resetAuthorizationList\" nillable=\"true\" type=\"tns1:resetAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
2055
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2056
+ name=\"doMassResetResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2057
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoMassReset\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2058
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2059
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2060
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2061
+ name=\"getMassTraitmentDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2062
+ element is the request for the\r\n\t\t\t\t\t\t\tgetMassTraitmentDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2063
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2064
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2065
+ name=\"getMassTraitmentDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2066
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetMassTraitmentDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2067
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2068
+ name=\"massTraitementID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2069
+ name=\"totalLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2070
+ name=\"failedLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2071
+ name=\"failedListObject\" nillable=\"true\" type=\"tns1:failedListObject\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2072
+ name=\"createWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2073
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2074
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2075
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2076
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
2077
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2078
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2079
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2080
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
2081
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2082
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2083
+ name=\"createWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2084
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2085
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2086
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
2087
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
2088
+ nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
2089
+ name=\"fraudResultDetails\" nillable=\"true\" type=\"tns1:fraudResultDetails\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2090
+ name=\"updateWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2091
+ element is the request for the\r\n\t\t\t\t\t\t\tupdateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2092
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2093
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2094
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2095
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
2096
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2097
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2098
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2099
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
2100
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2101
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2102
+ name=\"updateWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2103
+ element is the reponse from the\r\n\t\t\t\t\t\t\tupdateWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2104
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2105
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
2106
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
2107
+ nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2108
+ name=\"getWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2109
+ element is the request for the\r\n\t\t\t\t\t\t\tgetWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2110
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2111
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2112
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2113
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2114
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2115
+ name=\"getWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2116
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2117
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2118
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
2119
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2120
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2121
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2122
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2123
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
2124
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
2125
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2126
+ name=\"getCardsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2127
+ element is the request for the\r\n\t\t\t\t\t\t\tgetCards method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2128
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2129
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2130
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2131
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2132
+ name=\"getCardsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2133
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetCards method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2134
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2135
+ name=\"cardsList\" nillable=\"true\" type=\"tns1:cardsList\"/>\r\n\t\t\t\t\t\t<element
2136
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2137
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2138
+ name=\"disableWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2139
+ element is the request for the\r\n\t\t\t\t\t\t\tdisableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2140
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2141
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2142
+ name=\"walletIdList\" nillable=\"false\" type=\"tns1:walletIdList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2143
+ name=\"disableWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2144
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdisableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2145
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2146
+ name=\"walletIdList\" nillable=\"false\" type=\"tns1:walletIdList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2147
+ name=\"enableWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2148
+ element is the request for the\r\n\t\t\t\t\t\t\tenableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2149
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2150
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2151
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2152
+ name=\"enableWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2153
+ element is the reponse from the\r\n\t\t\t\t\t\t\tenableWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2154
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2155
+ name=\"doImmediateWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2156
+ element is the request for the\r\n\t\t\t\t\t\t\tdoImmediateWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2157
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2158
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2159
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2160
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2161
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2162
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2163
+ name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2164
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2165
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2166
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2167
+ name=\"doImmediateWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2168
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoImmediateWalletPayment
2169
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2170
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2171
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
2172
+ name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2173
+ name=\"doScheduledWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2174
+ element is the request for the\r\n\t\t\t\t\t\t\tdoScheduledWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2175
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2176
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2177
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2178
+ name=\"orderDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2179
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2180
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2181
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2182
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2183
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2184
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2185
+ name=\"doScheduledWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2186
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoScheduledWalletPayment
2187
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2188
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2189
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2190
+ name=\"doRecurrentWalletPaymentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2191
+ element is the request for the\r\n\t\t\t\t\t\t\tdoRecurrentWalletPayment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2192
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2193
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2194
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2195
+ name=\"orderDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2196
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2197
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2198
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2199
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
2200
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2201
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2202
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2203
+ name=\"doRecurrentWalletPaymentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2204
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoRecurrentWalletPayment
2205
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2206
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2207
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2208
+ name=\"billingRecordList\" nillable=\"false\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2209
+ name=\"getPaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2210
+ element is the request for the\r\n\t\t\t\t\t\t\tgetPaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2211
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2212
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2213
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2214
+ name=\"getPaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2215
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetPaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2216
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2217
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
2218
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2219
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2220
+ name=\"billingRecordList\" nillable=\"false\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
2221
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2222
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2223
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2224
+ name=\"disablePaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2225
+ element is the request for the\r\n\t\t\t\t\t\t\tdisablePaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2226
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2227
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2228
+ name=\"disablePaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2229
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdisablePaymentRecord method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2230
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2231
+ name=\"manageWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2232
+ element is the request for the\r\n\t\t\t\t\t\t\tmanageWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2233
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2234
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2235
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
2236
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2237
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2238
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2239
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2240
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2241
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2242
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2243
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2244
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2245
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2246
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2247
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
2248
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2249
+ name=\"manageWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2250
+ element is the reponse from the\r\n\t\t\t\t\t\t\tmanageWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2251
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2252
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2253
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2254
+ name=\"createWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2255
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2256
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2257
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2258
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
2259
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2260
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2261
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2262
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2263
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2264
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2265
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2266
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2267
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2268
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2269
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2270
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2271
+ name=\"createWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2272
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2273
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2274
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2275
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2276
+ name=\"updateWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2277
+ element is the request for the\r\n\t\t\t\t\t\t\tupdateWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2278
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2279
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2280
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2281
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2282
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2283
+ name=\"updateOwnerDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2284
+ name=\"updatePaymentDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2285
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2286
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2287
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2288
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2289
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2290
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2291
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2292
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2293
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2294
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2295
+ name=\"updateWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2296
+ element is the reponse from the\r\n\t\t\t\t\t\t\tupdateWebWallet method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2297
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2298
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2299
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2300
+ name=\"getWebWalletRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2301
+ element is the request for the\r\n\t\t\t\t\t\t\tgetWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2302
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2303
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2304
+ name=\"getWebWalletResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2305
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetWebWallet\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2306
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2307
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
2308
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
2309
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2310
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
2311
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2312
+ name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2313
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2314
+ name=\"getTransactionDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2315
+ element is the request for the\r\n\t\t\t\t\t\t\tgetTransactionDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2316
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2317
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2318
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2319
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2320
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2321
+ name=\"transactionHistory\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2322
+ name=\"archiveSearch\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2323
+ name=\"getTransactionDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2324
+ element is the response for the\r\n\t\t\t\t\t\t\tgetTransactionDetails method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2325
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2326
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
2327
+ name=\"payment\" nillable=\"true\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2328
+ name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
2329
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2330
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
2331
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2332
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
2333
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"associatedTransactionsList\"
2334
+ nillable=\"true\" type=\"tns1:associatedTransactionsList\"/>\r\n\t\t\t\t\t\t<element
2335
+ name=\"statusHistoryList\" nillable=\"true\" type=\"tns1:statusHistoryList\"/>\r\n\t\t\t\t\t\t<element
2336
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2337
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2338
+ minOccurs=\"0\" name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
2339
+ name=\"bankAccountData\" nillable=\"true\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2340
+ name=\"transactionsSearchRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2341
+ element is the request for the\r\n\t\t\t\t\t\t\ttransactionsSearch method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2342
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2343
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2344
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2345
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2346
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2347
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2348
+ name=\"authorizationNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2349
+ name=\"returnCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2350
+ name=\"paymentMean\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2351
+ name=\"transactionType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2352
+ name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2353
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2354
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2355
+ name=\"cardNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2356
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2357
+ name=\"minAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2358
+ name=\"maxAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2359
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2360
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2361
+ name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2362
+ name=\"transactionsSearchResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2363
+ element is the response for the\r\n\t\t\t\t\t\t\ttransactionsSearch method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2364
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2365
+ name=\"transactionList\" nillable=\"true\" type=\"tns1:transactionList\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2366
+ name=\"verifyEnrollmentRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2367
+ element is the request for the\r\n\t\t\t\t\t\t\tverifyEnrollment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2368
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2369
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
2370
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2371
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2372
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2373
+ name=\"userAgent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2374
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2375
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2376
+ minOccurs=\"0\" name=\"generateVirtualCvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2377
+ name=\"merchantName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2378
+ name=\"verifyEnrollmentResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2379
+ element is the reponse from the\r\n\t\t\t\t\t\t\tverifyEnrollment method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2380
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2381
+ name=\"actionUrl\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2382
+ name=\"actionMethod\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2383
+ name=\"pareqFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2384
+ name=\"pareqFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2385
+ name=\"termUrlName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2386
+ name=\"termUrlValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2387
+ name=\"mdFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2388
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2389
+ name=\"mpiResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2390
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
2391
+ minOccurs=\"0\" name=\"virtualCvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2392
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2393
+ name=\"verifyAuthenticationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2394
+ element is the request for the\r\n\t\t\t\t\t\t\tdoAuthentication method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2395
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2396
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2397
+ name=\"pares\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2398
+ name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2399
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2400
+ name=\"verifyAuthenticationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2401
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoAuthentication method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2402
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2403
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
2404
+ name=\"mpiResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2405
+ name=\"createMerchantRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2406
+ element is the request for the\r\n\t\t\t\t\t\t\tcreateMerchant\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2407
+ name=\"corporateName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2408
+ name=\"publicName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2409
+ name=\"currency\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>currency
2410
+ in ISO 4217 numeric format\r\n\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t\t<restriction
2411
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t<length value=\"3\"/>\r\n\t\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2412
+ name=\"nationalID\" nillable=\"true\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>unique
2413
+ national merchant ID</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<choice>\r\n\t\t\t\t\t\t\t\t\t<element
2414
+ name=\"SIRET\">\r\n\t\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t\t<documentation>Systeme
2415
+ d identification du Repertoire des\r\n\t\t\t\t\t\t\t\t\t\t\t\tENtreprises\r\n\t\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t\t\t\t\t<restriction
2416
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<length value=\"14\"/>\r\n\t\t\t\t\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t\t\t\t<element
2417
+ name=\"other\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t\t<documentation>to
2418
+ use if country is not France\r\n\t\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t\t\t</choice>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2419
+ name=\"distributor\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Payline
2420
+ Distributor ID</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2421
+ name=\"merchantAddress\" nillable=\"true\" type=\"tns1:addressInterlocutor\"/>\r\n\t\t\t\t\t\t<element
2422
+ name=\"businessInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
2423
+ name=\"technicalInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
2424
+ name=\"subscription\" nillable=\"true\" type=\"tns1:subscription\"/>\r\n\t\t\t\t\t\t<element
2425
+ name=\"poss\" nillable=\"true\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>list
2426
+ of point of sell</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
2427
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"pos\" nillable=\"true\" type=\"tns1:pointOfSell\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2428
+ name=\"partner\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Billing
2429
+ partner. 1:monext, 2:cetib, 3:payline.com\r\n\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2430
+ name=\"createMerchantResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2431
+ element is the reponse from the\r\n\t\t\t\t\t\t\tcreateMerchant\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2432
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2433
+ name=\"connectionData\" nillable=\"false\" type=\"tns1:connectionData\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2434
+ name=\"doScoringChequeRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2435
+ element is the request for the\r\n\t\t\t\t\t\t\tdoScoringCheque\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2436
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2437
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2438
+ name=\"cheque\" nillable=\"false\" type=\"tns1:cheque\"/>\r\n\t\t\t\t\t\t<element
2439
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2440
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2441
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2442
+ name=\"doScoringChequeResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2443
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoScoringCheque method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2444
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2445
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
2446
+ name=\"scoringCheque\" nillable=\"false\" type=\"tns1:scoringCheque\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2447
+ name=\"getEncryptionKeyRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2448
+ element is the request for the\r\n\t\t\t\t\t\t\tgetEncryptionKeyRequest method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2449
+ name=\"getEncryptionKeyResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2450
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetEncryptionKeyResponse
2451
+ method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2452
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2453
+ name=\"key\" nillable=\"false\" type=\"tns1:key\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2454
+ name=\"doReAuthorizationRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2455
+ element is the request for the\r\n\t\t\t\t\t\t\tdoReAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2456
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2457
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2458
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2459
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2460
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2461
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2462
+ name=\"doReAuthorizationResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2463
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoReAuthorization method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2464
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2465
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
2466
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
2467
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2468
+ name=\"getMerchantSettingsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2469
+ element is the request for the\r\n\t\t\t\t\t\t\tgetMerchantSettings method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2470
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2471
+ name=\"getMerchantSettingsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2472
+ element is the response from the\r\n\t\t\t\t\t\t\tgetMerchantSettings method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2473
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2474
+ name=\"listPointOfSell\" nillable=\"false\">\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
2475
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"pointOfSell\" type=\"tns1:pointOfSell\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2476
+ name=\"getBalanceRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2477
+ element is the request for the\r\n\t\t\t\t\t\t\tgetBalance\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2478
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2479
+ name=\"cardID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2480
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2481
+ name=\"getBalanceResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2482
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetBalance\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2483
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2484
+ name=\"balance\" nillable=\"false\">\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t\t<element
2485
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"amount\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t\t<element
2486
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"currency\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2487
+ name=\"crdproduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2488
+ name=\"crdprogram\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2489
+ name=\"crddesign\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2490
+ name=\"getAlertDetailsRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\t\t\t\t\r\n\t\t\t\t\t\t<element
2491
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"version\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\t\t\t\t\t\r\n\t\t\t\t\t\t<element
2492
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2493
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
2494
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2495
+ minOccurs=\"1\" name=\"TransactionDate\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2496
+ name=\"getAlertDetailsResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2497
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2498
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2499
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"ExplanationCode\" nillable=\"true\"
2500
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2501
+ minOccurs=\"0\" name=\"ExplanationLabel\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2502
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionStatus\" nillable=\"false\"
2503
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2504
+ minOccurs=\"1\" name=\"MerchantLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2505
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2506
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
2507
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2508
+ minOccurs=\"1\" name=\"SecurityLevel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2509
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
2510
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2511
+ minOccurs=\"1\" name=\"TransactionAmount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2512
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionCurrency\" nillable=\"false\"
2513
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2514
+ minOccurs=\"1\" name=\"PaymentType\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2515
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PaymentData\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2516
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"HolderName\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2517
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ReferenceData\" nillable=\"false\"
2518
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2519
+ minOccurs=\"0\" name=\"CustomerId\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2520
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"BuyerFirstName\" nillable=\"true\"
2521
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
2522
+ minOccurs=\"0\" name=\"BuyerLastName\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2523
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"CustomerTransHist\" nillable=\"false\"
2524
+ type=\"tns1:CustomerTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2525
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PaymentMeansTransHist\" nillable=\"false\"
2526
+ type=\"tns1:PaymentMeansTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
2527
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertsTransHist\" nillable=\"false\"
2528
+ type=\"tns1:AlertsTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2529
+ name=\"getTokenRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2530
+ name=\"cardNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2531
+ name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2532
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2533
+ name=\"getTokenResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2534
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2535
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2536
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"maskedCardNumber\" nillable=\"false\"
2537
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
2538
+ name=\"expirationDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2539
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"virtualCard\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2540
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardType\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2541
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardProduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2542
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"acceptanceNetwork\" nillable=\"false\"
2543
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
2544
+ name=\"bank\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2545
+ name=\"unBlockRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2546
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2547
+ name=\"transactionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2548
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2549
+ name=\"unBlockResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2550
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
2551
+ name=\"updatePaymentRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2552
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2553
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2554
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2555
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurringForUpdate\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2556
+ name=\"updatePaymentRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2557
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2558
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
2559
+ name=\"isDisabled\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2560
+ name=\"disableDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2561
+ name=\"privateDataList\" nillable=\"false\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2562
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2563
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
2564
+ name=\"getBillingRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2565
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2566
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2567
+ name=\"billingRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2568
+ name=\"getBillingRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2569
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2570
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
2571
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2572
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2573
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
2574
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2575
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2576
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
2577
+ name=\"updateBillingRecordRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2578
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2579
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2580
+ name=\"billingRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2581
+ name=\"billingRecordForUpdate\" nillable=\"false\" type=\"tns1:billingRecordForUpdate\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
2582
+ name=\"updateBillingRecordResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2583
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2584
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
2585
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2586
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2587
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
2588
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
2589
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
2590
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t<element
2591
+ name=\"doBankTransferRequest\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2592
+ element is the request for the doBankTransfer\r\n\t\t\t\t\t\t\tmethod\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2593
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2594
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
2595
+ name=\"creditor\" nillable=\"false\" type=\"tns1:creditor\"/>\r\n\t\t\t\t\t\t<element
2596
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2597
+ name=\"transactionID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
2598
+ name=\"orderID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
2599
+ name=\"doBankTransferResponse\">\r\n\t\t\t\t<complexType>\r\n\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\t\tThis
2600
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoBankTransfer method\r\n\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t</annotation>\r\n\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t<element
2601
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
2602
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t\r\n\t\t\t\r\n\t\t</schema>\r\n
2603
+ \ <schema elementFormDefault=\"qualified\" targetNamespace=\"http://obj.ws.payline.experian.com\"
2604
+ xmlns=\"http://www.w3.org/2001/XMLSchema\">\r\n\t\t\t<complexType name=\"result\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2605
+ element contains information about the\r\n\t\t\t\t\t\tprocess\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2606
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2607
+ minOccurs=\"0\" name=\"shortMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2608
+ minOccurs=\"0\" name=\"longMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2609
+ minOccurs=\"0\" name=\"partnerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2610
+ minOccurs=\"0\" name=\"partnerCodeLabel\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2611
+ name=\"cardOut\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
2612
+ name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2613
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2614
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2615
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2616
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
2617
+ name=\"extendedCardType\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
2618
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2619
+ minOccurs=\"0\" name=\"isCvd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2620
+ minOccurs=\"0\" name=\"bank\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2621
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2622
+ minOccurs=\"0\" name=\"network\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2623
+ minOccurs=\"0\" name=\"product\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2624
+ name=\"order\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2625
+ element contains information about the\r\n\t\t\t\t\t\torder\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2626
+ name=\"ref\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2627
+ minOccurs=\"0\" name=\"origin\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2628
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2629
+ minOccurs=\"0\" name=\"taxes\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2630
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2631
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2632
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2633
+ minOccurs=\"0\" name=\"details\" nillable=\"true\" type=\"tns1:details\"/>\r\n\t\t\t\t\t<element
2634
+ minOccurs=\"0\" name=\"deliveryTime\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2635
+ minOccurs=\"0\" name=\"deliveryMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2636
+ minOccurs=\"0\" name=\"deliveryExpectedDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2637
+ minOccurs=\"0\" name=\"deliveryExpectedDelay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2638
+ name=\"key\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2639
+ element contains information about the\r\n\t\t\t\t\t\tencryptionKey\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2640
+ name=\"keyId\" nillable=\"false\" type=\"xsd:integer\"/>\r\n\t\t\t\t\t<element
2641
+ name=\"modulus\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2642
+ name=\"publicExponent\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2643
+ name=\"expirationDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2644
+ name=\"details\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2645
+ element contains an array of orderDetail\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2646
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"details\" type=\"tns1:orderDetail\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
2647
+ name=\"orderDetail\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2648
+ element contains information about the\r\n\t\t\t\t\t\torder\r\n\t\t\t\t\t\tproduct\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2649
+ minOccurs=\"0\" name=\"ref\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2650
+ minOccurs=\"0\" name=\"price\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2651
+ minOccurs=\"0\" name=\"quantity\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2652
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2653
+ minOccurs=\"0\" name=\"category\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2654
+ minOccurs=\"0\" name=\"brand\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2655
+ minOccurs=\"0\" name=\"subcategory1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2656
+ minOccurs=\"0\" name=\"subcategory2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2657
+ minOccurs=\"0\" name=\"additionalData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2658
+ minOccurs=\"0\" name=\"taxRate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2659
+ name=\"privateData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2660
+ element contains information about the\r\n\t\t\t\t\t\tmerchant\r\n\t\t\t\t\t\tprivate
2661
+ data\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2662
+ name=\"key\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2663
+ name=\"value\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2664
+ name=\"transaction\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2665
+ element contains information about the\r\n\t\t\t\t\t\ttransaction\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2666
+ name=\"id\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2667
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2668
+ minOccurs=\"0\" name=\"isDuplicated\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2669
+ name=\"isPossibleFraud\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2670
+ minOccurs=\"0\" name=\"fraudResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2671
+ minOccurs=\"0\" name=\"fraudResultDetails\" nillable=\"true\" type=\"tns1:fraudResultDetails\"/>\r\n\t\t\t\t\t<element
2672
+ minOccurs=\"0\" name=\"explanation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2673
+ minOccurs=\"0\" name=\"threeDSecure\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2674
+ minOccurs=\"0\" name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2675
+ minOccurs=\"0\" name=\"score\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2676
+ minOccurs=\"0\" name=\"externalWalletType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2677
+ minOccurs=\"0\" name=\"externalWalletContractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2678
+ minOccurs=\"0\" name=\"partnerAdditionalData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2679
+ name=\"fraudResultDetails\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2680
+ element contains information about the\r\n\t\t\t\t\t\tfraud\r\n\t\t\t\t\t\tresult
2681
+ details\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2682
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2683
+ name=\"shortMessage\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2684
+ name=\"longMessage\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2685
+ name=\"payment\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2686
+ element contains information about the\r\n\t\t\t\t\t\tpayment\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2687
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2688
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2689
+ name=\"action\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2690
+ name=\"mode\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2691
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2692
+ minOccurs=\"0\" name=\"differedActionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2693
+ minOccurs=\"0\" name=\"method\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2694
+ name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2695
+ minOccurs=\"0\" name=\"cardBrand\" nillable=\"true\" type=\"string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2696
+ name=\"authorization\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2697
+ element contains information about the\r\n\t\t\t\t\t\tauthorization\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2698
+ name=\"number\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2699
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2700
+ name=\"paymentData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2701
+ element contains information about the paymentData\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2702
+ minOccurs=\"0\" name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2703
+ minOccurs=\"0\" name=\"network\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2704
+ minOccurs=\"0\" name=\"tokenData\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2705
+ name=\"card\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2706
+ element contains information about the card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2707
+ minOccurs=\"0\" name=\"encryptionKeyId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2708
+ minOccurs=\"0\" name=\"encryptedData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2709
+ minOccurs=\"0\" name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2710
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2711
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2712
+ minOccurs=\"0\" name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2713
+ minOccurs=\"0\" name=\"ownerBirthdayDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2714
+ minOccurs=\"0\" name=\"password\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2715
+ minOccurs=\"0\" name=\"cardPresent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2716
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2717
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2718
+ minOccurs=\"0\" name=\"paymentData\" nillable=\"true\" type=\"tns1:paymentData\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2719
+ name=\"buyer\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2720
+ element contains information about the\r\n\t\t\t\t\t\tbuyer\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2721
+ name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2722
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2723
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2724
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2725
+ name=\"shippingAdress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
2726
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
2727
+ name=\"accountCreateDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2728
+ name=\"accountAverageAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2729
+ name=\"accountOrderCount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2730
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2731
+ name=\"walletDisplayed\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2732
+ name=\"walletSecured\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2733
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2734
+ name=\"ip\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2735
+ name=\"mobilePhone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2736
+ name=\"customerId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2737
+ name=\"legalStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2738
+ name=\"legalDocument\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2739
+ name=\"birthDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2740
+ name=\"fingerprintID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2741
+ name=\"deviceFingerprint\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2742
+ name=\"isBot\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2743
+ name=\"isIncognito\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2744
+ name=\"isBehindProxy\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2745
+ name=\"isFromTor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2746
+ name=\"isEmulator\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2747
+ name=\"isRooted\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2748
+ name=\"hasTimezoneMismatch\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2749
+ name=\"owner\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2750
+ element contains information about the\r\n\t\t\t\t\t\towner\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2751
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2752
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2753
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:addressOwner\"/>\r\n\t\t\t\t\t<element
2754
+ name=\"issueCardDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2755
+ name=\"address\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2756
+ element contains information about the\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2757
+ minOccurs=\"0\" name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2758
+ minOccurs=\"0\" name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2759
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2760
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2761
+ minOccurs=\"0\" name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2762
+ minOccurs=\"0\" name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2763
+ minOccurs=\"0\" name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2764
+ minOccurs=\"0\" name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2765
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2766
+ minOccurs=\"0\" name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2767
+ minOccurs=\"0\" name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2768
+ minOccurs=\"0\" name=\"county\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2769
+ minOccurs=\"0\" name=\"phoneType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2770
+ name=\"addressOwner\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2771
+ element contains information about the\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2772
+ name=\"street\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2773
+ name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2774
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2775
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2776
+ name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2777
+ name=\"capture\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2778
+ element contains information about the\r\n\t\t\t\t\t\tcapture\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2779
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2780
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2781
+ name=\"refund\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2782
+ element contains information about the\r\n\t\t\t\t\t\trefund\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2783
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2784
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2785
+ name=\"selectedContractList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2786
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2787
+ maxOccurs=\"25\" minOccurs=\"1\" name=\"selectedContract\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2788
+ name=\"privateDataList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2789
+ array of private data\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2790
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"privateData\" type=\"tns1:privateData\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2791
+ name=\"contractNumberWalletList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2792
+ array of contract number of a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2793
+ maxOccurs=\"99\" minOccurs=\"0\" name=\"contractNumberWallet\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2794
+ name=\"cardsList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2795
+ array of cards\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2796
+ maxOccurs=\"99\" minOccurs=\"0\" name=\"cards\" type=\"tns1:cards\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2797
+ name=\"captureAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2798
+ array of authorization to capture\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2799
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"capture\" type=\"tns1:capture\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2800
+ name=\"refundAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2801
+ array of authorization to refund\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2802
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"refund\" type=\"tns1:refund\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2803
+ name=\"resetAuthorizationList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2804
+ array of authorization to reset\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2805
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"transactionID\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2806
+ name=\"failedListObject\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2807
+ array of mass element failed\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2808
+ maxOccurs=\"5000\" minOccurs=\"1\" name=\"failedObject\" type=\"tns1:transaction\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2809
+ name=\"failedObject\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2810
+ element contains failedObject\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2811
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2812
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2813
+ name=\"recurring\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2814
+ element contains element for recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2815
+ name=\"firstAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2816
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2817
+ name=\"billingCycle\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2818
+ name=\"billingLeft\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2819
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2820
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2821
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2822
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2823
+ name=\"amountModificationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2824
+ name=\"recurringForUpdate\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2825
+ element contains element for update a recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2826
+ name=\"billingLeft\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2827
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2828
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2829
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2830
+ name=\"amountModificationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2831
+ name=\"billingRecord\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2832
+ element contains element for a billing\r\n\t\t\t\t\t\trecord\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2833
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2834
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2835
+ name=\"status\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2836
+ minOccurs=\"0\" name=\"result\" nillable=\"true\" type=\"tns1:result\"/>\r\n\t\t\t\t\t<element
2837
+ minOccurs=\"0\" name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t<element
2838
+ minOccurs=\"0\" name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t<element
2839
+ minOccurs=\"0\" name=\"nbTry\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2840
+ minOccurs=\"0\" name=\"rank\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2841
+ name=\"billingRecordList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2842
+ array of billing record\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2843
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"billingRecord\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t\r\n\t\t\t<complexType
2844
+ name=\"billingRecordForUpdate\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2845
+ element contains element for update a recurring\r\n\t\t\t\t\t\toperation\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2846
+ name=\"date\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2847
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2848
+ name=\"status\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2849
+ name=\"executionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t\r\n\t\t\t<complexType
2850
+ name=\"wallet\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2851
+ element contains element for a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2852
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2853
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2854
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2855
+ minOccurs=\"0\" name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2856
+ minOccurs=\"0\" name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
2857
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
2858
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2859
+ minOccurs=\"0\" name=\"default\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2860
+ minOccurs=\"0\" name=\"cardStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2861
+ minOccurs=\"0\" name=\"cardBrand\" nillable=\"true\" type=\"string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2862
+ name=\"cards\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2863
+ element contains element for a wallet\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2864
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2865
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2866
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2867
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2868
+ name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
2869
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
2870
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2871
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2872
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2873
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2874
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t<element
2875
+ name=\"default\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2876
+ name=\"walletIdList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2877
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2878
+ maxOccurs=\"500\" minOccurs=\"1\" name=\"walletId\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2879
+ name=\"transactionList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2880
+ element contains the list of selected card\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2881
+ maxOccurs=\"5000\" minOccurs=\"0\" name=\"transaction\" type=\"tns1:transaction\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2882
+ name=\"authentication3DSecure\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2883
+ element contains element for a 3DSecure\r\n\t\t\t\t\t\ttransaction\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2884
+ minOccurs=\"0\" name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2885
+ minOccurs=\"0\" name=\"pares\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2886
+ minOccurs=\"0\" name=\"xid\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2887
+ minOccurs=\"0\" name=\"eci\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2888
+ minOccurs=\"0\" name=\"cavv\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2889
+ minOccurs=\"0\" name=\"cavvAlgorithm\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2890
+ minOccurs=\"0\" name=\"vadsResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2891
+ minOccurs=\"0\" name=\"typeSecurisation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2892
+ minOccurs=\"0\" name=\"PaResStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2893
+ minOccurs=\"0\" name=\"VeResStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2894
+ name=\"connectionData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2895
+ element contains the merchant connection\r\n\t\t\t\t\t\tparameters\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2896
+ name=\"merchantId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2897
+ name=\"userId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2898
+ name=\"password\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2899
+ name=\"secretQuestion\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2900
+ name=\"secretAnswer\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2901
+ name=\"scoringCheque\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2902
+ element contains the scoring cheque parameters\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2903
+ name=\"chequeNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2904
+ name=\"additionalDataResponse\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2905
+ name=\"terminalId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2906
+ name=\"additionalPrivateData\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2907
+ name=\"addressInterlocutor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2908
+ element contains information about Interlocutor\r\n\t\t\t\t\t\taddress\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2909
+ name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2910
+ name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2911
+ name=\"city\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2912
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2913
+ name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2914
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2915
+ name=\"interlocutor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2916
+ element contains information about Interlocutor\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2917
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2918
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2919
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2920
+ name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2921
+ name=\"mobile\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2922
+ name=\"fax\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2923
+ name=\"addressInterlocutor\" nillable=\"true\" type=\"tns1:addressInterlocutor\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2924
+ name=\"option\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
2925
+ array of subscribed options\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2926
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"subscribed\"
2927
+ nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"endDate\"
2928
+ nillable=\"true\" type=\"xsd:dateTime\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2929
+ name=\"subscription\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2930
+ element contains information about the payline\r\n\t\t\t\t\t\tpackage subscribed
2931
+ by the merchant\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2932
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element maxOccurs=\"unbounded\"
2933
+ minOccurs=\"0\" name=\"option\" type=\"tns1:option\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2934
+ name=\"iban\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2935
+ element contains IBAN information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2936
+ name=\"CountryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2937
+ name=\"checkKey\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2938
+ name=\"BBAN\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2939
+ name=\"BIC\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2940
+ name=\"rib\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2941
+ element contains RIB information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2942
+ name=\"tellerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2943
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2944
+ name=\"key\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2945
+ name=\"bankAccount\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2946
+ element contains bankAccount information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2947
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2948
+ name=\"bankNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2949
+ name=\"iban\" nillable=\"true\" type=\"tns1:iban\"/>\r\n\t\t\t\t\t<element
2950
+ name=\"rib\" nillable=\"true\" type=\"tns1:rib\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2951
+ name=\"bankAccountData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2952
+ element contains bank Account information\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2953
+ name=\"countryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2954
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2955
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2956
+ name=\"key\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2957
+ name=\"technicalData\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2958
+ element contains technical data used to define\r\n\t\t\t\t\t\tacquirer service\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2959
+ name=\"terminalNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2960
+ name=\"GTInstance\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2961
+ name=\"paymentProfil\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2962
+ name=\"contract\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2963
+ element contains all information about contract\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2964
+ name=\"cardType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2965
+ minOccurs=\"0\" name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2966
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2967
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2968
+ default=\"Manual\" name=\"settlementType\">\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
2969
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<enumeration value=\"Manual\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
2970
+ value=\"Now\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"1Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
2971
+ value=\"2Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"3Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
2972
+ value=\"4Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"5Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
2973
+ value=\"6Day\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"7Day\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2974
+ name=\"maxAmountPerTransaction\" nillable=\"true\" type=\"xsd:int\"/>\r\n\t\t\t\t\t<element
2975
+ name=\"technicalData\" nillable=\"true\" type=\"tns1:technicalData\"/>\r\n\t\t\t\t\t<element
2976
+ name=\"bankAccount\" nillable=\"true\" type=\"tns1:bankAccount\"/>\r\n\t\t\t\t\t<element
2977
+ name=\"acquirerInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t<element
2978
+ name=\"description\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2979
+ name=\"logoEnable\" nillable=\"false\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
2980
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"smallLogoMime\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2981
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"smallLogo\" type=\"xsd:base64Binary\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2982
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"normalLogoMime\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2983
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"normalLogo\" type=\"xsd:base64Binary\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2984
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"contribution\" type=\"tns1:contribution\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
2985
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"enrolment3DS\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2986
+ name=\"customPaymentPageCode\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2987
+ element contains all information about\r\n\t\t\t\t\t\tcustomPaymentPageCode\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2988
+ name=\"code\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2989
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2990
+ name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2991
+ name=\"ticketSend\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2992
+ element contains information e-ticket\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2993
+ name=\"toBuyer\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
2994
+ name=\"toMerchant\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
2995
+ name=\"pointOfSell\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
2996
+ element contains all information about point of\r\n\t\t\t\t\t\tsell\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
2997
+ name=\"siret\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
2998
+ name=\"codeMcc\" nillable=\"true\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Merchant
2999
+ Category Code</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
3000
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<xsd:length value=\"4\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3001
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3002
+ name=\"webmasterEmail\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3003
+ minOccurs=\"0\" name=\"comments\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3004
+ name=\"webstoreURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3005
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3006
+ minOccurs=\"0\" name=\"privateLifeURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3007
+ minOccurs=\"0\" name=\"saleCondURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3008
+ minOccurs=\"0\" name=\"buyerMustAcceptSaleCond\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
3009
+ minOccurs=\"0\" name=\"endOfPaymentRedirection\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
3010
+ name=\"ticketSend\" nillable=\"true\" type=\"tns1:ticketSend\"/>\r\n\t\t\t\t\t<element
3011
+ name=\"contracts\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
3012
+ of contract</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
3013
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"contract\" type=\"tns1:contract\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3014
+ name=\"virtualTerminal\" nillable=\"true\" type=\"tns1:virtualTerminal\"/>\r\n\t\t\t\t\t<element
3015
+ name=\"customPaymentPageCodeList\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
3016
+ of custom payment page code</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
3017
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"customPaymentPageCode\" type=\"tns1:customPaymentPageCode\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3018
+ name=\"virtualTerminal\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>virtualTerminal</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3019
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element default=\"10\"
3020
+ name=\"inactivityDelay\" type=\"xsd:int\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>http
3021
+ session timeout delay</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3022
+ minOccurs=\"0\" name=\"logo\" type=\"xsd:string\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>path
3023
+ to logo</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3024
+ name=\"functions\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
3025
+ of functions</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t<sequence>\r\n\t\t\t\t\t\t\t\t<element
3026
+ maxOccurs=\"unbounded\" name=\"function\" type=\"tns1:virtualTerminalFunction\"/>\r\n\t\t\t\t\t\t\t</sequence>\r\n\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3027
+ name=\"virtualTerminalFunction\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>functions
3028
+ availbe in virtual terminal\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3029
+ name=\"function\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Please
3030
+ refer to Payline documentation\r\n\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
3031
+ base=\"xsd:string\">\r\n\t\t\t\t\t\t\t\t<enumeration value=\"simplePayment\"/>\r\n\t\t\t\t\t\t\t\t<enumeration
3032
+ value=\"walletCreation\"/>\r\n\t\t\t\t\t\t\t\t<enumeration value=\"nXPayment\"/>\r\n\t\t\t\t\t\t\t</restriction>\r\n\t\t\t\t\t\t</simpleType>\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3033
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<sequence minOccurs=\"0\">\r\n\t\t\t\t\t\t<element
3034
+ maxOccurs=\"unbounded\" name=\"functionParameter\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>Value
3035
+ of parameter</documentation>\r\n\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t<complexType>\r\n\t\t\t\t\t\t\t\t<attribute
3036
+ name=\"id\">\r\n\t\t\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t\t\t<documentation>Parameter
3037
+ ID. Refer to payline documentation\r\n\t\t\t\t\t\t\t\t\t\t</documentation>\r\n\t\t\t\t\t\t\t\t\t</annotation>\r\n\t\t\t\t\t\t\t\t</attribute>\r\n\t\t\t\t\t\t\t</complexType>\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t</sequence>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3038
+ name=\"cheque\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
3039
+ element contains information about the\r\n\t\t\t\t\t\tcheque\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3040
+ name=\"number\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3041
+ name=\"contribution\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
3042
+ element contains all information about\r\n\t\t\t\t\t\tcontrinution\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3043
+ name=\"enable\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"type\"
3044
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"value\"
3045
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"nbFreeTransaction\"
3046
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"minAmountTransaction\"
3047
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"maxAmountTransaction\"
3048
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3049
+ name=\"associatedTransactions\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
3050
+ element contains information about the\r\n\t\t\t\t\t\tassociated transactions\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3051
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3052
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3053
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
3054
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
3055
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
3056
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3057
+ name=\"associatedTransactionsList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3058
+ array of associatedTransactions\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3059
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"associatedTransactions\" type=\"tns1:associatedTransactions\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3060
+ name=\"statusHistory\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
3061
+ element contains information about the\r\n\t\t\t\t\t\tstatus\r\n\t\t\t\t\t\tHistory\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3062
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3063
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
3064
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"fees\"
3065
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
3066
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
3067
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3068
+ name=\"statusHistoryList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3069
+ array of statusHistory\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3070
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"statusHistory\" type=\"tns1:statusHistory\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n<complexType
3071
+ name=\"paymentAdditional\">\r\n\t<annotation>\r\n\t\t<documentation>\r\n\t\t\tThis
3072
+ element contains information about the\r\n\t\t\tpaymentAdditional\r\n\t\t</documentation>\r\n\t</annotation>\r\n\t<sequence>\r\n\t\t<element
3073
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t<element
3074
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t<element
3075
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t<element
3076
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t<element
3077
+ minOccurs=\"0\" name=\"card\" nillable=\"true\" type=\"tns1:cardOut\"/>\r\n\t\t<element
3078
+ minOccurs=\"0\" name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t</sequence>\r\n</complexType>\r\n\r\n\t\t\t<complexType
3079
+ name=\"paymentAdditionalList\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3080
+ array of paymentAdditionalList\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3081
+ maxOccurs=\"100\" minOccurs=\"0\" name=\"paymentAdditional\" type=\"tns1:paymentAdditional\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3082
+ name=\"CustomerTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3083
+ array of CustomerTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3084
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"CustomerTrans\" type=\"tns1:CustomerTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3085
+ name=\"CustomerTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3086
+ minOccurs=\"1\" name=\"IsLCLFAlerted\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3087
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
3088
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3089
+ minOccurs=\"1\" name=\"ReferenceOrder\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3090
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"CardCode\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3091
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
3092
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3093
+ minOccurs=\"1\" name=\"Amount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3094
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"Status\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3095
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3096
+ name=\"PaymentMeansTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3097
+ array of PaymentMeansTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3098
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"PaymentMeansTrans\" type=\"tns1:PaymentMeansTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3099
+ name=\"PaymentMeansTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3100
+ minOccurs=\"1\" name=\"IsLCLFAlerted\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3101
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
3102
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3103
+ minOccurs=\"1\" name=\"ReferenceOrder\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3104
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"CustomerData\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3105
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
3106
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3107
+ minOccurs=\"1\" name=\"Amount\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3108
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"Status\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3109
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PosLabel\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3110
+ name=\"AlertsTransHist\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tAn
3111
+ array of AlertsTrans\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3112
+ maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"AlertsTrans\" type=\"tns1:AlertsTrans\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
3113
+ name=\"AlertsTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3114
+ minOccurs=\"1\" name=\"AlertId\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3115
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExplanationLabel\" nillable=\"false\"
3116
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
3117
+ minOccurs=\"1\" name=\"ExplanationCode\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3118
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"RuleName\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3119
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"RuleAction\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element
3120
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"RuleCriteria\" nillable=\"true\" type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\r\n\t\t\t<complexType
3121
+ name=\"creditor\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>\r\n\t\t\t\t\t\tThis
3122
+ element contains information about the\r\n\t\t\t\t\t\tcreditor\r\n\t\t\t\t\t</documentation>\r\n\t\t\t\t</annotation>\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element
3123
+ name=\"bic\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3124
+ name=\"iban\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
3125
+ name=\"name\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t</schema>\r\n
3126
+ \ </wsdl:types>\r\n <wsdl:message name=\"getTransactionDetailsRequest\">\r\n
3127
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsRequest\">\r\n
3128
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentRequest\">\r\n
3129
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentRequest\">\r\n
3130
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitRequest\">\r\n
3131
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitRequest\">\r\n </wsdl:part>\r\n
3132
+ \ </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentResponse\">\r\n
3133
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentResponse\">\r\n
3134
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureResponse\">\r\n
3135
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureResponse\">\r\n
3136
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentRequest\">\r\n
3137
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentRequest\">\r\n
3138
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletRequest\">\r\n
3139
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletRequest\">\r\n
3140
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationResponse\">\r\n
3141
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationResponse\">\r\n
3142
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsResponse\">\r\n
3143
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsResponse\">\r\n
3144
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletRequest\">\r\n
3145
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletRequest\">\r\n
3146
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceResponse\">\r\n
3147
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceResponse\">\r\n
3148
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationRequest\">\r\n
3149
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationRequest\">\r\n
3150
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentRequest\">\r\n
3151
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentRequest\">\r\n
3152
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebWalletRequest\">\r\n
3153
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebWalletRequest\">\r\n
3154
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationResponse\">\r\n
3155
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationResponse\">\r\n
3156
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeRequest\">\r\n
3157
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeRequest\">\r\n
3158
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferRequest\">\r\n
3159
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferRequest\">\r\n
3160
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRefundRequest\">\r\n
3161
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRefundRequest\">\r\n </wsdl:part>\r\n
3162
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassResetRequest\">\r\n <wsdl:part
3163
+ name=\"parameters\" element=\"impl:doMassResetRequest\">\r\n </wsdl:part>\r\n
3164
+ \ </wsdl:message>\r\n <wsdl:message name=\"getWebWalletResponse\">\r\n <wsdl:part
3165
+ name=\"parameters\" element=\"impl:getWebWalletResponse\">\r\n </wsdl:part>\r\n
3166
+ \ </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsRequest\">\r\n
3167
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsRequest\">\r\n
3168
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceRequest\">\r\n
3169
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceRequest\">\r\n
3170
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletRequest\">\r\n
3171
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletRequest\">\r\n
3172
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeResponse\">\r\n
3173
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeResponse\">\r\n
3174
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordResponse\">\r\n
3175
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordResponse\">\r\n
3176
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordRequest\">\r\n
3177
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordRequest\">\r\n
3178
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletRequest\">\r\n
3179
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletRequest\">\r\n
3180
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockRequest\">\r\n
3181
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockRequest\">\r\n </wsdl:part>\r\n
3182
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassRefundRequest\">\r\n <wsdl:part
3183
+ name=\"parameters\" element=\"impl:doMassRefundRequest\">\r\n </wsdl:part>\r\n
3184
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletRequest\">\r\n <wsdl:part
3185
+ name=\"parameters\" element=\"impl:enableWalletRequest\">\r\n </wsdl:part>\r\n
3186
+ \ </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentRequest\">\r\n
3187
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentRequest\">\r\n
3188
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletResponse\">\r\n
3189
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletResponse\">\r\n
3190
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentResponse\">\r\n
3191
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentResponse\">\r\n
3192
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationRequest\">\r\n
3193
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationRequest\">\r\n
3194
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentRequest\">\r\n
3195
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentRequest\">\r\n
3196
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletResponse\">\r\n
3197
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletResponse\">\r\n
3198
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitResponse\">\r\n
3199
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitResponse\">\r\n </wsdl:part>\r\n
3200
+ \ </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordResponse\">\r\n
3201
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordResponse\">\r\n
3202
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferResponse\">\r\n
3203
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferResponse\">\r\n
3204
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassRefundResponse\">\r\n
3205
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassRefundResponse\">\r\n
3206
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletRequest\">\r\n
3207
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletRequest\">\r\n
3208
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureRequest\">\r\n
3209
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureRequest\">\r\n
3210
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantRequest\">\r\n
3211
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantRequest\">\r\n
3212
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyResponse\">\r\n
3213
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyResponse\">\r\n
3214
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantResponse\">\r\n
3215
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantResponse\">\r\n
3216
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsRequest\">\r\n
3217
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsRequest\">\r\n
3218
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsRequest\">\r\n
3219
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsRequest\">\r\n
3220
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletResponse\">\r\n
3221
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletResponse\">\r\n
3222
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentResponse\">\r\n
3223
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentResponse\">\r\n
3224
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletResponse\">\r\n
3225
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletResponse\">\r\n
3226
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletRequest\">\r\n
3227
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletRequest\">\r\n
3228
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassResetResponse\">\r\n
3229
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassResetResponse\">\r\n
3230
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditResponse\">\r\n
3231
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditResponse\">\r\n
3232
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordResponse\">\r\n
3233
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordResponse\">\r\n
3234
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchRequest\">\r\n
3235
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchRequest\">\r\n
3236
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordRequest\">\r\n
3237
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordRequest\">\r\n
3238
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getTokenResponse\">\r\n
3239
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTokenResponse\">\r\n
3240
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsResponse\">\r\n
3241
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsResponse\">\r\n
3242
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentResponse\">\r\n
3243
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentResponse\">\r\n
3244
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordRequest\">\r\n
3245
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordRequest\">\r\n
3246
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationRequest\">\r\n
3247
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationRequest\">\r\n
3248
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletRequest\">\r\n
3249
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletRequest\">\r\n
3250
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyRequest\">\r\n
3251
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyRequest\">\r\n
3252
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureResponse\">\r\n
3253
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureResponse\">\r\n
3254
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetResponse\">\r\n
3255
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetResponse\">\r\n </wsdl:part>\r\n
3256
+ \ </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletResponse\">\r\n
3257
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletResponse\">\r\n
3258
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletResponse\">\r\n
3259
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletResponse\">\r\n
3260
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockResponse\">\r\n
3261
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockResponse\">\r\n </wsdl:part>\r\n
3262
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsResponse\">\r\n
3263
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsResponse\">\r\n
3264
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationResponse\">\r\n
3265
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationResponse\">\r\n
3266
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditRequest\">\r\n
3267
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditRequest\">\r\n </wsdl:part>\r\n
3268
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTokenRequest\">\r\n <wsdl:part
3269
+ name=\"parameters\" element=\"impl:getTokenRequest\">\r\n </wsdl:part>\r\n
3270
+ \ </wsdl:message>\r\n <wsdl:message name=\"doRefundResponse\">\r\n <wsdl:part
3271
+ name=\"parameters\" element=\"impl:doRefundResponse\">\r\n </wsdl:part>\r\n
3272
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTransactionDetailsResponse\">\r\n
3273
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsResponse\">\r\n
3274
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsResponse\">\r\n
3275
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsResponse\">\r\n
3276
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureRequest\">\r\n
3277
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureRequest\">\r\n
3278
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordRequest\">\r\n
3279
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordRequest\">\r\n
3280
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordRequest\">\r\n
3281
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordRequest\">\r\n
3282
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletResponse\">\r\n
3283
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletResponse\">\r\n
3284
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordResponse\">\r\n
3285
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordResponse\">\r\n
3286
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentResponse\">\r\n
3287
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentResponse\">\r\n
3288
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsRequest\">\r\n
3289
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsRequest\">\r\n
3290
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetRequest\">\r\n
3291
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetRequest\">\r\n </wsdl:part>\r\n
3292
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletResponse\">\r\n <wsdl:part
3293
+ name=\"parameters\" element=\"impl:enableWalletResponse\">\r\n </wsdl:part>\r\n
3294
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsResponse\">\r\n
3295
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsResponse\">\r\n
3296
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordResponse\">\r\n
3297
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordResponse\">\r\n
3298
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchResponse\">\r\n
3299
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchResponse\">\r\n
3300
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsRequest\">\r\n
3301
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsRequest\">\r\n </wsdl:part>\r\n
3302
+ \ </wsdl:message>\r\n <wsdl:portType name=\"WebPaymentAPI\">\r\n <wsdl:operation
3303
+ name=\"doWebPayment\">\r\n <wsdl:input name=\"doWebPaymentRequest\" message=\"impl:doWebPaymentRequest\">\r\n
3304
+ \ </wsdl:input>\r\n <wsdl:output name=\"doWebPaymentResponse\" message=\"impl:doWebPaymentResponse\">\r\n
3305
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebPaymentDetails\">\r\n
3306
+ \ <wsdl:input name=\"getWebPaymentDetailsRequest\" message=\"impl:getWebPaymentDetailsRequest\">\r\n
3307
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebPaymentDetailsResponse\"
3308
+ message=\"impl:getWebPaymentDetailsResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3309
+ \ <wsdl:operation name=\"manageWebWallet\">\r\n <wsdl:input name=\"manageWebWalletRequest\"
3310
+ message=\"impl:manageWebWalletRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3311
+ name=\"manageWebWalletResponse\" message=\"impl:manageWebWalletResponse\">\r\n
3312
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWebWallet\">\r\n
3313
+ \ <wsdl:input name=\"createWebWalletRequest\" message=\"impl:createWebWalletRequest\">\r\n
3314
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWebWalletResponse\" message=\"impl:createWebWalletResponse\">\r\n
3315
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWebWallet\">\r\n
3316
+ \ <wsdl:input name=\"updateWebWalletRequest\" message=\"impl:updateWebWalletRequest\">\r\n
3317
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWebWalletResponse\" message=\"impl:updateWebWalletResponse\">\r\n
3318
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n
3319
+ \ <wsdl:input name=\"getWebWalletRequest\" message=\"impl:getWebWalletRequest\">\r\n
3320
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebWalletResponse\" message=\"impl:getWebWalletResponse\">\r\n
3321
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
3322
+ name=\"DirectPaymentAPI\">\r\n <wsdl:operation name=\"doAuthorization\">\r\n
3323
+ \ <wsdl:input name=\"doAuthorizationRequest\" message=\"impl:doAuthorizationRequest\">\r\n
3324
+ \ </wsdl:input>\r\n <wsdl:output name=\"doAuthorizationResponse\" message=\"impl:doAuthorizationResponse\">\r\n
3325
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCapture\">\r\n
3326
+ \ <wsdl:input name=\"doCaptureRequest\" message=\"impl:doCaptureRequest\">\r\n
3327
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCaptureResponse\" message=\"impl:doCaptureResponse\">\r\n
3328
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
3329
+ \ <wsdl:input name=\"doReAuthorizationRequest\" message=\"impl:doReAuthorizationRequest\">\r\n
3330
+ \ </wsdl:input>\r\n <wsdl:output name=\"doReAuthorizationResponse\"
3331
+ message=\"impl:doReAuthorizationResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3332
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdl:input name=\"doDebitRequest\"
3333
+ message=\"impl:doDebitRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3334
+ name=\"doDebitResponse\" message=\"impl:doDebitResponse\">\r\n </wsdl:output>\r\n
3335
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdl:input
3336
+ name=\"doRefundRequest\" message=\"impl:doRefundRequest\">\r\n </wsdl:input>\r\n
3337
+ \ <wsdl:output name=\"doRefundResponse\" message=\"impl:doRefundResponse\">\r\n
3338
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReset\">\r\n
3339
+ \ <wsdl:input name=\"doResetRequest\" message=\"impl:doResetRequest\">\r\n
3340
+ \ </wsdl:input>\r\n <wsdl:output name=\"doResetResponse\" message=\"impl:doResetResponse\">\r\n
3341
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n
3342
+ \ <wsdl:input name=\"doCreditRequest\" message=\"impl:doCreditRequest\">\r\n
3343
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCreditResponse\" message=\"impl:doCreditResponse\">\r\n
3344
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWallet\">\r\n
3345
+ \ <wsdl:input name=\"createWalletRequest\" message=\"impl:createWalletRequest\">\r\n
3346
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWalletResponse\" message=\"impl:createWalletResponse\">\r\n
3347
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n
3348
+ \ <wsdl:input name=\"updateWalletRequest\" message=\"impl:updateWalletRequest\">\r\n
3349
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWalletResponse\" message=\"impl:updateWalletResponse\">\r\n
3350
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWallet\">\r\n
3351
+ \ <wsdl:input name=\"getWalletRequest\" message=\"impl:getWalletRequest\">\r\n
3352
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWalletResponse\" message=\"impl:getWalletResponse\">\r\n
3353
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n
3354
+ \ <wsdl:input name=\"getCardsRequest\" message=\"impl:getCardsRequest\">\r\n
3355
+ \ </wsdl:input>\r\n <wsdl:output name=\"getCardsResponse\" message=\"impl:getCardsResponse\">\r\n
3356
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"disableWallet\">\r\n
3357
+ \ <wsdl:input name=\"disableWalletRequest\" message=\"impl:disableWalletRequest\">\r\n
3358
+ \ </wsdl:input>\r\n <wsdl:output name=\"disableWalletResponse\" message=\"impl:disableWalletResponse\">\r\n
3359
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n
3360
+ \ <wsdl:input name=\"enableWalletRequest\" message=\"impl:enableWalletRequest\">\r\n
3361
+ \ </wsdl:input>\r\n <wsdl:output name=\"enableWalletResponse\" message=\"impl:enableWalletResponse\">\r\n
3362
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doImmediateWalletPayment\">\r\n
3363
+ \ <wsdl:input name=\"doImmediateWalletPaymentRequest\" message=\"impl:doImmediateWalletPaymentRequest\">\r\n
3364
+ \ </wsdl:input>\r\n <wsdl:output name=\"doImmediateWalletPaymentResponse\"
3365
+ message=\"impl:doImmediateWalletPaymentResponse\">\r\n </wsdl:output>\r\n
3366
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
3367
+ \ <wsdl:input name=\"doScheduledWalletPaymentRequest\" message=\"impl:doScheduledWalletPaymentRequest\">\r\n
3368
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScheduledWalletPaymentResponse\"
3369
+ message=\"impl:doScheduledWalletPaymentResponse\">\r\n </wsdl:output>\r\n
3370
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n
3371
+ \ <wsdl:input name=\"doRecurrentWalletPaymentRequest\" message=\"impl:doRecurrentWalletPaymentRequest\">\r\n
3372
+ \ </wsdl:input>\r\n <wsdl:output name=\"doRecurrentWalletPaymentResponse\"
3373
+ message=\"impl:doRecurrentWalletPaymentResponse\">\r\n </wsdl:output>\r\n
3374
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getPaymentRecord\">\r\n
3375
+ \ <wsdl:input name=\"getPaymentRecordRequest\" message=\"impl:getPaymentRecordRequest\">\r\n
3376
+ \ </wsdl:input>\r\n <wsdl:output name=\"getPaymentRecordResponse\"
3377
+ message=\"impl:getPaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3378
+ \ <wsdl:operation name=\"disablePaymentRecord\">\r\n <wsdl:input name=\"disablePaymentRecordRequest\"
3379
+ message=\"impl:disablePaymentRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3380
+ name=\"disablePaymentRecordResponse\" message=\"impl:disablePaymentRecordResponse\">\r\n
3381
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"verifyEnrollment\">\r\n
3382
+ \ <wsdl:input name=\"verifyEnrollmentRequest\" message=\"impl:verifyEnrollmentRequest\">\r\n
3383
+ \ </wsdl:input>\r\n <wsdl:output name=\"verifyEnrollmentResponse\"
3384
+ message=\"impl:verifyEnrollmentResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3385
+ \ <wsdl:operation name=\"verifyAuthentication\">\r\n <wsdl:input name=\"verifyAuthenticationRequest\"
3386
+ message=\"impl:verifyAuthenticationRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3387
+ name=\"verifyAuthenticationResponse\" message=\"impl:verifyAuthenticationResponse\">\r\n
3388
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
3389
+ \ <wsdl:input name=\"createMerchantRequest\" message=\"impl:createMerchantRequest\">\r\n
3390
+ \ </wsdl:input>\r\n <wsdl:output name=\"createMerchantResponse\" message=\"impl:createMerchantResponse\">\r\n
3391
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doScoringCheque\">\r\n
3392
+ \ <wsdl:input name=\"doScoringChequeRequest\" message=\"impl:doScoringChequeRequest\">\r\n
3393
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScoringChequeResponse\" message=\"impl:doScoringChequeResponse\">\r\n
3394
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getEncryptionKey\">\r\n
3395
+ \ <wsdl:input name=\"getEncryptionKeyRequest\" message=\"impl:getEncryptionKeyRequest\">\r\n
3396
+ \ </wsdl:input>\r\n <wsdl:output name=\"getEncryptionKeyResponse\"
3397
+ message=\"impl:getEncryptionKeyResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3398
+ \ <wsdl:operation name=\"getMerchantSettings\">\r\n <wsdl:input name=\"getMerchantSettingsRequest\"
3399
+ message=\"impl:getMerchantSettingsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3400
+ name=\"getMerchantSettingsResponse\" message=\"impl:getMerchantSettingsResponse\">\r\n
3401
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getBalance\">\r\n
3402
+ \ <wsdl:input name=\"getBalanceRequest\" message=\"impl:getBalanceRequest\">\r\n
3403
+ \ </wsdl:input>\r\n <wsdl:output name=\"getBalanceResponse\" message=\"impl:getBalanceResponse\">\r\n
3404
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n
3405
+ \ <wsdl:input message=\"impl:getTokenRequest\">\r\n </wsdl:input>\r\n
3406
+ \ <wsdl:output message=\"impl:getTokenResponse\">\r\n </wsdl:output>\r\n
3407
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"unBlock\">\r\n <wsdl:input
3408
+ name=\"unBlockRequest\" message=\"impl:unBlockRequest\">\r\n </wsdl:input>\r\n
3409
+ \ <wsdl:output name=\"unBlockResponse\" message=\"impl:unBlockResponse\">\r\n
3410
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
3411
+ \ <wsdl:input name=\"updatePaymentRecordRequest\" message=\"impl:updatePaymentRecordRequest\">\r\n
3412
+ \ </wsdl:input>\r\n <wsdl:output name=\"updatePaymentRecordResponse\"
3413
+ message=\"impl:updatePaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3414
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdl:input name=\"getBillingRecordRequest\"
3415
+ message=\"impl:getBillingRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3416
+ name=\"getBillingRecordResponse\" message=\"impl:getBillingRecordResponse\">\r\n
3417
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateBillingRecord\">\r\n
3418
+ \ <wsdl:input name=\"updateBillingRecordRequest\" message=\"impl:updateBillingRecordRequest\">\r\n
3419
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateBillingRecordResponse\"
3420
+ message=\"impl:updateBillingRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3421
+ \ <wsdl:operation name=\"doBankTransfer\">\r\n <wsdl:input name=\"doBankTransferRequest\"
3422
+ message=\"impl:doBankTransferRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3423
+ name=\"doBankTransferResponse\" message=\"impl:doBankTransferResponse\">\r\n
3424
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
3425
+ name=\"MassPaymentAPI\">\r\n <wsdl:operation name=\"doMassCapture\">\r\n
3426
+ \ <wsdl:input name=\"doMassCaptureRequest\" message=\"impl:doMassCaptureRequest\">\r\n
3427
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassCaptureResponse\" message=\"impl:doMassCaptureResponse\">\r\n
3428
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassRefund\">\r\n
3429
+ \ <wsdl:input name=\"doMassRefundRequest\" message=\"impl:doMassRefundRequest\">\r\n
3430
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassRefundResponse\" message=\"impl:doMassRefundResponse\">\r\n
3431
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassReset\">\r\n
3432
+ \ <wsdl:input name=\"doMassResetRequest\" message=\"impl:doMassResetRequest\">\r\n
3433
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassResetResponse\" message=\"impl:doMassResetResponse\">\r\n
3434
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
3435
+ \ <wsdl:input name=\"getMassTraitmentDetailsRequest\" message=\"impl:getMassTraitmentDetailsRequest\">\r\n
3436
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMassTraitmentDetailsResponse\"
3437
+ message=\"impl:getMassTraitmentDetailsResponse\">\r\n </wsdl:output>\r\n
3438
+ \ </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType name=\"ExtendedAPI\">\r\n
3439
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdl:input name=\"getTransactionDetailsRequest\"
3440
+ message=\"impl:getTransactionDetailsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
3441
+ name=\"getTransactionDetailsResponse\" message=\"impl:getTransactionDetailsResponse\">\r\n
3442
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"transactionsSearch\">\r\n
3443
+ \ <wsdl:input name=\"transactionsSearchRequest\" message=\"impl:transactionsSearchRequest\">\r\n
3444
+ \ </wsdl:input>\r\n <wsdl:output name=\"transactionsSearchResponse\"
3445
+ message=\"impl:transactionsSearchResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3446
+ \ <wsdl:operation name=\"getAlertDetails\">\r\n <wsdl:input message=\"impl:getAlertDetailsRequest\">\r\n
3447
+ \ </wsdl:input>\r\n <wsdl:output message=\"impl:getAlertDetailsResponse\">\r\n
3448
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:binding
3449
+ name=\"DirectPaymentAPISoapBinding\" type=\"impl:DirectPaymentAPI\">\r\n <wsdlsoap:binding
3450
+ style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
3451
+ \ <wsdl:operation name=\"doAuthorization\">\r\n <wsdlsoap:operation
3452
+ soapAction=\"doAuthorization\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3453
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3454
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3455
+ name=\"doCapture\">\r\n <wsdlsoap:operation soapAction=\"doCapture\"/>\r\n
3456
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3457
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3458
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
3459
+ \ <wsdlsoap:operation soapAction=\"doReAuthorization\"/>\r\n <wsdl:input>\r\n
3460
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3461
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3462
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdlsoap:operation soapAction=\"doDebit\"/>\r\n
3463
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3464
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3465
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdlsoap:operation
3466
+ soapAction=\"doRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3467
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3468
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3469
+ name=\"doReset\">\r\n <wsdlsoap:operation soapAction=\"doReset\"/>\r\n
3470
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3471
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3472
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n <wsdlsoap:operation
3473
+ soapAction=\"doCredit\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3474
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3475
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3476
+ name=\"createWallet\">\r\n <wsdlsoap:operation soapAction=\"createWallet\"/>\r\n
3477
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3478
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3479
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n <wsdlsoap:operation
3480
+ soapAction=\"updateWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3481
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3482
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3483
+ name=\"getWallet\">\r\n <wsdlsoap:operation soapAction=\"getWallet\"/>\r\n
3484
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3485
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3486
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n <wsdlsoap:operation
3487
+ soapAction=\"getCards\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3488
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3489
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3490
+ name=\"disableWallet\">\r\n <wsdlsoap:operation soapAction=\"disableWallet\"/>\r\n
3491
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3492
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3493
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n <wsdlsoap:operation
3494
+ soapAction=\"enableWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3495
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3496
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3497
+ name=\"doImmediateWalletPayment\">\r\n <wsdlsoap:operation soapAction=\"doImmediateWalletPayment\"/>\r\n
3498
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3499
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3500
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
3501
+ \ <wsdlsoap:operation soapAction=\"doScheduledWalletPayment\"/>\r\n <wsdl:input>\r\n
3502
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3503
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3504
+ \ <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n <wsdlsoap:operation
3505
+ soapAction=\"doRecurrentWalletPayment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3506
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3507
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3508
+ name=\"getPaymentRecord\">\r\n <wsdlsoap:operation soapAction=\"getPaymentRecord\"/>\r\n
3509
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3510
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3511
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"disablePaymentRecord\">\r\n
3512
+ \ <wsdlsoap:operation soapAction=\"disablePaymentRecord\"/>\r\n <wsdl:input>\r\n
3513
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3514
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3515
+ \ <wsdl:operation name=\"verifyEnrollment\">\r\n <wsdlsoap:operation
3516
+ soapAction=\"verifyEnrollment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3517
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3518
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3519
+ name=\"verifyAuthentication\">\r\n <wsdlsoap:operation soapAction=\"verifyAuthentication\"/>\r\n
3520
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3521
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3522
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
3523
+ \ <wsdlsoap:operation soapAction=\"createMerchant\"/>\r\n <wsdl:input>\r\n
3524
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3525
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3526
+ \ <wsdl:operation name=\"doScoringCheque\">\r\n <wsdlsoap:operation
3527
+ soapAction=\"doScoringCheque\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3528
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3529
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3530
+ name=\"getEncryptionKey\">\r\n <wsdlsoap:operation soapAction=\"getEncryptionKey\"/>\r\n
3531
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3532
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3533
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMerchantSettings\">\r\n
3534
+ \ <wsdlsoap:operation soapAction=\"getMerchantSettings\"/>\r\n <wsdl:input
3535
+ name=\"getMerchantSettingsRequest\">\r\n <wsdlsoap:body use=\"literal\"/>\r\n
3536
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMerchantSettingsResponse\">\r\n
3537
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3538
+ \ <wsdl:operation name=\"getBalance\">\r\n <wsdlsoap:operation soapAction=\"getBalance\"/>\r\n
3539
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3540
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3541
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n <wsdlsoap:operation
3542
+ soapAction=\"getToken\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3543
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3544
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3545
+ name=\"unBlock\">\r\n <wsdlsoap:operation soapAction=\"unBlock\"/>\r\n
3546
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3547
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3548
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
3549
+ \ <wsdlsoap:operation soapAction=\"updatePaymentRecord\"/>\r\n <wsdl:input>\r\n
3550
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3551
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3552
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdlsoap:operation
3553
+ soapAction=\"getBillingRecord\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3554
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3555
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3556
+ name=\"updateBillingRecord\">\r\n <wsdlsoap:operation soapAction=\"updateBillingRecord\"/>\r\n
3557
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3558
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3559
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doBankTransfer\">\r\n
3560
+ \ <wsdlsoap:operation soapAction=\"doBankTransfer\"/>\r\n <wsdl:input>\r\n
3561
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3562
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3563
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"WebPaymentAPISoapBinding\" type=\"impl:WebPaymentAPI\">\r\n
3564
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
3565
+ \ <wsdl:operation name=\"getWebPaymentDetails\">\r\n <wsdlsoap:operation
3566
+ soapAction=\"getWebPaymentDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3567
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3568
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3569
+ name=\"doWebPayment\">\r\n <wsdlsoap:operation soapAction=\"doWebPayment\"/>\r\n
3570
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3571
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3572
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"manageWebWallet\">\r\n
3573
+ \ <wsdlsoap:operation soapAction=\"manageWebWallet\"/>\r\n <wsdl:input>\r\n
3574
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3575
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3576
+ \ <wsdl:operation name=\"createWebWallet\">\r\n <wsdlsoap:operation
3577
+ soapAction=\"createWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3578
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3579
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3580
+ name=\"updateWebWallet\">\r\n <wsdlsoap:operation soapAction=\"updateWebWallet\"/>\r\n
3581
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3582
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3583
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n <wsdlsoap:operation
3584
+ soapAction=\"getWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3585
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3586
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
3587
+ \ <wsdl:binding name=\"ExtendedAPISoapBinding\" type=\"impl:ExtendedAPI\">\r\n
3588
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
3589
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdlsoap:operation
3590
+ soapAction=\"getTransactionDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3591
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3592
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3593
+ name=\"transactionsSearch\">\r\n <wsdlsoap:operation soapAction=\"transactionsSearch\"/>\r\n
3594
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3595
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3596
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getAlertDetails\">\r\n
3597
+ \ <wsdlsoap:operation soapAction=\"getAlertDetails\"/>\r\n <wsdl:input>\r\n
3598
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3599
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3600
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"MassPaymentAPISoapBinding\" type=\"impl:MassPaymentAPI\">\r\n
3601
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
3602
+ \ <wsdl:operation name=\"doMassCapture\">\r\n <wsdlsoap:operation soapAction=\"doMassCapture\"/>\r\n
3603
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3604
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3605
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doMassRefund\">\r\n <wsdlsoap:operation
3606
+ soapAction=\"doMassRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
3607
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
3608
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
3609
+ name=\"doMassReset\">\r\n <wsdlsoap:operation soapAction=\"doMassReset\"/>\r\n
3610
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
3611
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
3612
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
3613
+ \ <wsdlsoap:operation soapAction=\"getMassTraitmentDetails\"/>\r\n <wsdl:input>\r\n
3614
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
3615
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
3616
+ \ </wsdl:binding>\r\n <wsdl:service name=\"WebPaymentAPI\">\r\n <wsdl:port
3617
+ name=\"WebPaymentAPI\" binding=\"impl:WebPaymentAPISoapBinding\">\r\n <wsdlsoap:address
3618
+ location=\"http://host/V4/services/WebPaymentAPI\"/>\r\n </wsdl:port>\r\n
3619
+ \ </wsdl:service>\r\n</wsdl:definitions>\r\n"
3620
+ http_version:
3621
+ recorded_at: Fri, 11 Aug 2017 09:01:15 GMT
3622
+ - request:
3623
+ method: post
3624
+ uri: https://homologation.payline.com/V4/services/ExtendedAPI
3625
+ body:
3626
+ encoding: UTF-8
3627
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3628
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:impl="http://impl.ws.payline.experian.com"
3629
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://obj.ws.payline.experian.com"><env:Body><impl:getTransactionDetailsRequest><impl:transactionId>17223110115774</impl:transactionId><impl:version>16</impl:version><impl:contractNumber>1234567</impl:contractNumber><impl:languageCode
3630
+ xsi:nil="true"/><impl:securityMode>SSL</impl:securityMode><impl:returnURL>http://192.168.1.41:3000/</impl:returnURL><impl:cancelURL>http://192.168.1.41:3000/</impl:cancelURL><impl:notificationURL
3631
+ xsi:nil="true"/><impl:customPaymentPageCode xsi:nil="true"/><impl:selectedContractList><impl:selectedContract>1234567</impl:selectedContract></impl:selectedContractList></impl:getTransactionDetailsRequest></env:Body></env:Envelope>
3632
+ headers:
3633
+ Soapaction:
3634
+ - '"getTransactionDetails"'
3635
+ Content-Type:
3636
+ - text/xml;charset=UTF-8
3637
+ Content-Length:
3638
+ - '929'
3639
+ Accept-Encoding:
3640
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3641
+ Accept:
3642
+ - "*/*"
3643
+ User-Agent:
3644
+ - Ruby
3645
+ Authorization:
3646
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
3647
+ response:
3648
+ status:
3649
+ code: 200
3650
+ message: OK
3651
+ headers:
3652
+ Date:
3653
+ - Fri, 11 Aug 2017 09:01:16 GMT
3654
+ Content-Type:
3655
+ - text/xml;charset=UTF-8
3656
+ Vary:
3657
+ - Accept-Encoding
3658
+ Content-Length:
3659
+ - '1089'
3660
+ Connection:
3661
+ - Keep-Alive
3662
+ body:
3663
+ encoding: ASCII-8BIT
3664
+ string: <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><getTransactionDetailsResponse
3665
+ xmlns="http://impl.ws.payline.experian.com"><result xmlns="http://impl.ws.payline.experian.com"><code
3666
+ xmlns="http://obj.ws.payline.experian.com">00000</code><shortMessage xmlns="http://obj.ws.payline.experian.com">ACCEPTED</shortMessage><longMessage
3667
+ xmlns="http://obj.ws.payline.experian.com">Transaction approved</longMessage></result><transaction
3668
+ xmlns="http://impl.ws.payline.experian.com"><id xmlns="http://obj.ws.payline.experian.com">17223110115774</id><date
3669
+ xmlns="http://obj.ws.payline.experian.com">11/08/2017 11:01:15</date><isDuplicated
3670
+ xmlns="http://obj.ws.payline.experian.com">0</isDuplicated><isPossibleFraud
3671
+ xmlns="http://obj.ws.payline.experian.com">0</isPossibleFraud><threeDSecure
3672
+ xmlns="http://obj.ws.payline.experian.com">N</threeDSecure></transaction><payment
3673
+ xmlns="http://impl.ws.payline.experian.com"><amount xmlns="http://obj.ws.payline.experian.com">1000</amount><currency
3674
+ xmlns="http://obj.ws.payline.experian.com">978</currency><action xmlns="http://obj.ws.payline.experian.com">100</action><mode
3675
+ xmlns="http://obj.ws.payline.experian.com">CPT</mode><contractNumber xmlns="http://obj.ws.payline.experian.com">1234567</contractNumber><differedActionDate
3676
+ xmlns="http://obj.ws.payline.experian.com" /><method xmlns="http://obj.ws.payline.experian.com">CB</method><cardBrand
3677
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3678
+ xsi:nil="true" /></payment><authorization xmlns="http://impl.ws.payline.experian.com"><number
3679
+ xmlns="http://obj.ws.payline.experian.com">A55A</number><date xmlns="http://obj.ws.payline.experian.com">11/08/17
3680
+ 11:01:15</date></authorization><order xmlns="http://impl.ws.payline.experian.com"><ref
3681
+ xmlns="http://obj.ws.payline.experian.com">c173817509f39d673e0543c8a1c0d10b</ref><origin
3682
+ xmlns="http://obj.ws.payline.experian.com" /><country xmlns="http://obj.ws.payline.experian.com"
3683
+ /><amount xmlns="http://obj.ws.payline.experian.com">1000</amount><currency
3684
+ xmlns="http://obj.ws.payline.experian.com">978</currency><date xmlns="http://obj.ws.payline.experian.com">11/08/2017
3685
+ 11:01:00</date><details xmlns="http://obj.ws.payline.experian.com" /><deliveryTime
3686
+ xmlns="http://obj.ws.payline.experian.com" /><deliveryMode xmlns="http://obj.ws.payline.experian.com"
3687
+ /><deliveryExpectedDate xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3688
+ xsi:nil="true" /><deliveryExpectedDelay xmlns="http://obj.ws.payline.experian.com"
3689
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /></order><buyer
3690
+ xmlns="http://impl.ws.payline.experian.com"><title xmlns="http://obj.ws.payline.experian.com"
3691
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><lastName
3692
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3693
+ xsi:nil="true" /><firstName xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3694
+ xsi:nil="true" /><email xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3695
+ xsi:nil="true" /><accountCreateDate xmlns="http://obj.ws.payline.experian.com"
3696
+ /><accountAverageAmount xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3697
+ xsi:nil="true" /><accountOrderCount xmlns="http://obj.ws.payline.experian.com"
3698
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><walletId
3699
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3700
+ xsi:nil="true" /></buyer><privateDataList xmlns="http://impl.ws.payline.experian.com"
3701
+ /><card xmlns="http://impl.ws.payline.experian.com"><number xmlns="http://obj.ws.payline.experian.com">497010XXXXXX5734</number><type
3702
+ xmlns="http://obj.ws.payline.experian.com">CB</type><expirationDate xmlns="http://obj.ws.payline.experian.com">1217</expirationDate></card><extendedCard
3703
+ xmlns="http://impl.ws.payline.experian.com"><country xmlns="http://obj.ws.payline.experian.com">FRA</country><isCvd
3704
+ xmlns="http://obj.ws.payline.experian.com" /><bank xmlns="http://obj.ws.payline.experian.com"
3705
+ /><type xmlns="http://obj.ws.payline.experian.com">VISA</type><network xmlns="http://obj.ws.payline.experian.com">VISA</network><product
3706
+ xmlns="http://obj.ws.payline.experian.com">Visa Business</product></extendedCard><media
3707
+ xmlns="http://impl.ws.payline.experian.com">Undefined</media><contractNumber
3708
+ xmlns="http://impl.ws.payline.experian.com">1234567</contractNumber></getTransactionDetailsResponse></soapenv:Body></soapenv:Envelope>
3709
+ http_version:
3710
+ recorded_at: Fri, 11 Aug 2017 09:01:16 GMT
3711
+ recorded_with: VCR 3.0.3