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,1944 @@
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
+ - Wed, 25 Jan 2017 09:47:05 GMT
25
+ Server:
26
+ - Apache
27
+ Last-Modified:
28
+ - Tue, 15 Nov 2016 15:15:25 GMT
29
+ Etag:
30
+ - '"bf93-25155-541586cfcfd40"'
31
+ Accept-Ranges:
32
+ - bytes
33
+ Content-Length:
34
+ - '151893'
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</sequence>\r\n\t\t\t\t</complexType>\r\n\t\t\t</element>\r\n\t\t\t<element
65
+ 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
66
+ 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
67
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
68
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
69
+ name=\"redirectURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
70
+ minOccurs=\"0\" name=\"stepCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
71
+ minOccurs=\"0\" name=\"reqCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
72
+ 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
73
+ 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
74
+ 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
75
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
76
+ 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
77
+ 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
78
+ 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
79
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
80
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
81
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
82
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
83
+ minOccurs=\"0\" name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
84
+ minOccurs=\"0\" name=\"paymentRecordId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
85
+ minOccurs=\"0\" name=\"billingRecordList\" nillable=\"true\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
86
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
87
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
88
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
89
+ name=\"order\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element minOccurs=\"0\"
90
+ name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
91
+ minOccurs=\"0\" name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
92
+ minOccurs=\"0\" name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
93
+ minOccurs=\"0\" name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
94
+ minOccurs=\"0\" name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
95
+ minOccurs=\"0\" name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
96
+ 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
97
+ 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
98
+ 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
99
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
100
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
101
+ name=\"bankAccountData\" nillable=\"false\" type=\"tns1:bankAccountData\"/>\r\n\t\t\t\t\t\t<element
102
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
103
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
104
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
105
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
106
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
107
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
108
+ 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
109
+ 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
110
+ 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
111
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
112
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
113
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
114
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
115
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"privateDataList\"
116
+ nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
117
+ 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
118
+ 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
119
+ 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
120
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
121
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
122
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
123
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
124
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
125
+ 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
126
+ 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
127
+ 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
128
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
129
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
130
+ 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
131
+ 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
132
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
133
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
134
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
135
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
136
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
137
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
138
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
139
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
140
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
141
+ 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
142
+ 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
143
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
144
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
145
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
146
+ 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
147
+ 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
148
+ 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
149
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
150
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
151
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
152
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
153
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
154
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
155
+ 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
156
+ 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
157
+ 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
158
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
159
+ 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
160
+ 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
161
+ 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
162
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
163
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
164
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
165
+ 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
166
+ 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
167
+ 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
168
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
169
+ 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
170
+ 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
171
+ 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
172
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
173
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
174
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
175
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
176
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
177
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
178
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
179
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
180
+ 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
181
+ 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
182
+ 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
183
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
184
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
185
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
186
+ 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
187
+ 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
188
+ 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
189
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
190
+ name=\"captureAuthorizationList\" nillable=\"true\" type=\"tns1:captureAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
191
+ 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
192
+ 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
193
+ 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
194
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
195
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
196
+ 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
197
+ 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
198
+ 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
199
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
200
+ name=\"refundAuthorizationList\" nillable=\"true\" type=\"tns1:refundAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
201
+ 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
202
+ 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
203
+ 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
204
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
205
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
206
+ 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
207
+ 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
208
+ 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
209
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
210
+ name=\"resetAuthorizationList\" nillable=\"true\" type=\"tns1:resetAuthorizationList\"/>\r\n\t\t\t\t\t\t<element
211
+ 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
212
+ 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
213
+ 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
214
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
215
+ name=\"massTraitmentID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
216
+ 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
217
+ 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
218
+ 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
219
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
220
+ 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
221
+ 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
222
+ 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
223
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
224
+ name=\"massTraitementID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
225
+ name=\"totalLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
226
+ name=\"failedLinesNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
227
+ 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
228
+ 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
229
+ 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
230
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
231
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
232
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
233
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
234
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
235
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
236
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
237
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
238
+ 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
239
+ 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
240
+ 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
241
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
242
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
243
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
244
+ nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
245
+ 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
246
+ 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
247
+ 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
248
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
249
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
250
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
251
+ name=\"wallet\" nillable=\"false\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
252
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
253
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
254
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
255
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
256
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
257
+ 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
258
+ 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
259
+ 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
260
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
261
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
262
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"contractNumberWalletList\"
263
+ 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
264
+ 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
265
+ 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
266
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
267
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
268
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
269
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
270
+ 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
271
+ 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
272
+ 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
273
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
274
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
275
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
276
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
277
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
278
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
279
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
280
+ name=\"contractNumberWalletList\" nillable=\"true\" type=\"tns1:contractNumberWalletList\"/>\r\n\t\t\t\t\t\t<element
281
+ 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
282
+ 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
283
+ 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
284
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
285
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
286
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
287
+ 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
288
+ 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
289
+ 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
290
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
291
+ name=\"cardsList\" nillable=\"true\" type=\"tns1:cardsList\"/>\r\n\t\t\t\t\t\t<element
292
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
293
+ 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
294
+ 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
295
+ 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
296
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
297
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
298
+ 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
299
+ 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
300
+ 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
301
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
302
+ 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
303
+ 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
304
+ 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
305
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
306
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
307
+ 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
308
+ 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
309
+ 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
310
+ 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
311
+ 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
312
+ 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
313
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
314
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
315
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
316
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
317
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
318
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
319
+ name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
320
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
321
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
322
+ 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
323
+ 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
324
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoImmediateWalletPayment
325
+ 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
326
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
327
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
328
+ 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
329
+ 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
330
+ 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
331
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
332
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
333
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
334
+ name=\"orderDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
335
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
336
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
337
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
338
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
339
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
340
+ 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
341
+ 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
342
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoScheduledWalletPayment
343
+ 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
344
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
345
+ 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
346
+ 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
347
+ 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
348
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
349
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
350
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
351
+ name=\"orderDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
352
+ name=\"scheduledDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
353
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
354
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
355
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
356
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
357
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
358
+ 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
359
+ 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
360
+ element is the reponse from the\r\n\t\t\t\t\t\t\tdoRecurrentWalletPayment
361
+ 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
362
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
363
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
364
+ 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
365
+ 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
366
+ 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
367
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
368
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
369
+ 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
370
+ 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
371
+ 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
372
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
373
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
374
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
375
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
376
+ name=\"billingRecordList\" nillable=\"false\" type=\"tns1:billingRecordList\"/>\r\n\t\t\t\t\t\t<element
377
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
378
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
379
+ 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
380
+ 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
381
+ 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
382
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
383
+ 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
384
+ 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
385
+ 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
386
+ 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
387
+ 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
388
+ 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
389
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
390
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
391
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
392
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
393
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
394
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
395
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
396
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
397
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
398
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
399
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
400
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
401
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
402
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
403
+ 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
404
+ 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
405
+ 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
406
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
407
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
408
+ 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
409
+ 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
410
+ 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
411
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
412
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
413
+ name=\"selectedContractList\" nillable=\"true\" type=\"tns1:selectedContractList\"/>\r\n\t\t\t\t\t\t<element
414
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
415
+ name=\"buyer\" nillable=\"false\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
416
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
417
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
418
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
419
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
420
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
421
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
422
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
423
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
424
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
425
+ 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
426
+ 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
427
+ 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
428
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
429
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
430
+ 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
431
+ 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
432
+ 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
433
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
434
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
435
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
436
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
437
+ name=\"updatePersonalDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
438
+ name=\"updateOwnerDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
439
+ name=\"updatePaymentDetails\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
440
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
441
+ name=\"languageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
442
+ name=\"customPaymentPageCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
443
+ name=\"securityMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
444
+ name=\"returnURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
445
+ name=\"cancelURL\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
446
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
447
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
448
+ name=\"customPaymentTemplateURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
449
+ 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
450
+ 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
451
+ 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
452
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
453
+ name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
454
+ 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
455
+ 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
456
+ 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
457
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
458
+ 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
459
+ 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
460
+ 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
461
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
462
+ name=\"wallet\" nillable=\"true\" type=\"tns1:wallet\"/>\r\n\t\t\t\t\t\t<element
463
+ name=\"owner\" nillable=\"true\" type=\"tns1:owner\"/>\r\n\t\t\t\t\t\t<element
464
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
465
+ name=\"extendedCard\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element
466
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
467
+ name=\"numberOfAttempt\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
468
+ 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
469
+ 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
470
+ 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
471
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
472
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
473
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
474
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
475
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
476
+ name=\"transactionHistory\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
477
+ 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
478
+ 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
479
+ 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
480
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
481
+ name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
482
+ name=\"payment\" nillable=\"true\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
483
+ name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t\t<element
484
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
485
+ name=\"buyer\" nillable=\"true\" type=\"tns1:buyer\"/>\r\n\t\t\t\t\t\t<element
486
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
487
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
488
+ type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t\t<element name=\"associatedTransactionsList\"
489
+ nillable=\"true\" type=\"tns1:associatedTransactionsList\"/>\r\n\t\t\t\t\t\t<element
490
+ name=\"statusHistoryList\" nillable=\"true\" type=\"tns1:statusHistoryList\"/>\r\n\t\t\t\t\t\t<element
491
+ name=\"media\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
492
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
493
+ minOccurs=\"0\" name=\"paymentAdditionalList\" nillable=\"true\" type=\"tns1:paymentAdditionalList\"/>\r\n\t\t\t\t\t\t<element
494
+ 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
495
+ 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
496
+ 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
497
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
498
+ name=\"transactionId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
499
+ name=\"orderRef\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
500
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
501
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
502
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
503
+ name=\"authorizationNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
504
+ name=\"returnCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
505
+ name=\"paymentMean\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
506
+ name=\"transactionType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
507
+ name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
508
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
509
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
510
+ name=\"cardNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
511
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
512
+ name=\"minAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
513
+ name=\"maxAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
514
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
515
+ name=\"sequenceNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
516
+ 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
517
+ 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
518
+ 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
519
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
520
+ 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
521
+ 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
522
+ 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
523
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
524
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t\t<element
525
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
526
+ name=\"orderRef\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
527
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
528
+ name=\"userAgent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
529
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
530
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
531
+ minOccurs=\"0\" name=\"generateVirtualCvx\" 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
532
+ 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
533
+ 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
534
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
535
+ name=\"actionUrl\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
536
+ name=\"actionMethod\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
537
+ name=\"pareqFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
538
+ name=\"pareqFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
539
+ name=\"termUrlName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
540
+ name=\"termUrlValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
541
+ name=\"mdFieldName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
542
+ name=\"mdFieldValue\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
543
+ name=\"mpiResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
544
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
545
+ minOccurs=\"0\" name=\"virtualCvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
546
+ 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
547
+ 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
548
+ 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
549
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
550
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
551
+ name=\"pares\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
552
+ name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
553
+ 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
554
+ 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
555
+ 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
556
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
557
+ name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t\t\t\t\t<element
558
+ 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
559
+ 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
560
+ 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
561
+ name=\"corporateName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
562
+ name=\"publicName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
563
+ name=\"currency\">\r\n\t\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t\t<documentation>currency
564
+ 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
565
+ 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
566
+ 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
567
+ 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
568
+ 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
569
+ 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
570
+ 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
571
+ 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
572
+ 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
573
+ 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
574
+ 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
575
+ name=\"merchantAddress\" nillable=\"true\" type=\"tns1:addressInterlocutor\"/>\r\n\t\t\t\t\t\t<element
576
+ name=\"businessInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
577
+ name=\"technicalInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t\t<element
578
+ name=\"subscription\" nillable=\"true\" type=\"tns1:subscription\"/>\r\n\t\t\t\t\t\t<element
579
+ 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
580
+ 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
581
+ 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
582
+ 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
583
+ 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
584
+ 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
585
+ 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
586
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
587
+ 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
588
+ 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
589
+ 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
590
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
591
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
592
+ name=\"cheque\" nillable=\"false\" type=\"tns1:cheque\"/>\r\n\t\t\t\t\t\t<element
593
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
594
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
595
+ 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
596
+ 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
597
+ 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
598
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
599
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
600
+ 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
601
+ 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
602
+ 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
603
+ 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
604
+ element is the reponse from the\r\n\t\t\t\t\t\t\tgetEncryptionKeyResponse
605
+ 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
606
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
607
+ 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
608
+ 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
609
+ 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
610
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
611
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
612
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
613
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
614
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
615
+ 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
616
+ 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
617
+ 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
618
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
619
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t\t<element
620
+ name=\"card\" type=\"tns1:cardOut\"/>\r\n\t\t\t\t\t\t<element name=\"extendedCard\"
621
+ 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
622
+ 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
623
+ 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
624
+ 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
625
+ 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
626
+ 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
627
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
628
+ 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
629
+ 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
630
+ 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
631
+ 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
632
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
633
+ name=\"cardID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
634
+ 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
635
+ 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
636
+ 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
637
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
638
+ 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
639
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"amount\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t\t\t\t<element
640
+ 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
641
+ name=\"crdproduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
642
+ name=\"crdprogram\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
643
+ 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
644
+ 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
645
+ 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
646
+ 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
647
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
648
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
649
+ 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
650
+ 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
651
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
652
+ 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
653
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"ExplanationCode\" nillable=\"true\"
654
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
655
+ 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
656
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionStatus\" nillable=\"false\"
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=\"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
659
+ 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
660
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionId\" nillable=\"false\"
661
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
662
+ 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
663
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" 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=\"TransactionAmount\" 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=\"TransactionCurrency\" 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=\"PaymentType\" 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=\"PaymentData\" nillable=\"false\" type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
670
+ 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
671
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ReferenceData\" nillable=\"false\"
672
+ type=\"xsd:string\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\"
673
+ 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
674
+ maxOccurs=\"1\" minOccurs=\"0\" name=\"BuyerFirstName\" nillable=\"true\"
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=\"BuyerLastName\" 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=\"1\" name=\"CustomerTransHist\" nillable=\"false\"
678
+ type=\"tns1:CustomerTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
679
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"PaymentMeansTransHist\" nillable=\"false\"
680
+ type=\"tns1:PaymentMeansTransHist\">\r\n\t\t\t\t\t\t</element>\r\n\t\t\t\t\t\t<element
681
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"AlertsTransHist\" nillable=\"false\"
682
+ 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
683
+ 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
684
+ name=\"cardNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
685
+ name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
686
+ 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
687
+ 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
688
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
689
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"token\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
690
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"maskedCardNumber\" nillable=\"false\"
691
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
692
+ name=\"expirationDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
693
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"virtualCard\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
694
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardType\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
695
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"cardProduct\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
696
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"acceptanceNetwork\" nillable=\"false\"
697
+ type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element maxOccurs=\"1\" minOccurs=\"1\"
698
+ 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
699
+ 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
700
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
701
+ name=\"transactionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
702
+ 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
703
+ 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
704
+ 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
705
+ 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
706
+ name=\"version\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
707
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
708
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
709
+ 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
710
+ 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
711
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
712
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
713
+ name=\"isDisabled\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
714
+ name=\"disableDate\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
715
+ name=\"privateDataList\" nillable=\"false\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
716
+ name=\"order\" nillable=\"false\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
717
+ 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
718
+ 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
719
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
720
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
721
+ 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
722
+ 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
723
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
724
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
725
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
726
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
727
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
728
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
729
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
730
+ 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
731
+ 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
732
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
733
+ name=\"paymentRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
734
+ name=\"billingRecordId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
735
+ 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
736
+ 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
737
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
738
+ name=\"recurring\" nillable=\"false\" type=\"tns1:recurring\"/>\r\n\t\t\t\t\t\t<element
739
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
740
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
741
+ name=\"billingRecord\" nillable=\"false\" type=\"tns1:billingRecord\"/>\r\n\t\t\t\t\t\t<element
742
+ name=\"order\" nillable=\"true\" type=\"tns1:order\"/>\r\n\t\t\t\t\t\t<element
743
+ name=\"privateDataList\" nillable=\"true\" type=\"tns1:privateDataList\"/>\r\n\t\t\t\t\t\t<element
744
+ 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
745
+ 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
746
+ 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
747
+ name=\"version\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
748
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t\t\t\t\t<element
749
+ name=\"creditor\" nillable=\"false\" type=\"tns1:creditor\"/>\r\n\t\t\t\t\t\t<element
750
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
751
+ name=\"transactionID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t\t<element
752
+ 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
753
+ 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
754
+ 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
755
+ name=\"result\" nillable=\"false\" type=\"tns1:result\"/>\r\n\t\t\t\t\t\t<element
756
+ 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
757
+ \ <schema elementFormDefault=\"qualified\" targetNamespace=\"http://obj.ws.payline.experian.com\"
758
+ 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
759
+ 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
760
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
761
+ minOccurs=\"0\" name=\"shortMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
762
+ minOccurs=\"0\" name=\"longMessage\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
763
+ minOccurs=\"0\" name=\"partnerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
764
+ 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
765
+ name=\"cardOut\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
766
+ name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
767
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
768
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
769
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
770
+ 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
771
+ name=\"extendedCardType\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element minOccurs=\"0\"
772
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
773
+ minOccurs=\"0\" name=\"isCvd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
774
+ minOccurs=\"0\" name=\"bank\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
775
+ minOccurs=\"0\" name=\"type\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
776
+ minOccurs=\"0\" name=\"network\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
777
+ 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
778
+ 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
779
+ 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
780
+ name=\"ref\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
781
+ minOccurs=\"0\" name=\"origin\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
782
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
783
+ minOccurs=\"0\" name=\"taxes\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
784
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
785
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
786
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
787
+ minOccurs=\"0\" name=\"details\" nillable=\"true\" type=\"tns1:details\"/>\r\n\t\t\t\t\t<element
788
+ minOccurs=\"0\" name=\"deliveryTime\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
789
+ minOccurs=\"0\" name=\"deliveryMode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
790
+ minOccurs=\"0\" name=\"deliveryExpectedDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
791
+ 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
792
+ 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
793
+ 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
794
+ name=\"keyId\" nillable=\"false\" type=\"xsd:integer\"/>\r\n\t\t\t\t\t<element
795
+ name=\"modulus\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
796
+ name=\"publicExponent\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
797
+ 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
798
+ 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
799
+ 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
800
+ 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
801
+ 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
802
+ 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
803
+ minOccurs=\"0\" name=\"ref\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
804
+ minOccurs=\"0\" name=\"price\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
805
+ minOccurs=\"0\" name=\"quantity\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
806
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
807
+ minOccurs=\"0\" name=\"category\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
808
+ minOccurs=\"0\" name=\"brand\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
809
+ minOccurs=\"0\" name=\"subcategory1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
810
+ minOccurs=\"0\" name=\"subcategory2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
811
+ minOccurs=\"0\" name=\"additionalData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
812
+ 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
813
+ 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
814
+ element contains information about the\r\n\t\t\t\t\t\tmerchant\r\n\t\t\t\t\t\tprivate
815
+ 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
816
+ name=\"key\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
817
+ 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
818
+ 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
819
+ 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
820
+ name=\"id\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
821
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
822
+ minOccurs=\"0\" name=\"isDuplicated\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
823
+ name=\"isPossibleFraud\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
824
+ minOccurs=\"0\" name=\"fraudResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
825
+ minOccurs=\"0\" name=\"fraudResultDetails\" nillable=\"true\" type=\"tns1:fraudResultDetails\"/>\r\n\t\t\t\t\t<element
826
+ minOccurs=\"0\" name=\"explanation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
827
+ minOccurs=\"0\" name=\"threeDSecure\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
828
+ minOccurs=\"0\" name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
829
+ minOccurs=\"0\" name=\"score\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
830
+ minOccurs=\"0\" name=\"externalWalletType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
831
+ minOccurs=\"0\" name=\"externalWalletContractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
832
+ 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
833
+ 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
834
+ element contains information about the\r\n\t\t\t\t\t\tfraud\r\n\t\t\t\t\t\tresult
835
+ 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
836
+ name=\"code\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
837
+ name=\"shortMessage\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
838
+ 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
839
+ 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
840
+ 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
841
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
842
+ name=\"currency\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
843
+ name=\"action\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
844
+ name=\"mode\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
845
+ name=\"contractNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
846
+ minOccurs=\"0\" name=\"differedActionDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
847
+ minOccurs=\"0\" name=\"method\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
848
+ name=\"softDescriptor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
849
+ 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
850
+ 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
851
+ 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
852
+ name=\"number\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
853
+ 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
854
+ 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
855
+ 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
856
+ minOccurs=\"0\" name=\"encryptionKeyId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
857
+ minOccurs=\"0\" name=\"encryptedData\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
858
+ minOccurs=\"0\" name=\"number\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
859
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
860
+ minOccurs=\"0\" name=\"expirationDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
861
+ minOccurs=\"0\" name=\"cvx\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
862
+ minOccurs=\"0\" name=\"ownerBirthdayDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
863
+ minOccurs=\"0\" name=\"password\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
864
+ minOccurs=\"0\" name=\"cardPresent\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
865
+ minOccurs=\"0\" name=\"cardholder\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
866
+ minOccurs=\"0\" name=\"token\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
867
+ 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
868
+ 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
869
+ name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
870
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
871
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
872
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
873
+ name=\"shippingAdress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
874
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
875
+ name=\"accountCreateDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
876
+ name=\"accountAverageAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
877
+ name=\"accountOrderCount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
878
+ name=\"walletId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
879
+ name=\"walletDisplayed\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
880
+ name=\"walletSecured\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
881
+ name=\"walletCardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
882
+ name=\"ip\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
883
+ name=\"mobilePhone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
884
+ name=\"customerId\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
885
+ name=\"legalStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
886
+ name=\"legalDocument\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
887
+ name=\"birthDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
888
+ name=\"fingerprintID\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
889
+ name=\"deviceFingerprint\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
890
+ name=\"isBot\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
891
+ name=\"isIncognito\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
892
+ name=\"isBehindProxy\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
893
+ name=\"isFromTor\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
894
+ name=\"isEmulator\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
895
+ name=\"isRooted\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
896
+ 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
897
+ 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
898
+ 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
899
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
900
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
901
+ name=\"billingAddress\" nillable=\"true\" type=\"tns1:addressOwner\"/>\r\n\t\t\t\t\t<element
902
+ 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
903
+ 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
904
+ 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
905
+ minOccurs=\"0\" name=\"title\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
906
+ minOccurs=\"0\" name=\"name\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
907
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
908
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
909
+ minOccurs=\"0\" name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
910
+ minOccurs=\"0\" name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
911
+ minOccurs=\"0\" name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
912
+ minOccurs=\"0\" name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
913
+ minOccurs=\"0\" name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
914
+ minOccurs=\"0\" name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
915
+ minOccurs=\"0\" name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
916
+ minOccurs=\"0\" name=\"county\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
917
+ 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
918
+ 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
919
+ 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
920
+ name=\"street\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
921
+ name=\"cityName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
922
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
923
+ name=\"country\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
924
+ 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
925
+ 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
926
+ 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
927
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
928
+ 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
929
+ 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
930
+ 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
931
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
932
+ 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
933
+ 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
934
+ 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
935
+ 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
936
+ 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
937
+ 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
938
+ 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
939
+ 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
940
+ 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
941
+ 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
942
+ 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
943
+ 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
944
+ 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
945
+ 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
946
+ 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
947
+ 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
948
+ 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
949
+ 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
950
+ 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
951
+ 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
952
+ 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
953
+ 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
954
+ 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
955
+ 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
956
+ 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
957
+ 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
958
+ 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
959
+ name=\"transactionID\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
960
+ 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
961
+ 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
962
+ 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
963
+ name=\"firstAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
964
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
965
+ name=\"billingCycle\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
966
+ name=\"billingLeft\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
967
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
968
+ name=\"startDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
969
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
970
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
971
+ 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
972
+ 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
973
+ 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
974
+ name=\"billingLeft\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
975
+ name=\"billingDay\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
976
+ name=\"endDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
977
+ name=\"newAmount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
978
+ 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
979
+ 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
980
+ 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
981
+ name=\"date\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
982
+ name=\"amount\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
983
+ name=\"status\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
984
+ minOccurs=\"0\" name=\"result\" nillable=\"true\" type=\"tns1:result\"/>\r\n\t\t\t\t\t<element
985
+ minOccurs=\"0\" name=\"transaction\" nillable=\"true\" type=\"tns1:transaction\"/>\r\n\t\t\t\t\t<element
986
+ minOccurs=\"0\" name=\"authorization\" nillable=\"true\" type=\"tns1:authorization\"/>\r\n\t\t\t\t\t<element
987
+ minOccurs=\"0\" name=\"nbTry\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
988
+ 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
989
+ 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
990
+ 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
991
+ 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
992
+ 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
993
+ 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
994
+ name=\"date\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
995
+ name=\"amount\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
996
+ name=\"status\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
997
+ 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
998
+ 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
999
+ 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
1000
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1001
+ minOccurs=\"0\" name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1002
+ minOccurs=\"0\" name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1003
+ minOccurs=\"0\" name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1004
+ minOccurs=\"0\" name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
1005
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
1006
+ minOccurs=\"0\" name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1007
+ minOccurs=\"0\" name=\"default\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1008
+ minOccurs=\"0\" name=\"cardStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1009
+ 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
1010
+ 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
1011
+ 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
1012
+ name=\"walletId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1013
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1014
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1015
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1016
+ name=\"shippingAddress\" nillable=\"true\" type=\"tns1:address\"/>\r\n\t\t\t\t\t<element
1017
+ name=\"card\" nillable=\"false\" type=\"tns1:card\"/>\r\n\t\t\t\t\t<element
1018
+ name=\"cardInd\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1019
+ name=\"comment\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1020
+ name=\"isDisabled\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1021
+ name=\"disableDate\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1022
+ name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t\t\t\t\t<element
1023
+ 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
1024
+ 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
1025
+ 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
1026
+ 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
1027
+ 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
1028
+ 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
1029
+ 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
1030
+ 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
1031
+ 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
1032
+ minOccurs=\"0\" name=\"md\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1033
+ minOccurs=\"0\" name=\"pares\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1034
+ minOccurs=\"0\" name=\"xid\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1035
+ minOccurs=\"0\" name=\"eci\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1036
+ minOccurs=\"0\" name=\"cavv\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1037
+ minOccurs=\"0\" name=\"cavvAlgorithm\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1038
+ minOccurs=\"0\" name=\"vadsResult\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1039
+ minOccurs=\"0\" name=\"typeSecurisation\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1040
+ minOccurs=\"0\" name=\"PaResStatus\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1041
+ 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
1042
+ 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
1043
+ 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
1044
+ name=\"merchantId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1045
+ name=\"userId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1046
+ name=\"password\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1047
+ name=\"secretQuestion\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1048
+ 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
1049
+ 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
1050
+ 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
1051
+ name=\"chequeNumber\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1052
+ name=\"additionalDataResponse\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1053
+ name=\"terminalId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1054
+ 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
1055
+ 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
1056
+ 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
1057
+ name=\"street1\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1058
+ name=\"street2\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1059
+ name=\"city\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1060
+ name=\"zipCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1061
+ name=\"state\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1062
+ 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
1063
+ 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
1064
+ 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
1065
+ name=\"firstName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1066
+ name=\"lastName\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1067
+ name=\"email\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1068
+ name=\"phone\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1069
+ name=\"mobile\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1070
+ name=\"fax\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1071
+ 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
1072
+ 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
1073
+ 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
1074
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"subscribed\"
1075
+ nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"endDate\"
1076
+ nillable=\"true\" type=\"xsd:dateTime\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1077
+ 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
1078
+ element contains information about the payline\r\n\t\t\t\t\t\tpackage subscribed
1079
+ 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
1080
+ name=\"id\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element maxOccurs=\"unbounded\"
1081
+ 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
1082
+ 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
1083
+ 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
1084
+ name=\"CountryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1085
+ name=\"checkKey\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1086
+ name=\"BBAN\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1087
+ 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
1088
+ 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
1089
+ 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
1090
+ name=\"tellerCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1091
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1092
+ 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
1093
+ 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
1094
+ 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
1095
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1096
+ name=\"bankNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1097
+ name=\"iban\" nillable=\"true\" type=\"tns1:iban\"/>\r\n\t\t\t\t\t<element
1098
+ 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
1099
+ 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
1100
+ 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
1101
+ name=\"countryCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1102
+ name=\"bankCode\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1103
+ name=\"accountNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1104
+ 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
1105
+ 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
1106
+ 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
1107
+ name=\"terminalNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1108
+ name=\"GTInstance\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1109
+ 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
1110
+ 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
1111
+ 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
1112
+ name=\"cardType\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1113
+ minOccurs=\"0\" name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1114
+ name=\"contractNumber\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1115
+ name=\"currency\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1116
+ default=\"Manual\" name=\"settlementType\">\r\n\t\t\t\t\t\t<simpleType>\r\n\t\t\t\t\t\t\t<restriction
1117
+ 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
1118
+ 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
1119
+ 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
1120
+ 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
1121
+ 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
1122
+ name=\"maxAmountPerTransaction\" nillable=\"true\" type=\"xsd:int\"/>\r\n\t\t\t\t\t<element
1123
+ name=\"technicalData\" nillable=\"true\" type=\"tns1:technicalData\"/>\r\n\t\t\t\t\t<element
1124
+ name=\"bankAccount\" nillable=\"true\" type=\"tns1:bankAccount\"/>\r\n\t\t\t\t\t<element
1125
+ name=\"acquirerInterlocutor\" nillable=\"true\" type=\"tns1:interlocutor\"/>\r\n\t\t\t\t\t<element
1126
+ name=\"description\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1127
+ name=\"logoEnable\" nillable=\"false\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1128
+ 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
1129
+ 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
1130
+ 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
1131
+ 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
1132
+ 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
1133
+ 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
1134
+ 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
1135
+ 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
1136
+ name=\"code\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1137
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1138
+ 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
1139
+ 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
1140
+ 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
1141
+ name=\"toBuyer\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1142
+ 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
1143
+ 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
1144
+ 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
1145
+ name=\"siret\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1146
+ name=\"codeMcc\" nillable=\"true\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Merchant
1147
+ 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
1148
+ 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
1149
+ name=\"label\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1150
+ name=\"webmasterEmail\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1151
+ minOccurs=\"0\" name=\"comments\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1152
+ name=\"webstoreURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1153
+ name=\"notificationURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1154
+ minOccurs=\"0\" name=\"privateLifeURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1155
+ minOccurs=\"0\" name=\"saleCondURL\" nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1156
+ minOccurs=\"0\" name=\"buyerMustAcceptSaleCond\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1157
+ minOccurs=\"0\" name=\"endOfPaymentRedirection\" nillable=\"true\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element
1158
+ name=\"ticketSend\" nillable=\"true\" type=\"tns1:ticketSend\"/>\r\n\t\t\t\t\t<element
1159
+ name=\"contracts\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1160
+ 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
1161
+ 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
1162
+ name=\"virtualTerminal\" nillable=\"true\" type=\"tns1:virtualTerminal\"/>\r\n\t\t\t\t\t<element
1163
+ name=\"customPaymentPageCodeList\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1164
+ 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
1165
+ 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
1166
+ 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
1167
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element default=\"10\"
1168
+ 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
1169
+ 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
1170
+ 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
1171
+ 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
1172
+ name=\"functions\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>list
1173
+ 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
1174
+ 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
1175
+ name=\"virtualTerminalFunction\">\r\n\t\t\t\t<annotation>\r\n\t\t\t\t\t<documentation>functions
1176
+ 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
1177
+ name=\"function\">\r\n\t\t\t\t\t\t<annotation>\r\n\t\t\t\t\t\t\t<documentation>Please
1178
+ 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
1179
+ 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
1180
+ 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
1181
+ name=\"label\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<sequence minOccurs=\"0\">\r\n\t\t\t\t\t\t<element
1182
+ 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
1183
+ 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
1184
+ 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
1185
+ 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
1186
+ 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
1187
+ 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
1188
+ 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
1189
+ 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
1190
+ 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
1191
+ name=\"enable\" type=\"xsd:boolean\"/>\r\n\t\t\t\t\t<element name=\"type\"
1192
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"value\"
1193
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"nbFreeTransaction\"
1194
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"minAmountTransaction\"
1195
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"maxAmountTransaction\"
1196
+ nillable=\"true\" type=\"xsd:string\"/>\r\n\t\t\t\t</sequence>\r\n\t\t\t</complexType>\r\n\t\t\t<complexType
1197
+ 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
1198
+ 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
1199
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1200
+ name=\"type\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1201
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
1202
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
1203
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
1204
+ 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
1205
+ 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
1206
+ 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
1207
+ 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
1208
+ 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
1209
+ 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
1210
+ name=\"transactionId\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1211
+ name=\"date\" nillable=\"false\" type=\"string\"/>\r\n\t\t\t\t\t<element name=\"amount\"
1212
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"fees\"
1213
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"status\"
1214
+ nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element name=\"originTransactionId\"
1215
+ 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
1216
+ 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
1217
+ 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
1218
+ 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
1219
+ name=\"paymentAdditional\">\r\n\t<annotation>\r\n\t\t<documentation>\r\n\t\t\tThis
1220
+ 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
1221
+ name=\"transaction\" nillable=\"false\" type=\"tns1:transaction\"/>\r\n\t\t<element
1222
+ name=\"payment\" nillable=\"false\" type=\"tns1:payment\"/>\r\n\t\t<element
1223
+ name=\"authorization\" nillable=\"false\" type=\"tns1:authorization\"/>\r\n\t\t<element
1224
+ minOccurs=\"0\" name=\"authentication3DSecure\" nillable=\"true\" type=\"tns1:authentication3DSecure\"/>\r\n\t\t<element
1225
+ minOccurs=\"0\" name=\"card\" nillable=\"true\" type=\"tns1:cardOut\"/>\r\n\t\t<element
1226
+ minOccurs=\"0\" name=\"extendedCard\" nillable=\"true\" type=\"tns1:extendedCardType\"/>\r\n\t</sequence>\r\n</complexType>\r\n\r\n\t\t\t<complexType
1227
+ 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
1228
+ 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
1229
+ 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
1230
+ 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
1231
+ 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
1232
+ 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
1233
+ name=\"CustomerTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1234
+ 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
1235
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
1236
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1237
+ 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
1238
+ 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
1239
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
1240
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1241
+ 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
1242
+ 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
1243
+ 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
1244
+ 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
1245
+ 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
1246
+ 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
1247
+ name=\"PaymentMeansTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1248
+ 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
1249
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExternalTransactionId\" nillable=\"false\"
1250
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1251
+ 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
1252
+ 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
1253
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"TransactionDate\" nillable=\"false\"
1254
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1255
+ 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
1256
+ 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
1257
+ 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
1258
+ 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
1259
+ 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
1260
+ 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
1261
+ name=\"AlertsTrans\">\r\n\t\t\t\t<sequence>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1262
+ 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
1263
+ maxOccurs=\"1\" minOccurs=\"1\" name=\"ExplanationLabel\" nillable=\"false\"
1264
+ type=\"xsd:string\">\r\n\t\t\t\t\t</element>\r\n\t\t\t\t\t<element maxOccurs=\"1\"
1265
+ 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
1266
+ 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
1267
+ 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
1268
+ 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
1269
+ 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
1270
+ 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
1271
+ name=\"bic\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1272
+ name=\"iban\" nillable=\"false\" type=\"xsd:string\"/>\r\n\t\t\t\t\t<element
1273
+ 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
1274
+ \ </wsdl:types>\r\n <wsdl:message name=\"getTransactionDetailsRequest\">\r\n
1275
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsRequest\">\r\n
1276
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentRequest\">\r\n
1277
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentRequest\">\r\n
1278
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitRequest\">\r\n
1279
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitRequest\">\r\n </wsdl:part>\r\n
1280
+ \ </wsdl:message>\r\n <wsdl:message name=\"doScheduledWalletPaymentResponse\">\r\n
1281
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScheduledWalletPaymentResponse\">\r\n
1282
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureResponse\">\r\n
1283
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureResponse\">\r\n
1284
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentRequest\">\r\n
1285
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentRequest\">\r\n
1286
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletRequest\">\r\n
1287
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletRequest\">\r\n
1288
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationResponse\">\r\n
1289
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationResponse\">\r\n
1290
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsResponse\">\r\n
1291
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsResponse\">\r\n
1292
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletRequest\">\r\n
1293
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletRequest\">\r\n
1294
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceResponse\">\r\n
1295
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceResponse\">\r\n
1296
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationRequest\">\r\n
1297
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationRequest\">\r\n
1298
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentRequest\">\r\n
1299
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentRequest\">\r\n
1300
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebWalletRequest\">\r\n
1301
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebWalletRequest\">\r\n
1302
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyAuthenticationResponse\">\r\n
1303
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyAuthenticationResponse\">\r\n
1304
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeRequest\">\r\n
1305
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeRequest\">\r\n
1306
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferRequest\">\r\n
1307
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferRequest\">\r\n
1308
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRefundRequest\">\r\n
1309
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRefundRequest\">\r\n </wsdl:part>\r\n
1310
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassResetRequest\">\r\n <wsdl:part
1311
+ name=\"parameters\" element=\"impl:doMassResetRequest\">\r\n </wsdl:part>\r\n
1312
+ \ </wsdl:message>\r\n <wsdl:message name=\"getWebWalletResponse\">\r\n <wsdl:part
1313
+ name=\"parameters\" element=\"impl:getWebWalletResponse\">\r\n </wsdl:part>\r\n
1314
+ \ </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsRequest\">\r\n
1315
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsRequest\">\r\n
1316
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBalanceRequest\">\r\n
1317
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBalanceRequest\">\r\n
1318
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletRequest\">\r\n
1319
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletRequest\">\r\n
1320
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doScoringChequeResponse\">\r\n
1321
+ \ <wsdl:part name=\"parameters\" element=\"impl:doScoringChequeResponse\">\r\n
1322
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordResponse\">\r\n
1323
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordResponse\">\r\n
1324
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordRequest\">\r\n
1325
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordRequest\">\r\n
1326
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletRequest\">\r\n
1327
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletRequest\">\r\n
1328
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockRequest\">\r\n
1329
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockRequest\">\r\n </wsdl:part>\r\n
1330
+ \ </wsdl:message>\r\n <wsdl:message name=\"doMassRefundRequest\">\r\n <wsdl:part
1331
+ name=\"parameters\" element=\"impl:doMassRefundRequest\">\r\n </wsdl:part>\r\n
1332
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletRequest\">\r\n <wsdl:part
1333
+ name=\"parameters\" element=\"impl:enableWalletRequest\">\r\n </wsdl:part>\r\n
1334
+ \ </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentRequest\">\r\n
1335
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentRequest\">\r\n
1336
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWalletResponse\">\r\n
1337
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWalletResponse\">\r\n
1338
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doImmediateWalletPaymentResponse\">\r\n
1339
+ \ <wsdl:part name=\"parameters\" element=\"impl:doImmediateWalletPaymentResponse\">\r\n
1340
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doAuthorizationRequest\">\r\n
1341
+ \ <wsdl:part name=\"parameters\" element=\"impl:doAuthorizationRequest\">\r\n
1342
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentRequest\">\r\n
1343
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentRequest\">\r\n
1344
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWalletResponse\">\r\n
1345
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWalletResponse\">\r\n
1346
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doDebitResponse\">\r\n
1347
+ \ <wsdl:part name=\"parameters\" element=\"impl:doDebitResponse\">\r\n </wsdl:part>\r\n
1348
+ \ </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordResponse\">\r\n
1349
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordResponse\">\r\n
1350
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doBankTransferResponse\">\r\n
1351
+ \ <wsdl:part name=\"parameters\" element=\"impl:doBankTransferResponse\">\r\n
1352
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassRefundResponse\">\r\n
1353
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassRefundResponse\">\r\n
1354
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletRequest\">\r\n
1355
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletRequest\">\r\n
1356
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureRequest\">\r\n
1357
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureRequest\">\r\n
1358
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantRequest\">\r\n
1359
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantRequest\">\r\n
1360
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyResponse\">\r\n
1361
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyResponse\">\r\n
1362
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createMerchantResponse\">\r\n
1363
+ \ <wsdl:part name=\"parameters\" element=\"impl:createMerchantResponse\">\r\n
1364
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsRequest\">\r\n
1365
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsRequest\">\r\n
1366
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsRequest\">\r\n
1367
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsRequest\">\r\n
1368
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disableWalletResponse\">\r\n
1369
+ \ <wsdl:part name=\"parameters\" element=\"impl:disableWalletResponse\">\r\n
1370
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doRecurrentWalletPaymentResponse\">\r\n
1371
+ \ <wsdl:part name=\"parameters\" element=\"impl:doRecurrentWalletPaymentResponse\">\r\n
1372
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletResponse\">\r\n
1373
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletResponse\">\r\n
1374
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletRequest\">\r\n
1375
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletRequest\">\r\n
1376
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassResetResponse\">\r\n
1377
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassResetResponse\">\r\n
1378
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditResponse\">\r\n
1379
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditResponse\">\r\n
1380
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getPaymentRecordResponse\">\r\n
1381
+ \ <wsdl:part name=\"parameters\" element=\"impl:getPaymentRecordResponse\">\r\n
1382
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchRequest\">\r\n
1383
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchRequest\">\r\n
1384
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateBillingRecordRequest\">\r\n
1385
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateBillingRecordRequest\">\r\n
1386
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getTokenResponse\">\r\n
1387
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTokenResponse\">\r\n
1388
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsResponse\">\r\n
1389
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsResponse\">\r\n
1390
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"verifyEnrollmentResponse\">\r\n
1391
+ \ <wsdl:part name=\"parameters\" element=\"impl:verifyEnrollmentResponse\">\r\n
1392
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordRequest\">\r\n
1393
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordRequest\">\r\n
1394
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationRequest\">\r\n
1395
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationRequest\">\r\n
1396
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWalletRequest\">\r\n
1397
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWalletRequest\">\r\n
1398
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getEncryptionKeyRequest\">\r\n
1399
+ \ <wsdl:part name=\"parameters\" element=\"impl:getEncryptionKeyRequest\">\r\n
1400
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doMassCaptureResponse\">\r\n
1401
+ \ <wsdl:part name=\"parameters\" element=\"impl:doMassCaptureResponse\">\r\n
1402
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetResponse\">\r\n
1403
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetResponse\">\r\n </wsdl:part>\r\n
1404
+ \ </wsdl:message>\r\n <wsdl:message name=\"manageWebWalletResponse\">\r\n
1405
+ \ <wsdl:part name=\"parameters\" element=\"impl:manageWebWalletResponse\">\r\n
1406
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"createWebWalletResponse\">\r\n
1407
+ \ <wsdl:part name=\"parameters\" element=\"impl:createWebWalletResponse\">\r\n
1408
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"unBlockResponse\">\r\n
1409
+ \ <wsdl:part name=\"parameters\" element=\"impl:unBlockResponse\">\r\n </wsdl:part>\r\n
1410
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMassTraitmentDetailsResponse\">\r\n
1411
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMassTraitmentDetailsResponse\">\r\n
1412
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doReAuthorizationResponse\">\r\n
1413
+ \ <wsdl:part name=\"parameters\" element=\"impl:doReAuthorizationResponse\">\r\n
1414
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCreditRequest\">\r\n
1415
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCreditRequest\">\r\n </wsdl:part>\r\n
1416
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTokenRequest\">\r\n <wsdl:part
1417
+ name=\"parameters\" element=\"impl:getTokenRequest\">\r\n </wsdl:part>\r\n
1418
+ \ </wsdl:message>\r\n <wsdl:message name=\"doRefundResponse\">\r\n <wsdl:part
1419
+ name=\"parameters\" element=\"impl:doRefundResponse\">\r\n </wsdl:part>\r\n
1420
+ \ </wsdl:message>\r\n <wsdl:message name=\"getTransactionDetailsResponse\">\r\n
1421
+ \ <wsdl:part name=\"parameters\" element=\"impl:getTransactionDetailsResponse\">\r\n
1422
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getAlertDetailsResponse\">\r\n
1423
+ \ <wsdl:part name=\"parameters\" element=\"impl:getAlertDetailsResponse\">\r\n
1424
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doCaptureRequest\">\r\n
1425
+ \ <wsdl:part name=\"parameters\" element=\"impl:doCaptureRequest\">\r\n
1426
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getBillingRecordRequest\">\r\n
1427
+ \ <wsdl:part name=\"parameters\" element=\"impl:getBillingRecordRequest\">\r\n
1428
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordRequest\">\r\n
1429
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordRequest\">\r\n
1430
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updateWebWalletResponse\">\r\n
1431
+ \ <wsdl:part name=\"parameters\" element=\"impl:updateWebWalletResponse\">\r\n
1432
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"updatePaymentRecordResponse\">\r\n
1433
+ \ <wsdl:part name=\"parameters\" element=\"impl:updatePaymentRecordResponse\">\r\n
1434
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doWebPaymentResponse\">\r\n
1435
+ \ <wsdl:part name=\"parameters\" element=\"impl:doWebPaymentResponse\">\r\n
1436
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getWebPaymentDetailsRequest\">\r\n
1437
+ \ <wsdl:part name=\"parameters\" element=\"impl:getWebPaymentDetailsRequest\">\r\n
1438
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"doResetRequest\">\r\n
1439
+ \ <wsdl:part name=\"parameters\" element=\"impl:doResetRequest\">\r\n </wsdl:part>\r\n
1440
+ \ </wsdl:message>\r\n <wsdl:message name=\"enableWalletResponse\">\r\n <wsdl:part
1441
+ name=\"parameters\" element=\"impl:enableWalletResponse\">\r\n </wsdl:part>\r\n
1442
+ \ </wsdl:message>\r\n <wsdl:message name=\"getMerchantSettingsResponse\">\r\n
1443
+ \ <wsdl:part name=\"parameters\" element=\"impl:getMerchantSettingsResponse\">\r\n
1444
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"disablePaymentRecordResponse\">\r\n
1445
+ \ <wsdl:part name=\"parameters\" element=\"impl:disablePaymentRecordResponse\">\r\n
1446
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"transactionsSearchResponse\">\r\n
1447
+ \ <wsdl:part name=\"parameters\" element=\"impl:transactionsSearchResponse\">\r\n
1448
+ \ </wsdl:part>\r\n </wsdl:message>\r\n <wsdl:message name=\"getCardsRequest\">\r\n
1449
+ \ <wsdl:part name=\"parameters\" element=\"impl:getCardsRequest\">\r\n </wsdl:part>\r\n
1450
+ \ </wsdl:message>\r\n <wsdl:portType name=\"WebPaymentAPI\">\r\n <wsdl:operation
1451
+ name=\"doWebPayment\">\r\n <wsdl:input name=\"doWebPaymentRequest\" message=\"impl:doWebPaymentRequest\">\r\n
1452
+ \ </wsdl:input>\r\n <wsdl:output name=\"doWebPaymentResponse\" message=\"impl:doWebPaymentResponse\">\r\n
1453
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebPaymentDetails\">\r\n
1454
+ \ <wsdl:input name=\"getWebPaymentDetailsRequest\" message=\"impl:getWebPaymentDetailsRequest\">\r\n
1455
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebPaymentDetailsResponse\"
1456
+ message=\"impl:getWebPaymentDetailsResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1457
+ \ <wsdl:operation name=\"manageWebWallet\">\r\n <wsdl:input name=\"manageWebWalletRequest\"
1458
+ message=\"impl:manageWebWalletRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1459
+ name=\"manageWebWalletResponse\" message=\"impl:manageWebWalletResponse\">\r\n
1460
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWebWallet\">\r\n
1461
+ \ <wsdl:input name=\"createWebWalletRequest\" message=\"impl:createWebWalletRequest\">\r\n
1462
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWebWalletResponse\" message=\"impl:createWebWalletResponse\">\r\n
1463
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWebWallet\">\r\n
1464
+ \ <wsdl:input name=\"updateWebWalletRequest\" message=\"impl:updateWebWalletRequest\">\r\n
1465
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWebWalletResponse\" message=\"impl:updateWebWalletResponse\">\r\n
1466
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n
1467
+ \ <wsdl:input name=\"getWebWalletRequest\" message=\"impl:getWebWalletRequest\">\r\n
1468
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWebWalletResponse\" message=\"impl:getWebWalletResponse\">\r\n
1469
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
1470
+ name=\"DirectPaymentAPI\">\r\n <wsdl:operation name=\"doAuthorization\">\r\n
1471
+ \ <wsdl:input name=\"doAuthorizationRequest\" message=\"impl:doAuthorizationRequest\">\r\n
1472
+ \ </wsdl:input>\r\n <wsdl:output name=\"doAuthorizationResponse\" message=\"impl:doAuthorizationResponse\">\r\n
1473
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCapture\">\r\n
1474
+ \ <wsdl:input name=\"doCaptureRequest\" message=\"impl:doCaptureRequest\">\r\n
1475
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCaptureResponse\" message=\"impl:doCaptureResponse\">\r\n
1476
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
1477
+ \ <wsdl:input name=\"doReAuthorizationRequest\" message=\"impl:doReAuthorizationRequest\">\r\n
1478
+ \ </wsdl:input>\r\n <wsdl:output name=\"doReAuthorizationResponse\"
1479
+ message=\"impl:doReAuthorizationResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1480
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdl:input name=\"doDebitRequest\"
1481
+ message=\"impl:doDebitRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1482
+ name=\"doDebitResponse\" message=\"impl:doDebitResponse\">\r\n </wsdl:output>\r\n
1483
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdl:input
1484
+ name=\"doRefundRequest\" message=\"impl:doRefundRequest\">\r\n </wsdl:input>\r\n
1485
+ \ <wsdl:output name=\"doRefundResponse\" message=\"impl:doRefundResponse\">\r\n
1486
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doReset\">\r\n
1487
+ \ <wsdl:input name=\"doResetRequest\" message=\"impl:doResetRequest\">\r\n
1488
+ \ </wsdl:input>\r\n <wsdl:output name=\"doResetResponse\" message=\"impl:doResetResponse\">\r\n
1489
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n
1490
+ \ <wsdl:input name=\"doCreditRequest\" message=\"impl:doCreditRequest\">\r\n
1491
+ \ </wsdl:input>\r\n <wsdl:output name=\"doCreditResponse\" message=\"impl:doCreditResponse\">\r\n
1492
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createWallet\">\r\n
1493
+ \ <wsdl:input name=\"createWalletRequest\" message=\"impl:createWalletRequest\">\r\n
1494
+ \ </wsdl:input>\r\n <wsdl:output name=\"createWalletResponse\" message=\"impl:createWalletResponse\">\r\n
1495
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n
1496
+ \ <wsdl:input name=\"updateWalletRequest\" message=\"impl:updateWalletRequest\">\r\n
1497
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateWalletResponse\" message=\"impl:updateWalletResponse\">\r\n
1498
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getWallet\">\r\n
1499
+ \ <wsdl:input name=\"getWalletRequest\" message=\"impl:getWalletRequest\">\r\n
1500
+ \ </wsdl:input>\r\n <wsdl:output name=\"getWalletResponse\" message=\"impl:getWalletResponse\">\r\n
1501
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n
1502
+ \ <wsdl:input name=\"getCardsRequest\" message=\"impl:getCardsRequest\">\r\n
1503
+ \ </wsdl:input>\r\n <wsdl:output name=\"getCardsResponse\" message=\"impl:getCardsResponse\">\r\n
1504
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"disableWallet\">\r\n
1505
+ \ <wsdl:input name=\"disableWalletRequest\" message=\"impl:disableWalletRequest\">\r\n
1506
+ \ </wsdl:input>\r\n <wsdl:output name=\"disableWalletResponse\" message=\"impl:disableWalletResponse\">\r\n
1507
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n
1508
+ \ <wsdl:input name=\"enableWalletRequest\" message=\"impl:enableWalletRequest\">\r\n
1509
+ \ </wsdl:input>\r\n <wsdl:output name=\"enableWalletResponse\" message=\"impl:enableWalletResponse\">\r\n
1510
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doImmediateWalletPayment\">\r\n
1511
+ \ <wsdl:input name=\"doImmediateWalletPaymentRequest\" message=\"impl:doImmediateWalletPaymentRequest\">\r\n
1512
+ \ </wsdl:input>\r\n <wsdl:output name=\"doImmediateWalletPaymentResponse\"
1513
+ message=\"impl:doImmediateWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1514
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
1515
+ \ <wsdl:input name=\"doScheduledWalletPaymentRequest\" message=\"impl:doScheduledWalletPaymentRequest\">\r\n
1516
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScheduledWalletPaymentResponse\"
1517
+ message=\"impl:doScheduledWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1518
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n
1519
+ \ <wsdl:input name=\"doRecurrentWalletPaymentRequest\" message=\"impl:doRecurrentWalletPaymentRequest\">\r\n
1520
+ \ </wsdl:input>\r\n <wsdl:output name=\"doRecurrentWalletPaymentResponse\"
1521
+ message=\"impl:doRecurrentWalletPaymentResponse\">\r\n </wsdl:output>\r\n
1522
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getPaymentRecord\">\r\n
1523
+ \ <wsdl:input name=\"getPaymentRecordRequest\" message=\"impl:getPaymentRecordRequest\">\r\n
1524
+ \ </wsdl:input>\r\n <wsdl:output name=\"getPaymentRecordResponse\"
1525
+ message=\"impl:getPaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1526
+ \ <wsdl:operation name=\"disablePaymentRecord\">\r\n <wsdl:input name=\"disablePaymentRecordRequest\"
1527
+ message=\"impl:disablePaymentRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1528
+ name=\"disablePaymentRecordResponse\" message=\"impl:disablePaymentRecordResponse\">\r\n
1529
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"verifyEnrollment\">\r\n
1530
+ \ <wsdl:input name=\"verifyEnrollmentRequest\" message=\"impl:verifyEnrollmentRequest\">\r\n
1531
+ \ </wsdl:input>\r\n <wsdl:output name=\"verifyEnrollmentResponse\"
1532
+ message=\"impl:verifyEnrollmentResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1533
+ \ <wsdl:operation name=\"verifyAuthentication\">\r\n <wsdl:input name=\"verifyAuthenticationRequest\"
1534
+ message=\"impl:verifyAuthenticationRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1535
+ name=\"verifyAuthenticationResponse\" message=\"impl:verifyAuthenticationResponse\">\r\n
1536
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
1537
+ \ <wsdl:input name=\"createMerchantRequest\" message=\"impl:createMerchantRequest\">\r\n
1538
+ \ </wsdl:input>\r\n <wsdl:output name=\"createMerchantResponse\" message=\"impl:createMerchantResponse\">\r\n
1539
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doScoringCheque\">\r\n
1540
+ \ <wsdl:input name=\"doScoringChequeRequest\" message=\"impl:doScoringChequeRequest\">\r\n
1541
+ \ </wsdl:input>\r\n <wsdl:output name=\"doScoringChequeResponse\" message=\"impl:doScoringChequeResponse\">\r\n
1542
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getEncryptionKey\">\r\n
1543
+ \ <wsdl:input name=\"getEncryptionKeyRequest\" message=\"impl:getEncryptionKeyRequest\">\r\n
1544
+ \ </wsdl:input>\r\n <wsdl:output name=\"getEncryptionKeyResponse\"
1545
+ message=\"impl:getEncryptionKeyResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1546
+ \ <wsdl:operation name=\"getMerchantSettings\">\r\n <wsdl:input name=\"getMerchantSettingsRequest\"
1547
+ message=\"impl:getMerchantSettingsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1548
+ name=\"getMerchantSettingsResponse\" message=\"impl:getMerchantSettingsResponse\">\r\n
1549
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getBalance\">\r\n
1550
+ \ <wsdl:input name=\"getBalanceRequest\" message=\"impl:getBalanceRequest\">\r\n
1551
+ \ </wsdl:input>\r\n <wsdl:output name=\"getBalanceResponse\" message=\"impl:getBalanceResponse\">\r\n
1552
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n
1553
+ \ <wsdl:input message=\"impl:getTokenRequest\">\r\n </wsdl:input>\r\n
1554
+ \ <wsdl:output message=\"impl:getTokenResponse\">\r\n </wsdl:output>\r\n
1555
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"unBlock\">\r\n <wsdl:input
1556
+ name=\"unBlockRequest\" message=\"impl:unBlockRequest\">\r\n </wsdl:input>\r\n
1557
+ \ <wsdl:output name=\"unBlockResponse\" message=\"impl:unBlockResponse\">\r\n
1558
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
1559
+ \ <wsdl:input name=\"updatePaymentRecordRequest\" message=\"impl:updatePaymentRecordRequest\">\r\n
1560
+ \ </wsdl:input>\r\n <wsdl:output name=\"updatePaymentRecordResponse\"
1561
+ message=\"impl:updatePaymentRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1562
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdl:input name=\"getBillingRecordRequest\"
1563
+ message=\"impl:getBillingRecordRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1564
+ name=\"getBillingRecordResponse\" message=\"impl:getBillingRecordResponse\">\r\n
1565
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"updateBillingRecord\">\r\n
1566
+ \ <wsdl:input name=\"updateBillingRecordRequest\" message=\"impl:updateBillingRecordRequest\">\r\n
1567
+ \ </wsdl:input>\r\n <wsdl:output name=\"updateBillingRecordResponse\"
1568
+ message=\"impl:updateBillingRecordResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1569
+ \ <wsdl:operation name=\"doBankTransfer\">\r\n <wsdl:input name=\"doBankTransferRequest\"
1570
+ message=\"impl:doBankTransferRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1571
+ name=\"doBankTransferResponse\" message=\"impl:doBankTransferResponse\">\r\n
1572
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType
1573
+ name=\"MassPaymentAPI\">\r\n <wsdl:operation name=\"doMassCapture\">\r\n
1574
+ \ <wsdl:input name=\"doMassCaptureRequest\" message=\"impl:doMassCaptureRequest\">\r\n
1575
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassCaptureResponse\" message=\"impl:doMassCaptureResponse\">\r\n
1576
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassRefund\">\r\n
1577
+ \ <wsdl:input name=\"doMassRefundRequest\" message=\"impl:doMassRefundRequest\">\r\n
1578
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassRefundResponse\" message=\"impl:doMassRefundResponse\">\r\n
1579
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"doMassReset\">\r\n
1580
+ \ <wsdl:input name=\"doMassResetRequest\" message=\"impl:doMassResetRequest\">\r\n
1581
+ \ </wsdl:input>\r\n <wsdl:output name=\"doMassResetResponse\" message=\"impl:doMassResetResponse\">\r\n
1582
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
1583
+ \ <wsdl:input name=\"getMassTraitmentDetailsRequest\" message=\"impl:getMassTraitmentDetailsRequest\">\r\n
1584
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMassTraitmentDetailsResponse\"
1585
+ message=\"impl:getMassTraitmentDetailsResponse\">\r\n </wsdl:output>\r\n
1586
+ \ </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:portType name=\"ExtendedAPI\">\r\n
1587
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdl:input name=\"getTransactionDetailsRequest\"
1588
+ message=\"impl:getTransactionDetailsRequest\">\r\n </wsdl:input>\r\n <wsdl:output
1589
+ name=\"getTransactionDetailsResponse\" message=\"impl:getTransactionDetailsResponse\">\r\n
1590
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"transactionsSearch\">\r\n
1591
+ \ <wsdl:input name=\"transactionsSearchRequest\" message=\"impl:transactionsSearchRequest\">\r\n
1592
+ \ </wsdl:input>\r\n <wsdl:output name=\"transactionsSearchResponse\"
1593
+ message=\"impl:transactionsSearchResponse\">\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1594
+ \ <wsdl:operation name=\"getAlertDetails\">\r\n <wsdl:input message=\"impl:getAlertDetailsRequest\">\r\n
1595
+ \ </wsdl:input>\r\n <wsdl:output message=\"impl:getAlertDetailsResponse\">\r\n
1596
+ \ </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:portType>\r\n <wsdl:binding
1597
+ name=\"DirectPaymentAPISoapBinding\" type=\"impl:DirectPaymentAPI\">\r\n <wsdlsoap:binding
1598
+ style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1599
+ \ <wsdl:operation name=\"doAuthorization\">\r\n <wsdlsoap:operation
1600
+ soapAction=\"doAuthorization\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1601
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1602
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1603
+ name=\"doCapture\">\r\n <wsdlsoap:operation soapAction=\"doCapture\"/>\r\n
1604
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1605
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1606
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doReAuthorization\">\r\n
1607
+ \ <wsdlsoap:operation soapAction=\"doReAuthorization\"/>\r\n <wsdl:input>\r\n
1608
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1609
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1610
+ \ <wsdl:operation name=\"doDebit\">\r\n <wsdlsoap:operation soapAction=\"doDebit\"/>\r\n
1611
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1612
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1613
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doRefund\">\r\n <wsdlsoap:operation
1614
+ soapAction=\"doRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1615
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1616
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1617
+ name=\"doReset\">\r\n <wsdlsoap:operation soapAction=\"doReset\"/>\r\n
1618
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1619
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1620
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doCredit\">\r\n <wsdlsoap:operation
1621
+ soapAction=\"doCredit\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1622
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1623
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1624
+ name=\"createWallet\">\r\n <wsdlsoap:operation soapAction=\"createWallet\"/>\r\n
1625
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1626
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1627
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updateWallet\">\r\n <wsdlsoap:operation
1628
+ soapAction=\"updateWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1629
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1630
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1631
+ name=\"getWallet\">\r\n <wsdlsoap:operation soapAction=\"getWallet\"/>\r\n
1632
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1633
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1634
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getCards\">\r\n <wsdlsoap:operation
1635
+ soapAction=\"getCards\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1636
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1637
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1638
+ name=\"disableWallet\">\r\n <wsdlsoap:operation soapAction=\"disableWallet\"/>\r\n
1639
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1640
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1641
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"enableWallet\">\r\n <wsdlsoap:operation
1642
+ soapAction=\"enableWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1643
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1644
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1645
+ name=\"doImmediateWalletPayment\">\r\n <wsdlsoap:operation soapAction=\"doImmediateWalletPayment\"/>\r\n
1646
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1647
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1648
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doScheduledWalletPayment\">\r\n
1649
+ \ <wsdlsoap:operation soapAction=\"doScheduledWalletPayment\"/>\r\n <wsdl:input>\r\n
1650
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1651
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1652
+ \ <wsdl:operation name=\"doRecurrentWalletPayment\">\r\n <wsdlsoap:operation
1653
+ soapAction=\"doRecurrentWalletPayment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1654
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1655
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1656
+ name=\"getPaymentRecord\">\r\n <wsdlsoap:operation soapAction=\"getPaymentRecord\"/>\r\n
1657
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1658
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1659
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"disablePaymentRecord\">\r\n
1660
+ \ <wsdlsoap:operation soapAction=\"disablePaymentRecord\"/>\r\n <wsdl:input>\r\n
1661
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1662
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1663
+ \ <wsdl:operation name=\"verifyEnrollment\">\r\n <wsdlsoap:operation
1664
+ soapAction=\"verifyEnrollment\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1665
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1666
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1667
+ name=\"verifyAuthentication\">\r\n <wsdlsoap:operation soapAction=\"verifyAuthentication\"/>\r\n
1668
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1669
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1670
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"createMerchant\">\r\n
1671
+ \ <wsdlsoap:operation soapAction=\"createMerchant\"/>\r\n <wsdl:input>\r\n
1672
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1673
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1674
+ \ <wsdl:operation name=\"doScoringCheque\">\r\n <wsdlsoap:operation
1675
+ soapAction=\"doScoringCheque\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1676
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1677
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1678
+ name=\"getEncryptionKey\">\r\n <wsdlsoap:operation soapAction=\"getEncryptionKey\"/>\r\n
1679
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1680
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1681
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMerchantSettings\">\r\n
1682
+ \ <wsdlsoap:operation soapAction=\"getMerchantSettings\"/>\r\n <wsdl:input
1683
+ name=\"getMerchantSettingsRequest\">\r\n <wsdlsoap:body use=\"literal\"/>\r\n
1684
+ \ </wsdl:input>\r\n <wsdl:output name=\"getMerchantSettingsResponse\">\r\n
1685
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1686
+ \ <wsdl:operation name=\"getBalance\">\r\n <wsdlsoap:operation soapAction=\"getBalance\"/>\r\n
1687
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1688
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1689
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getToken\">\r\n <wsdlsoap:operation
1690
+ soapAction=\"getToken\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1691
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1692
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1693
+ name=\"unBlock\">\r\n <wsdlsoap:operation soapAction=\"unBlock\"/>\r\n
1694
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1695
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1696
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"updatePaymentRecord\">\r\n
1697
+ \ <wsdlsoap:operation soapAction=\"updatePaymentRecord\"/>\r\n <wsdl:input>\r\n
1698
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1699
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1700
+ \ <wsdl:operation name=\"getBillingRecord\">\r\n <wsdlsoap:operation
1701
+ soapAction=\"getBillingRecord\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1702
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1703
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1704
+ name=\"updateBillingRecord\">\r\n <wsdlsoap:operation soapAction=\"updateBillingRecord\"/>\r\n
1705
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1706
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1707
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"doBankTransfer\">\r\n
1708
+ \ <wsdlsoap:operation soapAction=\"doBankTransfer\"/>\r\n <wsdl:input>\r\n
1709
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1710
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1711
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"WebPaymentAPISoapBinding\" type=\"impl:WebPaymentAPI\">\r\n
1712
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1713
+ \ <wsdl:operation name=\"getWebPaymentDetails\">\r\n <wsdlsoap:operation
1714
+ soapAction=\"getWebPaymentDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1715
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1716
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1717
+ name=\"doWebPayment\">\r\n <wsdlsoap:operation soapAction=\"doWebPayment\"/>\r\n
1718
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1719
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1720
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"manageWebWallet\">\r\n
1721
+ \ <wsdlsoap:operation soapAction=\"manageWebWallet\"/>\r\n <wsdl:input>\r\n
1722
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1723
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1724
+ \ <wsdl:operation name=\"createWebWallet\">\r\n <wsdlsoap:operation
1725
+ soapAction=\"createWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1726
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1727
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1728
+ name=\"updateWebWallet\">\r\n <wsdlsoap:operation soapAction=\"updateWebWallet\"/>\r\n
1729
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1730
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1731
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getWebWallet\">\r\n <wsdlsoap:operation
1732
+ soapAction=\"getWebWallet\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1733
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1734
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1735
+ \ <wsdl:binding name=\"ExtendedAPISoapBinding\" type=\"impl:ExtendedAPI\">\r\n
1736
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1737
+ \ <wsdl:operation name=\"getTransactionDetails\">\r\n <wsdlsoap:operation
1738
+ soapAction=\"getTransactionDetails\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1739
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1740
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1741
+ name=\"transactionsSearch\">\r\n <wsdlsoap:operation soapAction=\"transactionsSearch\"/>\r\n
1742
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1743
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1744
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getAlertDetails\">\r\n
1745
+ \ <wsdlsoap:operation soapAction=\"getAlertDetails\"/>\r\n <wsdl:input>\r\n
1746
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1747
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1748
+ \ </wsdl:binding>\r\n <wsdl:binding name=\"MassPaymentAPISoapBinding\" type=\"impl:MassPaymentAPI\">\r\n
1749
+ \ <wsdlsoap:binding style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/>\r\n
1750
+ \ <wsdl:operation name=\"doMassCapture\">\r\n <wsdlsoap:operation soapAction=\"doMassCapture\"/>\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=\"doMassRefund\">\r\n <wsdlsoap:operation
1754
+ soapAction=\"doMassRefund\"/>\r\n <wsdl:input>\r\n <wsdlsoap:body
1755
+ use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <wsdlsoap:body
1756
+ use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1757
+ name=\"doMassReset\">\r\n <wsdlsoap:operation soapAction=\"doMassReset\"/>\r\n
1758
+ \ <wsdl:input>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n
1759
+ \ <wsdl:output>\r\n <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n
1760
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"getMassTraitmentDetails\">\r\n
1761
+ \ <wsdlsoap:operation soapAction=\"getMassTraitmentDetails\"/>\r\n <wsdl:input>\r\n
1762
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1763
+ \ <wsdlsoap:body use=\"literal\"/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1764
+ \ </wsdl:binding>\r\n <wsdl:service name=\"WebPaymentAPI\">\r\n <wsdl:port
1765
+ name=\"WebPaymentAPI\" binding=\"impl:WebPaymentAPISoapBinding\">\r\n <wsdlsoap:address
1766
+ location=\"http://host/V4/services/WebPaymentAPI\"/>\r\n </wsdl:port>\r\n
1767
+ \ </wsdl:service>\r\n</wsdl:definitions>\r\n"
1768
+ http_version:
1769
+ recorded_at: Wed, 25 Jan 2017 09:47:06 GMT
1770
+ - request:
1771
+ method: post
1772
+ uri: https://homologation.payline.com/V4/services/DirectPaymentAPI
1773
+ body:
1774
+ encoding: UTF-8
1775
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1776
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:impl="http://impl.ws.payline.experian.com"
1777
+ 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>101</ins0:action><ins0:mode>CPT</ins0:mode><ins0:contractNumber>1234567</ins0:contractNumber></impl:payment><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>c2a4d900ec609f2054d781eab361a31f</ins0:ref><ins0:date>25/01/2017
1778
+ 10:47</ins0:date></impl:order><impl:buyer></impl:buyer><impl:version>16</impl:version><impl:contractNumber>1234567</impl:contractNumber><impl:languageCode
1779
+ xsi:nil="true"/><impl:securityMode>SSL</impl:securityMode><impl:returnURL>http://ct2c.fr</impl:returnURL><impl:cancelURL>http://ct2c.fr</impl:cancelURL><impl:notificationURL
1780
+ xsi:nil="true"/><impl:customPaymentPageCode xsi:nil="true"/><impl:selectedContractList><impl:selectedContract>1234567</impl:selectedContract></impl:selectedContractList></impl:doAuthorizationRequest></env:Body></env:Envelope>
1781
+ headers:
1782
+ Soapaction:
1783
+ - '"doAuthorization"'
1784
+ Content-Type:
1785
+ - text/xml;charset=UTF-8
1786
+ Content-Length:
1787
+ - '1411'
1788
+ Accept-Encoding:
1789
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1790
+ Accept:
1791
+ - "*/*"
1792
+ User-Agent:
1793
+ - Ruby
1794
+ Authorization:
1795
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
1796
+ response:
1797
+ status:
1798
+ code: 200
1799
+ message: OK
1800
+ headers:
1801
+ Date:
1802
+ - Wed, 25 Jan 2017 09:47:06 GMT
1803
+ Content-Type:
1804
+ - text/xml;charset=UTF-8
1805
+ Vary:
1806
+ - Accept-Encoding
1807
+ Content-Length:
1808
+ - '650'
1809
+ Connection:
1810
+ - Keep-Alive
1811
+ body:
1812
+ encoding: ASCII-8BIT
1813
+ string: <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><doAuthorizationResponse
1814
+ xmlns="http://impl.ws.payline.experian.com"><result xmlns="http://impl.ws.payline.experian.com"><code
1815
+ xmlns="http://obj.ws.payline.experian.com">00000</code><shortMessage xmlns="http://obj.ws.payline.experian.com">Transaction
1816
+ approved</shortMessage><longMessage xmlns="http://obj.ws.payline.experian.com">Transaction
1817
+ approved</longMessage></result><transaction xmlns="http://impl.ws.payline.experian.com"><id
1818
+ xmlns="http://obj.ws.payline.experian.com">27025104706905</id><date xmlns="http://obj.ws.payline.experian.com">25/01/17
1819
+ 10:47:06</date><isDuplicated xmlns="http://obj.ws.payline.experian.com">0</isDuplicated><isPossibleFraud
1820
+ xmlns="http://obj.ws.payline.experian.com">0</isPossibleFraud><fraudResult
1821
+ xmlns="http://obj.ws.payline.experian.com" /><explanation xmlns="http://obj.ws.payline.experian.com"
1822
+ /><threeDSecure xmlns="http://obj.ws.payline.experian.com">N</threeDSecure><score
1823
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1824
+ xsi:nil="true" /></transaction><authorization xmlns="http://impl.ws.payline.experian.com"><number
1825
+ xmlns="http://obj.ws.payline.experian.com">A55A</number><date xmlns="http://obj.ws.payline.experian.com">25/01/17
1826
+ 10:47:06</date></authorization><card xmlns="http://impl.ws.payline.experian.com"><number
1827
+ xmlns="http://obj.ws.payline.experian.com">497010XXXXXX5734</number><type
1828
+ xmlns="http://obj.ws.payline.experian.com">CB</type><expirationDate xmlns="http://obj.ws.payline.experian.com">1217</expirationDate></card><extendedCard
1829
+ xmlns="http://impl.ws.payline.experian.com"><country xmlns="http://obj.ws.payline.experian.com">FRA</country><isCvd
1830
+ xmlns="http://obj.ws.payline.experian.com" /><bank xmlns="http://obj.ws.payline.experian.com"
1831
+ /><type xmlns="http://obj.ws.payline.experian.com">VISA</type><network xmlns="http://obj.ws.payline.experian.com">VISA</network><product
1832
+ xmlns="http://obj.ws.payline.experian.com">Visa Business</product></extendedCard><contractNumber
1833
+ xmlns="http://impl.ws.payline.experian.com">1234567</contractNumber></doAuthorizationResponse></soapenv:Body></soapenv:Envelope>
1834
+ http_version:
1835
+ recorded_at: Wed, 25 Jan 2017 09:47:06 GMT
1836
+ - request:
1837
+ method: post
1838
+ uri: https://homologation.payline.com/V4/services/DirectPaymentAPI
1839
+ body:
1840
+ encoding: UTF-8
1841
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1842
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:impl="http://impl.ws.payline.experian.com"
1843
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://obj.ws.payline.experian.com"><env:Body><impl:doRefundRequest><impl:transactionID>27025104706905</impl:transactionID><impl:payment><ins0:amount>NOT
1844
+ A VALID AMOUNT</ins0:amount><ins0:currency>978</ins0:currency><ins0:action>421</ins0:action><ins0:mode>CPT</ins0:mode><ins0:contractNumber>1234567</ins0:contractNumber></impl:payment><impl:version>16</impl:version><impl:contractNumber>1234567</impl:contractNumber><impl:languageCode
1845
+ xsi:nil="true"/><impl:securityMode>SSL</impl:securityMode><impl:returnURL>http://ct2c.fr</impl:returnURL><impl:cancelURL>http://ct2c.fr</impl:cancelURL><impl:notificationURL
1846
+ xsi:nil="true"/><impl:customPaymentPageCode xsi:nil="true"/><impl:selectedContractList><impl:selectedContract>1234567</impl:selectedContract></impl:selectedContractList></impl:doRefundRequest></env:Body></env:Envelope>
1847
+ headers:
1848
+ Soapaction:
1849
+ - '"doRefund"'
1850
+ Content-Type:
1851
+ - text/xml;charset=UTF-8
1852
+ Content-Length:
1853
+ - '1095'
1854
+ Accept-Encoding:
1855
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1856
+ Accept:
1857
+ - "*/*"
1858
+ User-Agent:
1859
+ - Ruby
1860
+ Authorization:
1861
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
1862
+ response:
1863
+ status:
1864
+ code: 200
1865
+ message: OK
1866
+ headers:
1867
+ Date:
1868
+ - Wed, 25 Jan 2017 09:47:07 GMT
1869
+ Content-Type:
1870
+ - text/xml;charset=UTF-8
1871
+ Vary:
1872
+ - Accept-Encoding
1873
+ Content-Length:
1874
+ - '406'
1875
+ Connection:
1876
+ - Keep-Alive
1877
+ body:
1878
+ encoding: ASCII-8BIT
1879
+ string: '<?xml version=''1.0'' encoding=''UTF-8''?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><doRefundResponse
1880
+ xmlns="http://impl.ws.payline.experian.com"><result xmlns="http://impl.ws.payline.experian.com"><code
1881
+ xmlns="http://obj.ws.payline.experian.com">02305</code><shortMessage xmlns="http://obj.ws.payline.experian.com">Invalid
1882
+ Transaction</shortMessage><longMessage xmlns="http://obj.ws.payline.experian.com">Invalid
1883
+ field format : Payment Amount : Must be numeric(12), ex : 15078</longMessage></result><transaction
1884
+ xmlns="http://impl.ws.payline.experian.com"><id xmlns="http://obj.ws.payline.experian.com"
1885
+ /><date xmlns="http://obj.ws.payline.experian.com" /><isDuplicated xmlns="http://obj.ws.payline.experian.com"
1886
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><isPossibleFraud
1887
+ xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1888
+ xsi:nil="true" /></transaction></doRefundResponse></soapenv:Body></soapenv:Envelope>'
1889
+ http_version:
1890
+ recorded_at: Wed, 25 Jan 2017 09:47:07 GMT
1891
+ - request:
1892
+ method: post
1893
+ uri: https://homologation.payline.com/V4/services/DirectPaymentAPI
1894
+ body:
1895
+ encoding: UTF-8
1896
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1897
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:impl="http://impl.ws.payline.experian.com"
1898
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://obj.ws.payline.experian.com"><env:Body><impl:doRefundRequest><impl:transactionID>fake_transaction_id</impl:transactionID><impl:payment><ins0:amount>1000</ins0:amount><ins0:currency>978</ins0:currency><ins0:action>421</ins0:action><ins0:mode>CPT</ins0:mode><ins0:contractNumber>1234567</ins0:contractNumber></impl:payment><impl:version>16</impl:version><impl:contractNumber>1234567</impl:contractNumber><impl:languageCode
1899
+ xsi:nil="true"/><impl:securityMode>SSL</impl:securityMode><impl:returnURL>http://ct2c.fr</impl:returnURL><impl:cancelURL>http://ct2c.fr</impl:cancelURL><impl:notificationURL
1900
+ xsi:nil="true"/><impl:customPaymentPageCode xsi:nil="true"/><impl:selectedContractList><impl:selectedContract>1234567</impl:selectedContract></impl:selectedContractList></impl:doRefundRequest></env:Body></env:Envelope>
1901
+ headers:
1902
+ Soapaction:
1903
+ - '"doRefund"'
1904
+ Content-Type:
1905
+ - text/xml;charset=UTF-8
1906
+ Content-Length:
1907
+ - '1086'
1908
+ Accept-Encoding:
1909
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1910
+ Accept:
1911
+ - "*/*"
1912
+ User-Agent:
1913
+ - Ruby
1914
+ Authorization:
1915
+ - Basic MTY0ODI2OTQxNzMwMjU6c0o4ZzdwNEw2TEhha3BwYnhkSEg=
1916
+ response:
1917
+ status:
1918
+ code: 200
1919
+ message: OK
1920
+ headers:
1921
+ Date:
1922
+ - Wed, 25 Jan 2017 09:47:07 GMT
1923
+ Content-Type:
1924
+ - text/xml;charset=UTF-8
1925
+ Vary:
1926
+ - Accept-Encoding
1927
+ Content-Length:
1928
+ - '403'
1929
+ Connection:
1930
+ - Keep-Alive
1931
+ body:
1932
+ encoding: ASCII-8BIT
1933
+ string: <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><doRefundResponse
1934
+ xmlns="http://impl.ws.payline.experian.com"><result xmlns="http://impl.ws.payline.experian.com"><code
1935
+ xmlns="http://obj.ws.payline.experian.com">02301</code><shortMessage xmlns="http://obj.ws.payline.experian.com">Invalid
1936
+ Transaction</shortMessage><longMessage xmlns="http://obj.ws.payline.experian.com">Transaction
1937
+ ID is invalid.</longMessage></result><transaction xmlns="http://impl.ws.payline.experian.com"><id
1938
+ xmlns="http://obj.ws.payline.experian.com">PV425011723926068</id><date xmlns="http://obj.ws.payline.experian.com">25/01/17
1939
+ 10:47:07</date><isDuplicated xmlns="http://obj.ws.payline.experian.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1940
+ xsi:nil="true" /><isPossibleFraud xmlns="http://obj.ws.payline.experian.com"
1941
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /></transaction></doRefundResponse></soapenv:Body></soapenv:Envelope>
1942
+ http_version:
1943
+ recorded_at: Wed, 25 Jan 2017 09:47:19 GMT
1944
+ recorded_with: VCR 3.0.3