lemonway 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +2 -3
- data/README.md +8 -6
- data/lib/lemonway/client.rb +1 -1
- data/lib/lemonway/version.rb +2 -1
- data/spec/client_spec.rb +8 -9
- data/spec/fixtures/cassettes/create_wallet_success.yml +8 -1932
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e265381bb8cd51dff1e33b39e3eff75e3f4d95d
|
4
|
+
data.tar.gz: adce5b96c5ce8a1c42203456885dd5cf3e9812a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9165a5de5f791db71a16922642a54b872c6a54a7f305a5a1421e6eeb7b2f05f65ae6a5fac39bd07dc3c3f7c4f0e97b284f3288d90a7bc393c9a50866228e4176
|
7
|
+
data.tar.gz: 648ef7c5b3e13fcb58d5fe4ac5dfa8c9b4311c56024deb91b5ee8e3184d3446b571733c77fda4a7c246a6b678398e3e4cc54c14662066e0e02e54c48043acf14
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -25,9 +25,9 @@ Or install it yourself as:
|
|
25
25
|
- `client_config_options` (Hash) : optional hash passed to savon to build its [global options](https://github.com/savonrb/savon/blob/master/lib/savon/options.rb) used by the client on every query
|
26
26
|
- `client_config_block` (Block) : optional block to customize the savon client, takes a [savon global options](https://github.com/savonrb/savon/blob/master/lib/savon/options.rb) instance as param
|
27
27
|
```ruby
|
28
|
-
client = LemonWay::Client.new
|
28
|
+
client = LemonWay::Client.new({wsdl: "https://ws.lemonway.fr/[...]/service.asmx?wsdl"}, {ssl_verify_mode: :none})
|
29
29
|
#is the same as
|
30
|
-
client = LemonWay::Client.new
|
30
|
+
client = LemonWay::Client.new wsdl: "https://ws.lemonway.fr/[...]/service.asmx?wsdl" do |opts|
|
31
31
|
opts.ssl_verify_mode(:none)
|
32
32
|
end
|
33
33
|
```
|
@@ -48,7 +48,8 @@ client = LemonWay::Client.new wsdl: "https://ws.lemonway.fr/mb/ioio/dev/directk
|
|
48
48
|
wl_login: "test",
|
49
49
|
wl_pass: "test",
|
50
50
|
language: "fr",
|
51
|
-
version: "1.1"
|
51
|
+
version: "1.1",
|
52
|
+
wallet_ip: "127.0.0.1"
|
52
53
|
|
53
54
|
# list the available operations as follow :
|
54
55
|
resp = client.operations
|
@@ -65,9 +66,10 @@ resp = client.operations
|
|
65
66
|
resp = client.register_wallet, wallet: "123",
|
66
67
|
client_mail: "nico@las.com",
|
67
68
|
client_first_name: "nicolas",
|
68
|
-
client_last_name: "nicolas"
|
69
|
-
|
70
|
-
|
69
|
+
client_last_name: "nicolas",
|
70
|
+
wallet_ip: "127.0.0.1"
|
71
|
+
=> {id: '123', lwid: "98098"}
|
72
|
+
resp[:id] == resp['id'] == '123'
|
71
73
|
|
72
74
|
```
|
73
75
|
|
data/lib/lemonway/client.rb
CHANGED
@@ -44,7 +44,7 @@ module Lemonway
|
|
44
44
|
if result.key?(:e)
|
45
45
|
raise Error, [result.fetch(:e).try(:fetch, :code), result.fetch(:e).try(:fetch, :msg)].join(' : ')
|
46
46
|
elsif result.key?(:trans)
|
47
|
-
result[:trans][:
|
47
|
+
result[:trans].fetch(:hpay, result[:trans])
|
48
48
|
elsif result.key?(:wallet)
|
49
49
|
result[:wallet]
|
50
50
|
else
|
data/lib/lemonway/version.rb
CHANGED
data/spec/client_spec.rb
CHANGED
@@ -11,7 +11,7 @@ describe Lemonway::Client do
|
|
11
11
|
:walletIp => "91.222.286.32",
|
12
12
|
:wsdl => "https://ws.lemonway.fr/mb/ioio/dev/directkit/service.asmx?wsdl"
|
13
13
|
}
|
14
|
-
YAML.load_file('config.yml')
|
14
|
+
# YAML.load_file('config.yml')
|
15
15
|
}
|
16
16
|
subject { Lemonway::Client.new(opts) }
|
17
17
|
|
@@ -48,20 +48,19 @@ describe Lemonway::Client do
|
|
48
48
|
describe :api_methods do
|
49
49
|
let(:method_opts){
|
50
50
|
{
|
51
|
-
wallet: "
|
52
|
-
client_mail: "
|
51
|
+
wallet: "1234567",
|
52
|
+
client_mail: "nico1234567@las.com",
|
53
53
|
client_first_name: "nicolas",
|
54
54
|
client_last_name: "nicolas"
|
55
55
|
}
|
56
56
|
}
|
57
|
-
it "are delegated to the client instance"
|
58
|
-
|
57
|
+
it "are delegated to the client instance" do
|
59
58
|
expect(subject.instance).to receive(:operations).and_return([:register_wallet])
|
60
|
-
expect(subject.instance).to receive(:call).with(:register_wallet, :message => opts.update(method_opts).camelize_keys).and_call_original
|
61
|
-
VCR.use_cassette("create_wallet_success") do
|
59
|
+
expect(subject.instance).to receive(:call).with(:register_wallet, {:message => opts.update(method_opts).camelize_keys}).and_call_original
|
60
|
+
VCR.use_cassette("create_wallet_success",:match_requests_on => [:method]) do
|
62
61
|
resp = subject.register_wallet method_opts
|
63
|
-
expect(resp[:id]).to eq "
|
64
|
-
expect(resp[:lwid]).to eq "
|
62
|
+
expect(resp[:id]).to eq "1234567"
|
63
|
+
expect(resp[:lwid]).to eq "836"
|
65
64
|
end
|
66
65
|
end
|
67
66
|
end
|
@@ -1,1929 +1,5 @@
|
|
1
1
|
---
|
2
2
|
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://ws.lemonway.fr/mb/ioio/dev/directkit/service.asmx
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
9
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="Service_mb"
|
10
|
-
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><tns:RegisterWallet><tns:wlLogin>society</tns:wlLogin><tns:wlPass>rondoudou</tns:wlPass><tns:walletIp>87.231.205.18</tns:walletIp><tns:language>fr</tns:language><tns:version>1.1</tns:version><tns:wallet>123</tns:wallet><tns:clientMail>nico@las.com</tns:clientMail><tns:clientFirstName>nicolas</tns:clientFirstName><tns:clientLastName>nicolas</tns:clientLastName></tns:RegisterWallet></env:Body></env:Envelope>
|
11
|
-
headers:
|
12
|
-
Soapaction:
|
13
|
-
- '"Service_mb/RegisterWallet"'
|
14
|
-
Content-Type:
|
15
|
-
- text/xml;charset=UTF-8
|
16
|
-
Content-Length:
|
17
|
-
- '647'
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
Accept:
|
21
|
-
- "*/*"
|
22
|
-
User-Agent:
|
23
|
-
- Ruby
|
24
|
-
response:
|
25
|
-
status:
|
26
|
-
code: 200
|
27
|
-
message: OK
|
28
|
-
headers:
|
29
|
-
Cache-Control:
|
30
|
-
- private, max-age=0
|
31
|
-
Content-Type:
|
32
|
-
- text/xml; charset=utf-8
|
33
|
-
Server:
|
34
|
-
- Microsoft-IIS/7.5
|
35
|
-
X-Aspnet-Version:
|
36
|
-
- 4.0.30319
|
37
|
-
X-Powered-By:
|
38
|
-
- ASP.NET
|
39
|
-
Date:
|
40
|
-
- Sun, 03 Jan 2016 20:36:51 GMT
|
41
|
-
Content-Length:
|
42
|
-
- '440'
|
43
|
-
body:
|
44
|
-
encoding: UTF-8
|
45
|
-
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
46
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><RegisterWalletResponse
|
47
|
-
xmlns="Service_mb"><RegisterWalletResult><WALLET><ID>123</ID><LWID>591</LWID></WALLET></RegisterWalletResult></RegisterWalletResponse></soap:Body></soap:Envelope>
|
48
|
-
http_version:
|
49
|
-
recorded_at: Sun, 03 Jan 2016 20:36:52 GMT
|
50
|
-
- request:
|
51
|
-
method: get
|
52
|
-
uri: https://ws.lemonway.fr/mb/ioio/dev/directkit/service.asmx?wsdl
|
53
|
-
body:
|
54
|
-
encoding: US-ASCII
|
55
|
-
string: ''
|
56
|
-
headers:
|
57
|
-
Accept-Encoding:
|
58
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
59
|
-
Accept:
|
60
|
-
- "*/*"
|
61
|
-
User-Agent:
|
62
|
-
- Ruby
|
63
|
-
response:
|
64
|
-
status:
|
65
|
-
code: 403
|
66
|
-
message: Forbidden
|
67
|
-
headers:
|
68
|
-
Content-Type:
|
69
|
-
- text/html
|
70
|
-
Server:
|
71
|
-
- Microsoft-IIS/7.5
|
72
|
-
X-Powered-By:
|
73
|
-
- ASP.NET
|
74
|
-
Date:
|
75
|
-
- Fri, 05 Feb 2016 14:06:58 GMT
|
76
|
-
Content-Length:
|
77
|
-
- '1233'
|
78
|
-
body:
|
79
|
-
encoding: UTF-8
|
80
|
-
string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
|
81
|
-
xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
|
82
|
-
content=\"text/html; charset=iso-8859-1\"/>\r\n<title>403 - Forbidden: Access
|
83
|
-
is denied.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
|
84
|
-
Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
|
85
|
-
10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
|
86
|
-
\r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
|
87
|
-
0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
|
88
|
-
0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
|
89
|
-
id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
|
90
|
-
class=\"content-container\"><fieldset>\r\n <h2>403 - Forbidden: Access is
|
91
|
-
denied.</h2>\r\n <h3>You do not have permission to view this directory or
|
92
|
-
page using the credentials that you supplied.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
|
93
|
-
http_version:
|
94
|
-
recorded_at: Fri, 05 Feb 2016 14:06:59 GMT
|
95
|
-
- request:
|
96
|
-
method: get
|
97
|
-
uri: https://ws.lemonway.fr/mb/kwaala/dev/directkit/service.asmx?wsdl
|
98
|
-
body:
|
99
|
-
encoding: US-ASCII
|
100
|
-
string: ''
|
101
|
-
headers:
|
102
|
-
Accept-Encoding:
|
103
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
104
|
-
Accept:
|
105
|
-
- "*/*"
|
106
|
-
User-Agent:
|
107
|
-
- Ruby
|
108
|
-
response:
|
109
|
-
status:
|
110
|
-
code: 200
|
111
|
-
message: OK
|
112
|
-
headers:
|
113
|
-
Cache-Control:
|
114
|
-
- private, max-age=0
|
115
|
-
Content-Type:
|
116
|
-
- text/xml; charset=utf-8
|
117
|
-
Server:
|
118
|
-
- Microsoft-IIS/7.5
|
119
|
-
X-Aspnet-Version:
|
120
|
-
- 4.0.30319
|
121
|
-
X-Powered-By:
|
122
|
-
- ASP.NET
|
123
|
-
Date:
|
124
|
-
- Fri, 05 Feb 2016 14:16:06 GMT
|
125
|
-
Content-Length:
|
126
|
-
- '119981'
|
127
|
-
body:
|
128
|
-
encoding: UTF-8
|
129
|
-
string: "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<wsdl:definitions xmlns:s=\"http://www.w3.org/2001/XMLSchema\"
|
130
|
-
xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\" xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\"
|
131
|
-
xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\" xmlns:tns=\"Service_mb\"
|
132
|
-
xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\" xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\"
|
133
|
-
xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" targetNamespace=\"Service_mb\"
|
134
|
-
xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">\r\n <wsdl:types>\r\n <s:schema
|
135
|
-
elementFormDefault=\"qualified\" targetNamespace=\"Service_mb\">\r\n <s:element
|
136
|
-
name=\"RegisterWallet\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
137
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
138
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"clientMail\"
|
139
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
140
|
-
name=\"clientTitle\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
141
|
-
maxOccurs=\"1\" name=\"clientFirstName\" type=\"s:string\" />\r\n <s:element
|
142
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"clientLastName\" type=\"s:string\"
|
143
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"phoneNumber\"
|
144
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
145
|
-
name=\"mobileNumber\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
146
|
-
maxOccurs=\"1\" name=\"street\" type=\"s:string\" />\r\n <s:element
|
147
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"postCode\" type=\"s:string\" />\r\n
|
148
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"city\" type=\"s:string\"
|
149
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ctry\"
|
150
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
151
|
-
name=\"birthdate\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
152
|
-
maxOccurs=\"1\" name=\"isCompany\" type=\"s:string\" />\r\n <s:element
|
153
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"companyName\" type=\"s:string\" />\r\n
|
154
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"companyWebsite\"
|
155
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
156
|
-
name=\"companyDescription\" type=\"s:string\" />\r\n <s:element
|
157
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"isDebtor\" type=\"s:string\" />\r\n
|
158
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"nationality\"
|
159
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
160
|
-
name=\"birthcity\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
161
|
-
maxOccurs=\"1\" name=\"birthcountry\" type=\"s:string\" />\r\n <s:element
|
162
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"companyIdentificationNumber\" type=\"s:string\"
|
163
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"payerOrBeneficiary\"
|
164
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
165
|
-
name=\"isOneTimeCustomer\" type=\"s:string\" />\r\n <s:element
|
166
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
167
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
168
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
169
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
170
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
171
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
172
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
173
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
174
|
-
\ <s:element name=\"RegisterWalletResponse\">\r\n <s:complexType>\r\n
|
175
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
176
|
-
name=\"RegisterWalletResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
177
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"UpdateWalletDetails\">\r\n
|
178
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
179
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
180
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newEmail\" type=\"s:string\" />\r\n
|
181
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newTitle\" type=\"s:string\"
|
182
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newFirstName\"
|
183
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
184
|
-
name=\"newLastName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
185
|
-
maxOccurs=\"1\" name=\"newStreet\" type=\"s:string\" />\r\n <s:element
|
186
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newPostCode\" type=\"s:string\" />\r\n
|
187
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newCity\" type=\"s:string\"
|
188
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newCtry\"
|
189
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
190
|
-
name=\"newIp\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
191
|
-
maxOccurs=\"1\" name=\"newPhoneNumber\" type=\"s:string\" />\r\n <s:element
|
192
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newMobileNumber\" type=\"s:string\"
|
193
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newBirthDate\"
|
194
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
195
|
-
name=\"newIsCompany\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
196
|
-
maxOccurs=\"1\" name=\"newCompanyName\" type=\"s:string\" />\r\n <s:element
|
197
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newCompanyWebsite\" type=\"s:string\"
|
198
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newCompanyDescription\"
|
199
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
200
|
-
name=\"newIsDebtor\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
201
|
-
maxOccurs=\"1\" name=\"newNationality\" type=\"s:string\" />\r\n <s:element
|
202
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newBirthcity\" type=\"s:string\" />\r\n
|
203
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"newBirthcountry\"
|
204
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
205
|
-
name=\"newCompanyIdentificationNumber\" type=\"s:string\" />\r\n <s:element
|
206
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
207
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
208
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
209
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
210
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
211
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
212
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
213
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
214
|
-
\ <s:element name=\"UpdateWalletDetailsResponse\">\r\n <s:complexType>\r\n
|
215
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
216
|
-
name=\"UpdateWalletDetailsResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
217
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"UpdateWalletStatus\">\r\n
|
218
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
219
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
220
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"newStatus\" type=\"s:string\" />\r\n
|
221
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
222
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
223
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
224
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
225
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
226
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
227
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
228
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
229
|
-
\ <s:element name=\"UpdateWalletStatusResponse\">\r\n <s:complexType>\r\n
|
230
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
231
|
-
name=\"UpdateWalletStatusResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
232
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"RegisterIBAN\">\r\n
|
233
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
234
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
235
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"holder\" type=\"s:string\" />\r\n <s:element
|
236
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"bic\" type=\"s:string\" />\r\n <s:element
|
237
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"iban\" type=\"s:string\" />\r\n <s:element
|
238
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"dom1\" type=\"s:string\" />\r\n <s:element
|
239
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"dom2\" type=\"s:string\" />\r\n <s:element
|
240
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n
|
241
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ignoreIbanFormat\"
|
242
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
243
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
244
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
245
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
246
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
247
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
248
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
249
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
250
|
-
\ </s:element>\r\n <s:element name=\"RegisterIBANResponse\">\r\n
|
251
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
252
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"RegisterIBANResult\" type=\"s:string\"
|
253
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
254
|
-
\ <s:element name=\"RegisterIBANExtended\">\r\n <s:complexType>\r\n
|
255
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
256
|
-
name=\"ip\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
257
|
-
maxOccurs=\"1\" name=\"ua\" type=\"s:string\" />\r\n <s:element
|
258
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"boLogin\" type=\"s:string\" />\r\n
|
259
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"boPass\" type=\"s:string\"
|
260
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\"
|
261
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
262
|
-
name=\"accountType\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
263
|
-
maxOccurs=\"1\" name=\"holderName\" type=\"s:string\" />\r\n <s:element
|
264
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"accountNumber\" type=\"s:string\" />\r\n
|
265
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"holderCountry\"
|
266
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
267
|
-
name=\"bicCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
268
|
-
maxOccurs=\"1\" name=\"bankName\" type=\"s:string\" />\r\n <s:element
|
269
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"bankCountry\" type=\"s:string\" />\r\n
|
270
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"intermediaryBicCode\"
|
271
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
272
|
-
name=\"intermediaryBankName\" type=\"s:string\" />\r\n <s:element
|
273
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"intermediaryBankCountry\" type=\"s:string\"
|
274
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"comment\"
|
275
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
276
|
-
name=\"language\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
277
|
-
\ </s:element>\r\n <s:element name=\"RegisterIBANExtendedResponse\">\r\n
|
278
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
279
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"RegisterIBANExtendedResult\" type=\"s:string\"
|
280
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
281
|
-
\ <s:element name=\"RegisterSddMandate\">\r\n <s:complexType>\r\n
|
282
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
283
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
284
|
-
maxOccurs=\"1\" name=\"holder\" type=\"s:string\" />\r\n <s:element
|
285
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"bic\" type=\"s:string\" />\r\n <s:element
|
286
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"iban\" type=\"s:string\" />\r\n <s:element
|
287
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"isRecurring\" type=\"s:string\" />\r\n
|
288
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"street\" type=\"s:string\"
|
289
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"postCode\"
|
290
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
291
|
-
name=\"city\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
292
|
-
maxOccurs=\"1\" name=\"country\" type=\"s:string\" />\r\n <s:element
|
293
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"mandateLanguage\" type=\"s:string\"
|
294
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\"
|
295
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
296
|
-
name=\"wlPass\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
297
|
-
maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n <s:element
|
298
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n
|
299
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\"
|
300
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\"
|
301
|
-
type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
302
|
-
\ </s:element>\r\n <s:element name=\"RegisterSddMandateResponse\">\r\n
|
303
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
304
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"RegisterSddMandateResult\" type=\"s:string\"
|
305
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
306
|
-
\ <s:element name=\"RegisterCard\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
307
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
308
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\"
|
309
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
310
|
-
name=\"cardNumber\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
311
|
-
maxOccurs=\"1\" name=\"cardCode\" type=\"s:string\" />\r\n <s:element
|
312
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n
|
313
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"specialConfig\"
|
314
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
315
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
316
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
317
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
318
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
319
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
320
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
321
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
322
|
-
\ </s:element>\r\n <s:element name=\"RegisterCardResponse\">\r\n
|
323
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
324
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"RegisterCardResult\" type=\"s:string\"
|
325
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
326
|
-
\ <s:element name=\"UnregisterCard\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
327
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
328
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardId\"
|
329
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
330
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
331
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
332
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
333
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
334
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
335
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
336
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
337
|
-
\ </s:element>\r\n <s:element name=\"UnregisterCardResponse\">\r\n
|
338
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
339
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"UnregisterCardResult\" type=\"s:string\"
|
340
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
341
|
-
\ <s:element name=\"UnregisterSddMandate\">\r\n <s:complexType>\r\n
|
342
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
343
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
344
|
-
maxOccurs=\"1\" name=\"sddMandateId\" type=\"s:string\" />\r\n <s:element
|
345
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
346
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
347
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
348
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
349
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
350
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
351
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
352
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
353
|
-
\ <s:element name=\"UnregisterSddMandateResponse\">\r\n <s:complexType>\r\n
|
354
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
355
|
-
name=\"UnregisterSddMandateResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
356
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyIn\">\r\n
|
357
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
358
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n
|
359
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
360
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
361
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
362
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
363
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
364
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\" type=\"s:string\" />\r\n
|
365
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardNumber\"
|
366
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
367
|
-
name=\"cardCrypto\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
368
|
-
maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n <s:element
|
369
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
370
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"isPreAuth\"
|
371
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
372
|
-
name=\"specialConfig\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
373
|
-
maxOccurs=\"1\" name=\"delayedDays\" type=\"s:string\" />\r\n <s:element
|
374
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
375
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
376
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
377
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
378
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
379
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
380
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
381
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
382
|
-
\ <s:element name=\"MoneyInResponse\">\r\n <s:complexType>\r\n
|
383
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
384
|
-
name=\"MoneyInResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
385
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInValidate\">\r\n
|
386
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
387
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionId\" type=\"s:string\" />\r\n
|
388
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
389
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
390
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
391
|
-
maxOccurs=\"1\" name=\"specialConfig\" type=\"s:string\" />\r\n <s:element
|
392
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
393
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
394
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
395
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
396
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
397
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
398
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
399
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
400
|
-
\ <s:element name=\"MoneyInValidateResponse\">\r\n <s:complexType>\r\n
|
401
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
402
|
-
name=\"MoneyInValidateResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
403
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"CancelScheduledP2P\">\r\n
|
404
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
405
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionId\" type=\"s:string\" />\r\n
|
406
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
407
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
408
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
409
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
410
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
411
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
412
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
413
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
414
|
-
\ <s:element name=\"CancelScheduledP2PResponse\">\r\n <s:complexType>\r\n
|
415
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
416
|
-
name=\"CancelScheduledP2PResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
417
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyIn3DInit\">\r\n
|
418
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
419
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n
|
420
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
421
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
422
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
423
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
424
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
425
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\" type=\"s:string\" />\r\n
|
426
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardNumber\"
|
427
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
428
|
-
name=\"cardCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
429
|
-
maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n <s:element
|
430
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
431
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"returnUrl\"
|
432
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
433
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
434
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
435
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
436
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
437
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
438
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
439
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
440
|
-
\ </s:element>\r\n <s:element name=\"MoneyIn3DInitResponse\">\r\n
|
441
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
442
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyIn3DInitResult\" type=\"s:string\"
|
443
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
444
|
-
\ <s:element name=\"MoneyIn3DConfirm\">\r\n <s:complexType>\r\n
|
445
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
446
|
-
name=\"transactionId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
447
|
-
maxOccurs=\"1\" name=\"MD\" type=\"s:string\" />\r\n <s:element
|
448
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"PaRes\" type=\"s:string\" />\r\n <s:element
|
449
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\" type=\"s:string\" />\r\n
|
450
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardNumber\"
|
451
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
452
|
-
name=\"cardCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
453
|
-
maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n <s:element
|
454
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"isPreAuth\" type=\"s:string\" />\r\n
|
455
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"specialConfig\"
|
456
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
457
|
-
name=\"delayedDays\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
458
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
459
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
460
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
461
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
462
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
463
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
464
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
465
|
-
\ </s:element>\r\n <s:element name=\"MoneyIn3DConfirmResponse\">\r\n
|
466
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
467
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyIn3DConfirmResult\" type=\"s:string\"
|
468
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
469
|
-
\ <s:element name=\"MoneyIn3DAuthenticate\">\r\n <s:complexType>\r\n
|
470
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
471
|
-
name=\"transactionId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
472
|
-
maxOccurs=\"1\" name=\"MD\" type=\"s:string\" />\r\n <s:element
|
473
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"PaRes\" type=\"s:string\" />\r\n <s:element
|
474
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\" type=\"s:string\" />\r\n
|
475
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardNumber\"
|
476
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
477
|
-
name=\"cardCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
478
|
-
maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n <s:element
|
479
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"specialConfig\" type=\"s:string\" />\r\n
|
480
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
481
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
482
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
483
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
484
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
485
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
486
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
487
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
488
|
-
\ <s:element name=\"MoneyIn3DAuthenticateResponse\">\r\n <s:complexType>\r\n
|
489
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
490
|
-
name=\"MoneyIn3DAuthenticateResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
491
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInWebInit\">\r\n
|
492
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
493
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n
|
494
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
495
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
496
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
497
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
498
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
499
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"useRegisteredCard\" type=\"s:string\"
|
500
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"returnUrl\"
|
501
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
502
|
-
name=\"cancelUrl\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
503
|
-
maxOccurs=\"1\" name=\"errorUrl\" type=\"s:string\" />\r\n <s:element
|
504
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
505
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"registerCard\"
|
506
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
507
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
508
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
509
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
510
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
511
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
512
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
513
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
514
|
-
\ </s:element>\r\n <s:element name=\"MoneyInWebInitResponse\">\r\n
|
515
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
516
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInWebInitResult\" type=\"s:string\"
|
517
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
518
|
-
\ <s:element name=\"SignDocumentInit\">\r\n <s:complexType>\r\n
|
519
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
520
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
521
|
-
maxOccurs=\"1\" name=\"mobileNumber\" type=\"s:string\" />\r\n <s:element
|
522
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"documentId\" type=\"s:string\" />\r\n
|
523
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"documentType\"
|
524
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
525
|
-
name=\"returnUrl\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
526
|
-
maxOccurs=\"1\" name=\"errorUrl\" type=\"s:string\" />\r\n <s:element
|
527
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
528
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
529
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
530
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
531
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
532
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
533
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
534
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
535
|
-
\ <s:element name=\"SignDocumentInitResponse\">\r\n <s:complexType>\r\n
|
536
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
537
|
-
name=\"SignDocumentInitResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
538
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInWithCardId\">\r\n
|
539
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
540
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
541
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n
|
542
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\"
|
543
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
544
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
545
|
-
maxOccurs=\"1\" name=\"cardId\" type=\"s:string\" />\r\n <s:element
|
546
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
547
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"isPreAuth\"
|
548
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
549
|
-
name=\"specialConfig\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
550
|
-
maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n <s:element
|
551
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"delayedDays\" type=\"s:string\" />\r\n
|
552
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
553
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
554
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
555
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
556
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
557
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
558
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
559
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
560
|
-
\ <s:element name=\"MoneyInWithCardIdResponse\">\r\n <s:complexType>\r\n
|
561
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
562
|
-
name=\"MoneyInWithCardIdResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
563
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"SendPayment\">\r\n
|
564
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
565
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"debitWallet\" type=\"s:string\" />\r\n
|
566
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"creditWallet\"
|
567
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
568
|
-
name=\"amount\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
569
|
-
maxOccurs=\"1\" name=\"message\" type=\"s:string\" />\r\n <s:element
|
570
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"scheduledDate\" type=\"s:string\" />\r\n
|
571
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"privateData\"
|
572
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
573
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
574
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
575
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
576
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
577
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
578
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
579
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
580
|
-
\ </s:element>\r\n <s:element name=\"SendPaymentResponse\">\r\n <s:complexType>\r\n
|
581
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
582
|
-
name=\"SendPaymentResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
583
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetPaymentDetails\">\r\n
|
584
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
585
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionId\" type=\"s:string\" />\r\n
|
586
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionComment\"
|
587
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
588
|
-
name=\"privateData\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
589
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
590
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
591
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
592
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
593
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
594
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
595
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
596
|
-
\ </s:element>\r\n <s:element name=\"GetPaymentDetailsResponse\">\r\n
|
597
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
598
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"GetPaymentDetailsResult\" type=\"s:string\"
|
599
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
600
|
-
\ <s:element name=\"GetMoneyInTransDetails\">\r\n <s:complexType>\r\n
|
601
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
602
|
-
name=\"transactionId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
603
|
-
maxOccurs=\"1\" name=\"transactionComment\" type=\"s:string\" />\r\n <s:element
|
604
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionMerchantToken\" type=\"s:string\"
|
605
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"startDate\"
|
606
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
607
|
-
name=\"endDate\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
608
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
609
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
610
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
611
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
612
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
613
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
614
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
615
|
-
\ </s:element>\r\n <s:element name=\"GetMoneyInTransDetailsResponse\">\r\n
|
616
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
617
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"GetMoneyInTransDetailsResult\" type=\"s:string\"
|
618
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
619
|
-
\ <s:element name=\"GetWalletTransHistory\">\r\n <s:complexType>\r\n
|
620
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
621
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
622
|
-
maxOccurs=\"1\" name=\"startDate\" type=\"s:string\" />\r\n <s:element
|
623
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"endDate\" type=\"s:string\" />\r\n
|
624
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
625
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
626
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
627
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
628
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
629
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
630
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
631
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
632
|
-
\ <s:element name=\"GetWalletTransHistoryResponse\">\r\n <s:complexType>\r\n
|
633
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
634
|
-
name=\"GetWalletTransHistoryResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
635
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetMoneyOutTransDetails\">\r\n
|
636
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
637
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionId\" type=\"s:string\" />\r\n
|
638
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionComment\"
|
639
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
640
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
641
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
642
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
643
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
644
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
645
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
646
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
647
|
-
\ </s:element>\r\n <s:element name=\"GetMoneyOutTransDetailsResponse\">\r\n
|
648
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
649
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"GetMoneyOutTransDetailsResult\" type=\"s:string\"
|
650
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
651
|
-
\ <s:element name=\"MoneyOut\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
652
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
653
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ibanId\"
|
654
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
655
|
-
name=\"amountTot\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
656
|
-
maxOccurs=\"1\" name=\"amountCom\" type=\"s:string\" />\r\n <s:element
|
657
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"message\" type=\"s:string\" />\r\n
|
658
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\"
|
659
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
660
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
661
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
662
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
663
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
664
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
665
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
666
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
667
|
-
\ </s:element>\r\n <s:element name=\"MoneyOutResponse\">\r\n <s:complexType>\r\n
|
668
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
669
|
-
name=\"MoneyOutResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
670
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"RefundMoneyIn\">\r\n
|
671
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
672
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"transactionId\" type=\"s:string\" />\r\n
|
673
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountToRefund\"
|
674
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
675
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
676
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
677
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
678
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
679
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
680
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
681
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
682
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
683
|
-
\ </s:element>\r\n <s:element name=\"RefundMoneyInResponse\">\r\n
|
684
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
685
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"RefundMoneyInResult\" type=\"s:string\"
|
686
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
687
|
-
\ <s:element name=\"GetWalletDetails\">\r\n <s:complexType>\r\n
|
688
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
689
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
690
|
-
maxOccurs=\"1\" name=\"email\" type=\"s:string\" />\r\n <s:element
|
691
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
692
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
693
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
694
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
695
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
696
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
697
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
698
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
699
|
-
\ <s:element name=\"GetWalletDetailsResponse\">\r\n <s:complexType>\r\n
|
700
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
701
|
-
name=\"GetWalletDetailsResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
702
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"FastPay\">\r\n
|
703
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
704
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"clientMail\" type=\"s:string\" />\r\n
|
705
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"clientTitle\"
|
706
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
707
|
-
name=\"clientFirstName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
708
|
-
maxOccurs=\"1\" name=\"clientLastName\" type=\"s:string\" />\r\n <s:element
|
709
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"cardType\" type=\"s:string\" />\r\n
|
710
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cardNumber\"
|
711
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
712
|
-
name=\"cardCrypto\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
713
|
-
maxOccurs=\"1\" name=\"cardDate\" type=\"s:string\" />\r\n <s:element
|
714
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"creditWallet\" type=\"s:string\" />\r\n
|
715
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amount\" type=\"s:string\"
|
716
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"message\"
|
717
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
718
|
-
name=\"autoCommission\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
719
|
-
maxOccurs=\"1\" name=\"registerCard\" type=\"s:string\" />\r\n <s:element
|
720
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
721
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
722
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
723
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
724
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
725
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
726
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
727
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
728
|
-
\ <s:element name=\"FastPayResponse\">\r\n <s:complexType>\r\n
|
729
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
730
|
-
name=\"FastPayResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
731
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"UploadFile\">\r\n
|
732
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
733
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
734
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"fileName\" type=\"s:string\" />\r\n
|
735
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"type\" type=\"s:string\"
|
736
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"buffer\"
|
737
|
-
type=\"s:base64Binary\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
738
|
-
name=\"sddMandateId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
739
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
740
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
741
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
742
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
743
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
744
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
745
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
746
|
-
\ </s:element>\r\n <s:element name=\"UploadFileResponse\">\r\n <s:complexType>\r\n
|
747
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
748
|
-
name=\"UploadFileResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
749
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetKycStatus\">\r\n
|
750
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
751
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
752
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
753
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
754
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
755
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
756
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
757
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
758
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
759
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
760
|
-
\ <s:element name=\"GetKycStatusResponse\">\r\n <s:complexType>\r\n
|
761
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
762
|
-
name=\"GetKycStatusResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
763
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetMoneyInIBANDetails\">\r\n
|
764
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
765
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
766
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
767
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
768
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
769
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
770
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
771
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
772
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
773
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
774
|
-
\ <s:element name=\"GetMoneyInIBANDetailsResponse\">\r\n <s:complexType>\r\n
|
775
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
776
|
-
name=\"GetMoneyInIBANDetailsResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
777
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetChargebacks\">\r\n
|
778
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
779
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
780
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
781
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
782
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
783
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
784
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
785
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
786
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
787
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
788
|
-
\ <s:element name=\"GetChargebacksResponse\">\r\n <s:complexType>\r\n
|
789
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
790
|
-
name=\"GetChargebacksResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
791
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetMoneyInChequeDetails\">\r\n
|
792
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
793
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
794
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
795
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
796
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
797
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
798
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
799
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
800
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
801
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
802
|
-
\ <s:element name=\"GetMoneyInChequeDetailsResponse\">\r\n <s:complexType>\r\n
|
803
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
804
|
-
name=\"GetMoneyInChequeDetailsResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
805
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetMoneyInSdd\">\r\n
|
806
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
807
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
808
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
809
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
810
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
811
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
812
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
813
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
814
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
815
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
816
|
-
\ <s:element name=\"GetMoneyInSddResponse\">\r\n <s:complexType>\r\n
|
817
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
818
|
-
name=\"GetMoneyInSddResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
819
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetBalances\">\r\n
|
820
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
821
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"updateDate\" type=\"s:string\" />\r\n
|
822
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
823
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
824
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
825
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
826
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
827
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
828
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
829
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
830
|
-
\ <s:element name=\"GetBalancesResponse\">\r\n <s:complexType>\r\n
|
831
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
832
|
-
name=\"GetBalancesResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
833
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"CreateGiftCodeAmazon\">\r\n
|
834
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
835
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"debitWallet\" type=\"s:string\" />\r\n
|
836
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountAGCOD\"
|
837
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
838
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
839
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
840
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
841
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
842
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
843
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
844
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
845
|
-
\ </s:element>\r\n <s:element name=\"CreateGiftCodeAmazonResponse\">\r\n
|
846
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
847
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"CreateGiftCodeAmazonResult\" type=\"s:string\"
|
848
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
849
|
-
\ <s:element name=\"CreateVCC\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
850
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"debitWallet\"
|
851
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
852
|
-
name=\"amountVCC\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
853
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
854
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
855
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
856
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
857
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
858
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
859
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
860
|
-
\ </s:element>\r\n <s:element name=\"CreateVCCResponse\">\r\n <s:complexType>\r\n
|
861
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
862
|
-
name=\"CreateVCCResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
863
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInIDealInit\">\r\n
|
864
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
865
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
866
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n
|
867
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\"
|
868
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
869
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
870
|
-
maxOccurs=\"1\" name=\"returnUrl\" type=\"s:string\" />\r\n <s:element
|
871
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
872
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"issuerId\"
|
873
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
874
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
875
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
876
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
877
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
878
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
879
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
880
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
881
|
-
\ </s:element>\r\n <s:element name=\"MoneyInIDealInitResponse\">\r\n
|
882
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
883
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInIDealInitResult\" type=\"s:string\"
|
884
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
885
|
-
\ <s:element name=\"MoneyInIDealConfirm\">\r\n <s:complexType>\r\n
|
886
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
887
|
-
name=\"transactionId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
888
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
889
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
890
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
891
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
892
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
893
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
894
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
895
|
-
\ </s:element>\r\n <s:element name=\"MoneyInIDealConfirmResponse\">\r\n
|
896
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
897
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInIDealConfirmResult\" type=\"s:string\"
|
898
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
899
|
-
\ <s:element name=\"MoneyInSddInit\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
900
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
901
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
902
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
903
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
904
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
905
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
906
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"sddMandateId\"
|
907
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
908
|
-
name=\"collectionDate\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
909
|
-
maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n <s:element
|
910
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
911
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
912
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
913
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
914
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
915
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
916
|
-
\ </s:element>\r\n <s:element name=\"MoneyInSddInitResponse\">\r\n
|
917
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
918
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInSddInitResult\" type=\"s:string\"
|
919
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
920
|
-
\ <s:element name=\"MoneyInChequeInit\">\r\n <s:complexType>\r\n
|
921
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
922
|
-
name=\"wallet\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
923
|
-
maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n <s:element
|
924
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\" type=\"s:string\" />\r\n
|
925
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"comment\" type=\"s:string\"
|
926
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\"
|
927
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
928
|
-
name=\"transferId\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
929
|
-
maxOccurs=\"1\" name=\"partner\" type=\"s:string\" />\r\n <s:element
|
930
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\" />\r\n
|
931
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\"
|
932
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language\"
|
933
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
934
|
-
name=\"version\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
935
|
-
maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n <s:element
|
936
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\" />\r\n
|
937
|
-
\ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
938
|
-
\ <s:element name=\"MoneyInChequeInitResponse\">\r\n <s:complexType>\r\n
|
939
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
940
|
-
name=\"MoneyInChequeInitResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
941
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInNeosurf\">\r\n
|
942
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
943
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n
|
944
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
945
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
946
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
947
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
948
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
949
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"idTicket\" type=\"s:string\" />\r\n
|
950
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"isNeocode\"
|
951
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
952
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
953
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
954
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
955
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
956
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
957
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
958
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
959
|
-
\ </s:element>\r\n <s:element name=\"MoneyInNeosurfResponse\">\r\n
|
960
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
961
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInNeosurfResult\" type=\"s:string\"
|
962
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
963
|
-
\ <s:element name=\"GetWizypayAds\">\r\n <s:complexType>\r\n <s:sequence>\r\n
|
964
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\" type=\"s:string\"
|
965
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlPass\"
|
966
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
967
|
-
name=\"language\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
968
|
-
maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n <s:element
|
969
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\" />\r\n
|
970
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\" type=\"s:string\"
|
971
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
972
|
-
\ <s:element name=\"GetWizypayAdsResponse\">\r\n <s:complexType>\r\n
|
973
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
974
|
-
name=\"GetWizypayAdsResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
|
975
|
-
\ </s:complexType>\r\n </s:element>\r\n <s:element name=\"MoneyInSofortInit\">\r\n
|
976
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
977
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"wkToken\" type=\"s:string\" />\r\n
|
978
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wallet\" type=\"s:string\"
|
979
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\"
|
980
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
981
|
-
name=\"amountCom\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
982
|
-
maxOccurs=\"1\" name=\"comment\" type=\"s:string\" />\r\n <s:element
|
983
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"returnUrl\" type=\"s:string\" />\r\n
|
984
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\"
|
985
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
986
|
-
name=\"wlLogin\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
987
|
-
maxOccurs=\"1\" name=\"wlPass\" type=\"s:string\" />\r\n <s:element
|
988
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n
|
989
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\"
|
990
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\"
|
991
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
992
|
-
name=\"walletUa\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
993
|
-
\ </s:element>\r\n <s:element name=\"MoneyInSofortInitResponse\">\r\n
|
994
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
995
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInSofortInitResult\" type=\"s:string\"
|
996
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
997
|
-
\ <s:element name=\"MoneyInMultibancoInit\">\r\n <s:complexType>\r\n
|
998
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
999
|
-
name=\"wkToken\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1000
|
-
maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
1001
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n
|
1002
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\"
|
1003
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1004
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1005
|
-
maxOccurs=\"1\" name=\"returnUrl\" type=\"s:string\" />\r\n <s:element
|
1006
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
1007
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\"
|
1008
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1009
|
-
name=\"wlPass\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1010
|
-
maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n <s:element
|
1011
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n
|
1012
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\"
|
1013
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\"
|
1014
|
-
type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
1015
|
-
\ </s:element>\r\n <s:element name=\"MoneyInMultibancoInitResponse\">\r\n
|
1016
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
1017
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInMultibancoInitResult\" type=\"s:string\"
|
1018
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
1019
|
-
\ <s:element name=\"MoneyInPayshopInit\">\r\n <s:complexType>\r\n
|
1020
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1021
|
-
name=\"wkToken\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1022
|
-
maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
1023
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n
|
1024
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\"
|
1025
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1026
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1027
|
-
maxOccurs=\"1\" name=\"returnUrl\" type=\"s:string\" />\r\n <s:element
|
1028
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
1029
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\"
|
1030
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1031
|
-
name=\"wlPass\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1032
|
-
maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n <s:element
|
1033
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n
|
1034
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\"
|
1035
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\"
|
1036
|
-
type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
1037
|
-
\ </s:element>\r\n <s:element name=\"MoneyInPayshopInitResponse\">\r\n
|
1038
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
1039
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInPayshopInitResult\" type=\"s:string\"
|
1040
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
1041
|
-
\ <s:element name=\"MoneyInMbwayInit\">\r\n <s:complexType>\r\n
|
1042
|
-
\ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1043
|
-
name=\"wkToken\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1044
|
-
maxOccurs=\"1\" name=\"wallet\" type=\"s:string\" />\r\n <s:element
|
1045
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"amountTot\" type=\"s:string\" />\r\n
|
1046
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"amountCom\"
|
1047
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1048
|
-
name=\"comment\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1049
|
-
maxOccurs=\"1\" name=\"returnUrl\" type=\"s:string\" />\r\n <s:element
|
1050
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"autoCommission\" type=\"s:string\"
|
1051
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"wlLogin\"
|
1052
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1053
|
-
name=\"wlPass\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
|
1054
|
-
maxOccurs=\"1\" name=\"language\" type=\"s:string\" />\r\n <s:element
|
1055
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"version\" type=\"s:string\" />\r\n
|
1056
|
-
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletIp\" type=\"s:string\"
|
1057
|
-
/>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"walletUa\"
|
1058
|
-
type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
1059
|
-
name=\"phone\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
|
1060
|
-
\ </s:element>\r\n <s:element name=\"MoneyInMbwayInitResponse\">\r\n
|
1061
|
-
\ <s:complexType>\r\n <s:sequence>\r\n <s:element
|
1062
|
-
minOccurs=\"0\" maxOccurs=\"1\" name=\"MoneyInMbwayInitResult\" type=\"s:string\"
|
1063
|
-
/>\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
|
1064
|
-
\ </s:schema>\r\n </wsdl:types>\r\n <wsdl:message name=\"RegisterWalletSoapIn\">\r\n
|
1065
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:RegisterWallet\" />\r\n </wsdl:message>\r\n
|
1066
|
-
\ <wsdl:message name=\"RegisterWalletSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1067
|
-
element=\"tns:RegisterWalletResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1068
|
-
name=\"UpdateWalletDetailsSoapIn\">\r\n <wsdl:part name=\"parameters\"
|
1069
|
-
element=\"tns:UpdateWalletDetails\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1070
|
-
name=\"UpdateWalletDetailsSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1071
|
-
element=\"tns:UpdateWalletDetailsResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1072
|
-
name=\"UpdateWalletStatusSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:UpdateWalletStatus\"
|
1073
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"UpdateWalletStatusSoapOut\">\r\n
|
1074
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:UpdateWalletStatusResponse\"
|
1075
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"RegisterIBANSoapIn\">\r\n
|
1076
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:RegisterIBAN\" />\r\n </wsdl:message>\r\n
|
1077
|
-
\ <wsdl:message name=\"RegisterIBANSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1078
|
-
element=\"tns:RegisterIBANResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1079
|
-
name=\"RegisterIBANExtendedSoapIn\">\r\n <wsdl:part name=\"parameters\"
|
1080
|
-
element=\"tns:RegisterIBANExtended\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1081
|
-
name=\"RegisterIBANExtendedSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1082
|
-
element=\"tns:RegisterIBANExtendedResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1083
|
-
name=\"RegisterSddMandateSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:RegisterSddMandate\"
|
1084
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"RegisterSddMandateSoapOut\">\r\n
|
1085
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:RegisterSddMandateResponse\"
|
1086
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"RegisterCardSoapIn\">\r\n
|
1087
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:RegisterCard\" />\r\n </wsdl:message>\r\n
|
1088
|
-
\ <wsdl:message name=\"RegisterCardSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1089
|
-
element=\"tns:RegisterCardResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1090
|
-
name=\"UnregisterCardSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:UnregisterCard\"
|
1091
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"UnregisterCardSoapOut\">\r\n
|
1092
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:UnregisterCardResponse\"
|
1093
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"UnregisterSddMandateSoapIn\">\r\n
|
1094
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:UnregisterSddMandate\" />\r\n
|
1095
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"UnregisterSddMandateSoapOut\">\r\n
|
1096
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:UnregisterSddMandateResponse\"
|
1097
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInSoapIn\">\r\n <wsdl:part
|
1098
|
-
name=\"parameters\" element=\"tns:MoneyIn\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1099
|
-
name=\"MoneyInSoapOut\">\r\n <wsdl:part name=\"parameters\" element=\"tns:MoneyInResponse\"
|
1100
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInValidateSoapIn\">\r\n
|
1101
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInValidate\" />\r\n
|
1102
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInValidateSoapOut\">\r\n
|
1103
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInValidateResponse\"
|
1104
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"CancelScheduledP2PSoapIn\">\r\n
|
1105
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:CancelScheduledP2P\" />\r\n
|
1106
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"CancelScheduledP2PSoapOut\">\r\n
|
1107
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:CancelScheduledP2PResponse\"
|
1108
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyIn3DInitSoapIn\">\r\n
|
1109
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyIn3DInit\" />\r\n </wsdl:message>\r\n
|
1110
|
-
\ <wsdl:message name=\"MoneyIn3DInitSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1111
|
-
element=\"tns:MoneyIn3DInitResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1112
|
-
name=\"MoneyIn3DConfirmSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:MoneyIn3DConfirm\"
|
1113
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyIn3DConfirmSoapOut\">\r\n
|
1114
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyIn3DConfirmResponse\"
|
1115
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyIn3DAuthenticateSoapIn\">\r\n
|
1116
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyIn3DAuthenticate\" />\r\n
|
1117
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyIn3DAuthenticateSoapOut\">\r\n
|
1118
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyIn3DAuthenticateResponse\"
|
1119
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInWebInitSoapIn\">\r\n
|
1120
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInWebInit\" />\r\n </wsdl:message>\r\n
|
1121
|
-
\ <wsdl:message name=\"MoneyInWebInitSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1122
|
-
element=\"tns:MoneyInWebInitResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1123
|
-
name=\"SignDocumentInitSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:SignDocumentInit\"
|
1124
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"SignDocumentInitSoapOut\">\r\n
|
1125
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:SignDocumentInitResponse\"
|
1126
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInWithCardIdSoapIn\">\r\n
|
1127
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInWithCardId\" />\r\n
|
1128
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInWithCardIdSoapOut\">\r\n
|
1129
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInWithCardIdResponse\"
|
1130
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"SendPaymentSoapIn\">\r\n
|
1131
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:SendPayment\" />\r\n </wsdl:message>\r\n
|
1132
|
-
\ <wsdl:message name=\"SendPaymentSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1133
|
-
element=\"tns:SendPaymentResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1134
|
-
name=\"GetPaymentDetailsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:GetPaymentDetails\"
|
1135
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetPaymentDetailsSoapOut\">\r\n
|
1136
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetPaymentDetailsResponse\"
|
1137
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetMoneyInTransDetailsSoapIn\">\r\n
|
1138
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyInTransDetails\"
|
1139
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetMoneyInTransDetailsSoapOut\">\r\n
|
1140
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyInTransDetailsResponse\"
|
1141
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetWalletTransHistorySoapIn\">\r\n
|
1142
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetWalletTransHistory\" />\r\n
|
1143
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"GetWalletTransHistorySoapOut\">\r\n
|
1144
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetWalletTransHistoryResponse\"
|
1145
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetMoneyOutTransDetailsSoapIn\">\r\n
|
1146
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyOutTransDetails\"
|
1147
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetMoneyOutTransDetailsSoapOut\">\r\n
|
1148
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyOutTransDetailsResponse\"
|
1149
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyOutSoapIn\">\r\n <wsdl:part
|
1150
|
-
name=\"parameters\" element=\"tns:MoneyOut\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1151
|
-
name=\"MoneyOutSoapOut\">\r\n <wsdl:part name=\"parameters\" element=\"tns:MoneyOutResponse\"
|
1152
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"RefundMoneyInSoapIn\">\r\n
|
1153
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:RefundMoneyIn\" />\r\n </wsdl:message>\r\n
|
1154
|
-
\ <wsdl:message name=\"RefundMoneyInSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1155
|
-
element=\"tns:RefundMoneyInResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1156
|
-
name=\"GetWalletDetailsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:GetWalletDetails\"
|
1157
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetWalletDetailsSoapOut\">\r\n
|
1158
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetWalletDetailsResponse\"
|
1159
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"FastPaySoapIn\">\r\n <wsdl:part
|
1160
|
-
name=\"parameters\" element=\"tns:FastPay\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1161
|
-
name=\"FastPaySoapOut\">\r\n <wsdl:part name=\"parameters\" element=\"tns:FastPayResponse\"
|
1162
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"UploadFileSoapIn\">\r\n
|
1163
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:UploadFile\" />\r\n </wsdl:message>\r\n
|
1164
|
-
\ <wsdl:message name=\"UploadFileSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1165
|
-
element=\"tns:UploadFileResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1166
|
-
name=\"GetKycStatusSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:GetKycStatus\"
|
1167
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetKycStatusSoapOut\">\r\n
|
1168
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetKycStatusResponse\" />\r\n
|
1169
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"GetMoneyInIBANDetailsSoapIn\">\r\n
|
1170
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyInIBANDetails\" />\r\n
|
1171
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"GetMoneyInIBANDetailsSoapOut\">\r\n
|
1172
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyInIBANDetailsResponse\"
|
1173
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetChargebacksSoapIn\">\r\n
|
1174
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetChargebacks\" />\r\n </wsdl:message>\r\n
|
1175
|
-
\ <wsdl:message name=\"GetChargebacksSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1176
|
-
element=\"tns:GetChargebacksResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1177
|
-
name=\"GetMoneyInChequeDetailsSoapIn\">\r\n <wsdl:part name=\"parameters\"
|
1178
|
-
element=\"tns:GetMoneyInChequeDetails\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1179
|
-
name=\"GetMoneyInChequeDetailsSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1180
|
-
element=\"tns:GetMoneyInChequeDetailsResponse\" />\r\n </wsdl:message>\r\n
|
1181
|
-
\ <wsdl:message name=\"GetMoneyInSddSoapIn\">\r\n <wsdl:part name=\"parameters\"
|
1182
|
-
element=\"tns:GetMoneyInSdd\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetMoneyInSddSoapOut\">\r\n
|
1183
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetMoneyInSddResponse\" />\r\n
|
1184
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"GetBalancesSoapIn\">\r\n <wsdl:part
|
1185
|
-
name=\"parameters\" element=\"tns:GetBalances\" />\r\n </wsdl:message>\r\n
|
1186
|
-
\ <wsdl:message name=\"GetBalancesSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1187
|
-
element=\"tns:GetBalancesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1188
|
-
name=\"CreateGiftCodeAmazonSoapIn\">\r\n <wsdl:part name=\"parameters\"
|
1189
|
-
element=\"tns:CreateGiftCodeAmazon\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1190
|
-
name=\"CreateGiftCodeAmazonSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1191
|
-
element=\"tns:CreateGiftCodeAmazonResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1192
|
-
name=\"CreateVCCSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:CreateVCC\"
|
1193
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"CreateVCCSoapOut\">\r\n
|
1194
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:CreateVCCResponse\" />\r\n
|
1195
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInIDealInitSoapIn\">\r\n
|
1196
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInIDealInit\" />\r\n
|
1197
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInIDealInitSoapOut\">\r\n
|
1198
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInIDealInitResponse\"
|
1199
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInIDealConfirmSoapIn\">\r\n
|
1200
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInIDealConfirm\" />\r\n
|
1201
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInIDealConfirmSoapOut\">\r\n
|
1202
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInIDealConfirmResponse\"
|
1203
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInSddInitSoapIn\">\r\n
|
1204
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInSddInit\" />\r\n </wsdl:message>\r\n
|
1205
|
-
\ <wsdl:message name=\"MoneyInSddInitSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1206
|
-
element=\"tns:MoneyInSddInitResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1207
|
-
name=\"MoneyInChequeInitSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:MoneyInChequeInit\"
|
1208
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInChequeInitSoapOut\">\r\n
|
1209
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInChequeInitResponse\"
|
1210
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInNeosurfSoapIn\">\r\n
|
1211
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInNeosurf\" />\r\n </wsdl:message>\r\n
|
1212
|
-
\ <wsdl:message name=\"MoneyInNeosurfSoapOut\">\r\n <wsdl:part name=\"parameters\"
|
1213
|
-
element=\"tns:MoneyInNeosurfResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
|
1214
|
-
name=\"GetWizypayAdsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:GetWizypayAds\"
|
1215
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"GetWizypayAdsSoapOut\">\r\n
|
1216
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:GetWizypayAdsResponse\" />\r\n
|
1217
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInSofortInitSoapIn\">\r\n
|
1218
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInSofortInit\" />\r\n
|
1219
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInSofortInitSoapOut\">\r\n
|
1220
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInSofortInitResponse\"
|
1221
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInMultibancoInitSoapIn\">\r\n
|
1222
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInMultibancoInit\" />\r\n
|
1223
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInMultibancoInitSoapOut\">\r\n
|
1224
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInMultibancoInitResponse\"
|
1225
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInPayshopInitSoapIn\">\r\n
|
1226
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInPayshopInit\" />\r\n
|
1227
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInPayshopInitSoapOut\">\r\n
|
1228
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInPayshopInitResponse\"
|
1229
|
-
/>\r\n </wsdl:message>\r\n <wsdl:message name=\"MoneyInMbwayInitSoapIn\">\r\n
|
1230
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInMbwayInit\" />\r\n
|
1231
|
-
\ </wsdl:message>\r\n <wsdl:message name=\"MoneyInMbwayInitSoapOut\">\r\n
|
1232
|
-
\ <wsdl:part name=\"parameters\" element=\"tns:MoneyInMbwayInitResponse\"
|
1233
|
-
/>\r\n </wsdl:message>\r\n <wsdl:portType name=\"Service_mbSoap\">\r\n <wsdl:operation
|
1234
|
-
name=\"RegisterWallet\">\r\n <wsdl:input message=\"tns:RegisterWalletSoapIn\"
|
1235
|
-
/>\r\n <wsdl:output message=\"tns:RegisterWalletSoapOut\" />\r\n </wsdl:operation>\r\n
|
1236
|
-
\ <wsdl:operation name=\"UpdateWalletDetails\">\r\n <wsdl:input message=\"tns:UpdateWalletDetailsSoapIn\"
|
1237
|
-
/>\r\n <wsdl:output message=\"tns:UpdateWalletDetailsSoapOut\" />\r\n
|
1238
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"UpdateWalletStatus\">\r\n
|
1239
|
-
\ <wsdl:input message=\"tns:UpdateWalletStatusSoapIn\" />\r\n <wsdl:output
|
1240
|
-
message=\"tns:UpdateWalletStatusSoapOut\" />\r\n </wsdl:operation>\r\n
|
1241
|
-
\ <wsdl:operation name=\"RegisterIBAN\">\r\n <wsdl:input message=\"tns:RegisterIBANSoapIn\"
|
1242
|
-
/>\r\n <wsdl:output message=\"tns:RegisterIBANSoapOut\" />\r\n </wsdl:operation>\r\n
|
1243
|
-
\ <wsdl:operation name=\"RegisterIBANExtended\">\r\n <wsdl:input message=\"tns:RegisterIBANExtendedSoapIn\"
|
1244
|
-
/>\r\n <wsdl:output message=\"tns:RegisterIBANExtendedSoapOut\" />\r\n
|
1245
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"RegisterSddMandate\">\r\n
|
1246
|
-
\ <wsdl:input message=\"tns:RegisterSddMandateSoapIn\" />\r\n <wsdl:output
|
1247
|
-
message=\"tns:RegisterSddMandateSoapOut\" />\r\n </wsdl:operation>\r\n
|
1248
|
-
\ <wsdl:operation name=\"RegisterCard\">\r\n <wsdl:input message=\"tns:RegisterCardSoapIn\"
|
1249
|
-
/>\r\n <wsdl:output message=\"tns:RegisterCardSoapOut\" />\r\n </wsdl:operation>\r\n
|
1250
|
-
\ <wsdl:operation name=\"UnregisterCard\">\r\n <wsdl:input message=\"tns:UnregisterCardSoapIn\"
|
1251
|
-
/>\r\n <wsdl:output message=\"tns:UnregisterCardSoapOut\" />\r\n </wsdl:operation>\r\n
|
1252
|
-
\ <wsdl:operation name=\"UnregisterSddMandate\">\r\n <wsdl:input message=\"tns:UnregisterSddMandateSoapIn\"
|
1253
|
-
/>\r\n <wsdl:output message=\"tns:UnregisterSddMandateSoapOut\" />\r\n
|
1254
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"MoneyIn\">\r\n <wsdl:input
|
1255
|
-
message=\"tns:MoneyInSoapIn\" />\r\n <wsdl:output message=\"tns:MoneyInSoapOut\"
|
1256
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"MoneyInValidate\">\r\n
|
1257
|
-
\ <wsdl:input message=\"tns:MoneyInValidateSoapIn\" />\r\n <wsdl:output
|
1258
|
-
message=\"tns:MoneyInValidateSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1259
|
-
name=\"CancelScheduledP2P\">\r\n <wsdl:input message=\"tns:CancelScheduledP2PSoapIn\"
|
1260
|
-
/>\r\n <wsdl:output message=\"tns:CancelScheduledP2PSoapOut\" />\r\n
|
1261
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"MoneyIn3DInit\">\r\n <wsdl:input
|
1262
|
-
message=\"tns:MoneyIn3DInitSoapIn\" />\r\n <wsdl:output message=\"tns:MoneyIn3DInitSoapOut\"
|
1263
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"MoneyIn3DConfirm\">\r\n
|
1264
|
-
\ <wsdl:input message=\"tns:MoneyIn3DConfirmSoapIn\" />\r\n <wsdl:output
|
1265
|
-
message=\"tns:MoneyIn3DConfirmSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1266
|
-
name=\"MoneyIn3DAuthenticate\">\r\n <wsdl:input message=\"tns:MoneyIn3DAuthenticateSoapIn\"
|
1267
|
-
/>\r\n <wsdl:output message=\"tns:MoneyIn3DAuthenticateSoapOut\" />\r\n
|
1268
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"MoneyInWebInit\">\r\n
|
1269
|
-
\ <wsdl:input message=\"tns:MoneyInWebInitSoapIn\" />\r\n <wsdl:output
|
1270
|
-
message=\"tns:MoneyInWebInitSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1271
|
-
name=\"SignDocumentInit\">\r\n <wsdl:input message=\"tns:SignDocumentInitSoapIn\"
|
1272
|
-
/>\r\n <wsdl:output message=\"tns:SignDocumentInitSoapOut\" />\r\n </wsdl:operation>\r\n
|
1273
|
-
\ <wsdl:operation name=\"MoneyInWithCardId\">\r\n <wsdl:input message=\"tns:MoneyInWithCardIdSoapIn\"
|
1274
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInWithCardIdSoapOut\" />\r\n </wsdl:operation>\r\n
|
1275
|
-
\ <wsdl:operation name=\"SendPayment\">\r\n <wsdl:input message=\"tns:SendPaymentSoapIn\"
|
1276
|
-
/>\r\n <wsdl:output message=\"tns:SendPaymentSoapOut\" />\r\n </wsdl:operation>\r\n
|
1277
|
-
\ <wsdl:operation name=\"GetPaymentDetails\">\r\n <wsdl:input message=\"tns:GetPaymentDetailsSoapIn\"
|
1278
|
-
/>\r\n <wsdl:output message=\"tns:GetPaymentDetailsSoapOut\" />\r\n </wsdl:operation>\r\n
|
1279
|
-
\ <wsdl:operation name=\"GetMoneyInTransDetails\">\r\n <wsdl:input
|
1280
|
-
message=\"tns:GetMoneyInTransDetailsSoapIn\" />\r\n <wsdl:output message=\"tns:GetMoneyInTransDetailsSoapOut\"
|
1281
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"GetWalletTransHistory\">\r\n
|
1282
|
-
\ <wsdl:input message=\"tns:GetWalletTransHistorySoapIn\" />\r\n <wsdl:output
|
1283
|
-
message=\"tns:GetWalletTransHistorySoapOut\" />\r\n </wsdl:operation>\r\n
|
1284
|
-
\ <wsdl:operation name=\"GetMoneyOutTransDetails\">\r\n <wsdl:input
|
1285
|
-
message=\"tns:GetMoneyOutTransDetailsSoapIn\" />\r\n <wsdl:output message=\"tns:GetMoneyOutTransDetailsSoapOut\"
|
1286
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"MoneyOut\">\r\n
|
1287
|
-
\ <wsdl:input message=\"tns:MoneyOutSoapIn\" />\r\n <wsdl:output
|
1288
|
-
message=\"tns:MoneyOutSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1289
|
-
name=\"RefundMoneyIn\">\r\n <wsdl:input message=\"tns:RefundMoneyInSoapIn\"
|
1290
|
-
/>\r\n <wsdl:output message=\"tns:RefundMoneyInSoapOut\" />\r\n </wsdl:operation>\r\n
|
1291
|
-
\ <wsdl:operation name=\"GetWalletDetails\">\r\n <wsdl:input message=\"tns:GetWalletDetailsSoapIn\"
|
1292
|
-
/>\r\n <wsdl:output message=\"tns:GetWalletDetailsSoapOut\" />\r\n </wsdl:operation>\r\n
|
1293
|
-
\ <wsdl:operation name=\"FastPay\">\r\n <wsdl:input message=\"tns:FastPaySoapIn\"
|
1294
|
-
/>\r\n <wsdl:output message=\"tns:FastPaySoapOut\" />\r\n </wsdl:operation>\r\n
|
1295
|
-
\ <wsdl:operation name=\"UploadFile\">\r\n <wsdl:input message=\"tns:UploadFileSoapIn\"
|
1296
|
-
/>\r\n <wsdl:output message=\"tns:UploadFileSoapOut\" />\r\n </wsdl:operation>\r\n
|
1297
|
-
\ <wsdl:operation name=\"GetKycStatus\">\r\n <wsdl:input message=\"tns:GetKycStatusSoapIn\"
|
1298
|
-
/>\r\n <wsdl:output message=\"tns:GetKycStatusSoapOut\" />\r\n </wsdl:operation>\r\n
|
1299
|
-
\ <wsdl:operation name=\"GetMoneyInIBANDetails\">\r\n <wsdl:input message=\"tns:GetMoneyInIBANDetailsSoapIn\"
|
1300
|
-
/>\r\n <wsdl:output message=\"tns:GetMoneyInIBANDetailsSoapOut\" />\r\n
|
1301
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"GetChargebacks\">\r\n
|
1302
|
-
\ <wsdl:input message=\"tns:GetChargebacksSoapIn\" />\r\n <wsdl:output
|
1303
|
-
message=\"tns:GetChargebacksSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1304
|
-
name=\"GetMoneyInChequeDetails\">\r\n <wsdl:input message=\"tns:GetMoneyInChequeDetailsSoapIn\"
|
1305
|
-
/>\r\n <wsdl:output message=\"tns:GetMoneyInChequeDetailsSoapOut\" />\r\n
|
1306
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"GetMoneyInSdd\">\r\n <wsdl:input
|
1307
|
-
message=\"tns:GetMoneyInSddSoapIn\" />\r\n <wsdl:output message=\"tns:GetMoneyInSddSoapOut\"
|
1308
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"GetBalances\">\r\n
|
1309
|
-
\ <wsdl:input message=\"tns:GetBalancesSoapIn\" />\r\n <wsdl:output
|
1310
|
-
message=\"tns:GetBalancesSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1311
|
-
name=\"CreateGiftCodeAmazon\">\r\n <wsdl:input message=\"tns:CreateGiftCodeAmazonSoapIn\"
|
1312
|
-
/>\r\n <wsdl:output message=\"tns:CreateGiftCodeAmazonSoapOut\" />\r\n
|
1313
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"CreateVCC\">\r\n <wsdl:input
|
1314
|
-
message=\"tns:CreateVCCSoapIn\" />\r\n <wsdl:output message=\"tns:CreateVCCSoapOut\"
|
1315
|
-
/>\r\n </wsdl:operation>\r\n <wsdl:operation name=\"MoneyInIDealInit\">\r\n
|
1316
|
-
\ <wsdl:input message=\"tns:MoneyInIDealInitSoapIn\" />\r\n <wsdl:output
|
1317
|
-
message=\"tns:MoneyInIDealInitSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1318
|
-
name=\"MoneyInIDealConfirm\">\r\n <wsdl:input message=\"tns:MoneyInIDealConfirmSoapIn\"
|
1319
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInIDealConfirmSoapOut\" />\r\n
|
1320
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"MoneyInSddInit\">\r\n
|
1321
|
-
\ <wsdl:input message=\"tns:MoneyInSddInitSoapIn\" />\r\n <wsdl:output
|
1322
|
-
message=\"tns:MoneyInSddInitSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
|
1323
|
-
name=\"MoneyInChequeInit\">\r\n <wsdl:input message=\"tns:MoneyInChequeInitSoapIn\"
|
1324
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInChequeInitSoapOut\" />\r\n </wsdl:operation>\r\n
|
1325
|
-
\ <wsdl:operation name=\"MoneyInNeosurf\">\r\n <wsdl:input message=\"tns:MoneyInNeosurfSoapIn\"
|
1326
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInNeosurfSoapOut\" />\r\n </wsdl:operation>\r\n
|
1327
|
-
\ <wsdl:operation name=\"GetWizypayAds\">\r\n <wsdl:input message=\"tns:GetWizypayAdsSoapIn\"
|
1328
|
-
/>\r\n <wsdl:output message=\"tns:GetWizypayAdsSoapOut\" />\r\n </wsdl:operation>\r\n
|
1329
|
-
\ <wsdl:operation name=\"MoneyInSofortInit\">\r\n <wsdl:input message=\"tns:MoneyInSofortInitSoapIn\"
|
1330
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInSofortInitSoapOut\" />\r\n </wsdl:operation>\r\n
|
1331
|
-
\ <wsdl:operation name=\"MoneyInMultibancoInit\">\r\n <wsdl:input message=\"tns:MoneyInMultibancoInitSoapIn\"
|
1332
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInMultibancoInitSoapOut\" />\r\n
|
1333
|
-
\ </wsdl:operation>\r\n <wsdl:operation name=\"MoneyInPayshopInit\">\r\n
|
1334
|
-
\ <wsdl:input message=\"tns:MoneyInPayshopInitSoapIn\" />\r\n <wsdl:output
|
1335
|
-
message=\"tns:MoneyInPayshopInitSoapOut\" />\r\n </wsdl:operation>\r\n
|
1336
|
-
\ <wsdl:operation name=\"MoneyInMbwayInit\">\r\n <wsdl:input message=\"tns:MoneyInMbwayInitSoapIn\"
|
1337
|
-
/>\r\n <wsdl:output message=\"tns:MoneyInMbwayInitSoapOut\" />\r\n </wsdl:operation>\r\n
|
1338
|
-
\ </wsdl:portType>\r\n <wsdl:binding name=\"Service_mbSoap\" type=\"tns:Service_mbSoap\">\r\n
|
1339
|
-
\ <soap:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
|
1340
|
-
\ <wsdl:operation name=\"RegisterWallet\">\r\n <soap:operation soapAction=\"Service_mb/RegisterWallet\"
|
1341
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1342
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1343
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1344
|
-
name=\"UpdateWalletDetails\">\r\n <soap:operation soapAction=\"Service_mb/UpdateWalletDetails\"
|
1345
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1346
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1347
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1348
|
-
name=\"UpdateWalletStatus\">\r\n <soap:operation soapAction=\"Service_mb/UpdateWalletStatus\"
|
1349
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1350
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1351
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1352
|
-
name=\"RegisterIBAN\">\r\n <soap:operation soapAction=\"Service_mb/RegisterIBAN\"
|
1353
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1354
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1355
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1356
|
-
name=\"RegisterIBANExtended\">\r\n <soap:operation soapAction=\"Service_mb/RegisterIBANExtended\"
|
1357
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1358
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1359
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1360
|
-
name=\"RegisterSddMandate\">\r\n <soap:operation soapAction=\"Service_mb/RegisterSddMandate\"
|
1361
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1362
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1363
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1364
|
-
name=\"RegisterCard\">\r\n <soap:operation soapAction=\"Service_mb/RegisterCard\"
|
1365
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1366
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1367
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1368
|
-
name=\"UnregisterCard\">\r\n <soap:operation soapAction=\"Service_mb/UnregisterCard\"
|
1369
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1370
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1371
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1372
|
-
name=\"UnregisterSddMandate\">\r\n <soap:operation soapAction=\"Service_mb/UnregisterSddMandate\"
|
1373
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1374
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1375
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1376
|
-
name=\"MoneyIn\">\r\n <soap:operation soapAction=\"Service_mb/MoneyIn\"
|
1377
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1378
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1379
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1380
|
-
name=\"MoneyInValidate\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInValidate\"
|
1381
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1382
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1383
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1384
|
-
name=\"CancelScheduledP2P\">\r\n <soap:operation soapAction=\"Service_mb/CancelScheduledP2P\"
|
1385
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1386
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1387
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1388
|
-
name=\"MoneyIn3DInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyIn3DInit\"
|
1389
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1390
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1391
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1392
|
-
name=\"MoneyIn3DConfirm\">\r\n <soap:operation soapAction=\"Service_mb/MoneyIn3DConfirm\"
|
1393
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1394
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1395
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1396
|
-
name=\"MoneyIn3DAuthenticate\">\r\n <soap:operation soapAction=\"Service_mb/MoneyIn3DAuthenticate\"
|
1397
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1398
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1399
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1400
|
-
name=\"MoneyInWebInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInWebInit\"
|
1401
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1402
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1403
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1404
|
-
name=\"SignDocumentInit\">\r\n <soap:operation soapAction=\"Service_mb/SignDocumentInit\"
|
1405
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1406
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1407
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1408
|
-
name=\"MoneyInWithCardId\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInWithCardId\"
|
1409
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1410
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1411
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1412
|
-
name=\"SendPayment\">\r\n <soap:operation soapAction=\"Service_mb/SendPayment\"
|
1413
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1414
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1415
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1416
|
-
name=\"GetPaymentDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetPaymentDetails\"
|
1417
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1418
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1419
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1420
|
-
name=\"GetMoneyInTransDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetMoneyInTransDetails\"
|
1421
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1422
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1423
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1424
|
-
name=\"GetWalletTransHistory\">\r\n <soap:operation soapAction=\"Service_mb/GetWalletTransHistory\"
|
1425
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1426
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1427
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1428
|
-
name=\"GetMoneyOutTransDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetMoneyOutTransDetails\"
|
1429
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1430
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1431
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1432
|
-
name=\"MoneyOut\">\r\n <soap:operation soapAction=\"Service_mb/MoneyOut\"
|
1433
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1434
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1435
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1436
|
-
name=\"RefundMoneyIn\">\r\n <soap:operation soapAction=\"Service_mb/RefundMoneyIn\"
|
1437
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1438
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1439
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1440
|
-
name=\"GetWalletDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetWalletDetails\"
|
1441
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1442
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1443
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1444
|
-
name=\"FastPay\">\r\n <soap:operation soapAction=\"Service_mb/FastPay\"
|
1445
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1446
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1447
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1448
|
-
name=\"UploadFile\">\r\n <soap:operation soapAction=\"Service_mb/UploadFile\"
|
1449
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1450
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1451
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1452
|
-
name=\"GetKycStatus\">\r\n <soap:operation soapAction=\"Service_mb/GetKycStatus\"
|
1453
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1454
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1455
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1456
|
-
name=\"GetMoneyInIBANDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetMoneyInIBANDetails\"
|
1457
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1458
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1459
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1460
|
-
name=\"GetChargebacks\">\r\n <soap:operation soapAction=\"Service_mb/GetChargebacks\"
|
1461
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1462
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1463
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1464
|
-
name=\"GetMoneyInChequeDetails\">\r\n <soap:operation soapAction=\"Service_mb/GetMoneyInChequeDetails\"
|
1465
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1466
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1467
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1468
|
-
name=\"GetMoneyInSdd\">\r\n <soap:operation soapAction=\"Service_mb/GetMoneyInSdd\"
|
1469
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1470
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1471
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1472
|
-
name=\"GetBalances\">\r\n <soap:operation soapAction=\"Service_mb/GetBalances\"
|
1473
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1474
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1475
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1476
|
-
name=\"CreateGiftCodeAmazon\">\r\n <soap:operation soapAction=\"Service_mb/CreateGiftCodeAmazon\"
|
1477
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1478
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1479
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1480
|
-
name=\"CreateVCC\">\r\n <soap:operation soapAction=\"Service_mb/CreateVCC\"
|
1481
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1482
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1483
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1484
|
-
name=\"MoneyInIDealInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInIDealInit\"
|
1485
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1486
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1487
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1488
|
-
name=\"MoneyInIDealConfirm\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInIDealConfirm\"
|
1489
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1490
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1491
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1492
|
-
name=\"MoneyInSddInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInSddInit\"
|
1493
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1494
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1495
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1496
|
-
name=\"MoneyInChequeInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInChequeInit\"
|
1497
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1498
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1499
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1500
|
-
name=\"MoneyInNeosurf\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInNeosurf\"
|
1501
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1502
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1503
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1504
|
-
name=\"GetWizypayAds\">\r\n <soap:operation soapAction=\"Service_mb/GetWizypayAds\"
|
1505
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1506
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1507
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1508
|
-
name=\"MoneyInSofortInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInSofortInit\"
|
1509
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1510
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1511
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1512
|
-
name=\"MoneyInMultibancoInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInMultibancoInit\"
|
1513
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1514
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1515
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1516
|
-
name=\"MoneyInPayshopInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInPayshopInit\"
|
1517
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1518
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1519
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1520
|
-
name=\"MoneyInMbwayInit\">\r\n <soap:operation soapAction=\"Service_mb/MoneyInMbwayInit\"
|
1521
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
|
1522
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
|
1523
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
|
1524
|
-
\ <wsdl:binding name=\"Service_mbSoap12\" type=\"tns:Service_mbSoap\">\r\n
|
1525
|
-
\ <soap12:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
|
1526
|
-
\ <wsdl:operation name=\"RegisterWallet\">\r\n <soap12:operation soapAction=\"Service_mb/RegisterWallet\"
|
1527
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1528
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1529
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1530
|
-
name=\"UpdateWalletDetails\">\r\n <soap12:operation soapAction=\"Service_mb/UpdateWalletDetails\"
|
1531
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1532
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1533
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1534
|
-
name=\"UpdateWalletStatus\">\r\n <soap12:operation soapAction=\"Service_mb/UpdateWalletStatus\"
|
1535
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1536
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1537
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1538
|
-
name=\"RegisterIBAN\">\r\n <soap12:operation soapAction=\"Service_mb/RegisterIBAN\"
|
1539
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1540
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1541
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1542
|
-
name=\"RegisterIBANExtended\">\r\n <soap12:operation soapAction=\"Service_mb/RegisterIBANExtended\"
|
1543
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1544
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1545
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1546
|
-
name=\"RegisterSddMandate\">\r\n <soap12:operation soapAction=\"Service_mb/RegisterSddMandate\"
|
1547
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1548
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1549
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1550
|
-
name=\"RegisterCard\">\r\n <soap12:operation soapAction=\"Service_mb/RegisterCard\"
|
1551
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1552
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1553
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1554
|
-
name=\"UnregisterCard\">\r\n <soap12:operation soapAction=\"Service_mb/UnregisterCard\"
|
1555
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1556
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1557
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1558
|
-
name=\"UnregisterSddMandate\">\r\n <soap12:operation soapAction=\"Service_mb/UnregisterSddMandate\"
|
1559
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1560
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1561
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1562
|
-
name=\"MoneyIn\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyIn\"
|
1563
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1564
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1565
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1566
|
-
name=\"MoneyInValidate\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInValidate\"
|
1567
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1568
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1569
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1570
|
-
name=\"CancelScheduledP2P\">\r\n <soap12:operation soapAction=\"Service_mb/CancelScheduledP2P\"
|
1571
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1572
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1573
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1574
|
-
name=\"MoneyIn3DInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyIn3DInit\"
|
1575
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1576
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1577
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1578
|
-
name=\"MoneyIn3DConfirm\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyIn3DConfirm\"
|
1579
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1580
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1581
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1582
|
-
name=\"MoneyIn3DAuthenticate\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyIn3DAuthenticate\"
|
1583
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1584
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1585
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1586
|
-
name=\"MoneyInWebInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInWebInit\"
|
1587
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1588
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1589
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1590
|
-
name=\"SignDocumentInit\">\r\n <soap12:operation soapAction=\"Service_mb/SignDocumentInit\"
|
1591
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1592
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1593
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1594
|
-
name=\"MoneyInWithCardId\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInWithCardId\"
|
1595
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1596
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1597
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1598
|
-
name=\"SendPayment\">\r\n <soap12:operation soapAction=\"Service_mb/SendPayment\"
|
1599
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1600
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1601
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1602
|
-
name=\"GetPaymentDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetPaymentDetails\"
|
1603
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1604
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1605
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1606
|
-
name=\"GetMoneyInTransDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetMoneyInTransDetails\"
|
1607
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1608
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1609
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1610
|
-
name=\"GetWalletTransHistory\">\r\n <soap12:operation soapAction=\"Service_mb/GetWalletTransHistory\"
|
1611
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1612
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1613
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1614
|
-
name=\"GetMoneyOutTransDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetMoneyOutTransDetails\"
|
1615
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1616
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1617
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1618
|
-
name=\"MoneyOut\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyOut\"
|
1619
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1620
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1621
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1622
|
-
name=\"RefundMoneyIn\">\r\n <soap12:operation soapAction=\"Service_mb/RefundMoneyIn\"
|
1623
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1624
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1625
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1626
|
-
name=\"GetWalletDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetWalletDetails\"
|
1627
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1628
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1629
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1630
|
-
name=\"FastPay\">\r\n <soap12:operation soapAction=\"Service_mb/FastPay\"
|
1631
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1632
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1633
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1634
|
-
name=\"UploadFile\">\r\n <soap12:operation soapAction=\"Service_mb/UploadFile\"
|
1635
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1636
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1637
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1638
|
-
name=\"GetKycStatus\">\r\n <soap12:operation soapAction=\"Service_mb/GetKycStatus\"
|
1639
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1640
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1641
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1642
|
-
name=\"GetMoneyInIBANDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetMoneyInIBANDetails\"
|
1643
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1644
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1645
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1646
|
-
name=\"GetChargebacks\">\r\n <soap12:operation soapAction=\"Service_mb/GetChargebacks\"
|
1647
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1648
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1649
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1650
|
-
name=\"GetMoneyInChequeDetails\">\r\n <soap12:operation soapAction=\"Service_mb/GetMoneyInChequeDetails\"
|
1651
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1652
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1653
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1654
|
-
name=\"GetMoneyInSdd\">\r\n <soap12:operation soapAction=\"Service_mb/GetMoneyInSdd\"
|
1655
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1656
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1657
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1658
|
-
name=\"GetBalances\">\r\n <soap12:operation soapAction=\"Service_mb/GetBalances\"
|
1659
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1660
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1661
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1662
|
-
name=\"CreateGiftCodeAmazon\">\r\n <soap12:operation soapAction=\"Service_mb/CreateGiftCodeAmazon\"
|
1663
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1664
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1665
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1666
|
-
name=\"CreateVCC\">\r\n <soap12:operation soapAction=\"Service_mb/CreateVCC\"
|
1667
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1668
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1669
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1670
|
-
name=\"MoneyInIDealInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInIDealInit\"
|
1671
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1672
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1673
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1674
|
-
name=\"MoneyInIDealConfirm\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInIDealConfirm\"
|
1675
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1676
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1677
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1678
|
-
name=\"MoneyInSddInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInSddInit\"
|
1679
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1680
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1681
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1682
|
-
name=\"MoneyInChequeInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInChequeInit\"
|
1683
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1684
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1685
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1686
|
-
name=\"MoneyInNeosurf\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInNeosurf\"
|
1687
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1688
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1689
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1690
|
-
name=\"GetWizypayAds\">\r\n <soap12:operation soapAction=\"Service_mb/GetWizypayAds\"
|
1691
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1692
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1693
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1694
|
-
name=\"MoneyInSofortInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInSofortInit\"
|
1695
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1696
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1697
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1698
|
-
name=\"MoneyInMultibancoInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInMultibancoInit\"
|
1699
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1700
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1701
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1702
|
-
name=\"MoneyInPayshopInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInPayshopInit\"
|
1703
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1704
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1705
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
|
1706
|
-
name=\"MoneyInMbwayInit\">\r\n <soap12:operation soapAction=\"Service_mb/MoneyInMbwayInit\"
|
1707
|
-
style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
|
1708
|
-
/>\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
|
1709
|
-
/>\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
|
1710
|
-
\ <wsdl:service name=\"Service_mb\">\r\n <wsdl:port name=\"Service_mbSoap\"
|
1711
|
-
binding=\"tns:Service_mbSoap\">\r\n <soap:address location=\"https://ws.lemonway.fr/mb/kwaala/dev/directkit/service.asmx\"
|
1712
|
-
/>\r\n </wsdl:port>\r\n <wsdl:port name=\"Service_mbSoap12\" binding=\"tns:Service_mbSoap12\">\r\n
|
1713
|
-
\ <soap12:address location=\"https://ws.lemonway.fr/mb/kwaala/dev/directkit/service.asmx\"
|
1714
|
-
/>\r\n </wsdl:port>\r\n </wsdl:service>\r\n</wsdl:definitions>"
|
1715
|
-
http_version:
|
1716
|
-
recorded_at: Fri, 05 Feb 2016 14:16:07 GMT
|
1717
|
-
- request:
|
1718
|
-
method: post
|
1719
|
-
uri: https://ws.lemonway.fr/mb/kwaala/dev/directkit/service.asmx
|
1720
|
-
body:
|
1721
|
-
encoding: UTF-8
|
1722
|
-
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1723
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="Service_mb"
|
1724
|
-
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><tns:RegisterWallet><tns:wlLogin>society</tns:wlLogin><tns:wlPass>rondoudou</tns:wlPass><tns:walletIp>87.231.205.18</tns:walletIp><tns:language>fr</tns:language><tns:version>1.1</tns:version><tns:wallet>1234</tns:wallet><tns:clientMail>nico1234@las.com</tns:clientMail><tns:clientFirstName>nicolas</tns:clientFirstName><tns:clientLastName>nicolas</tns:clientLastName></tns:RegisterWallet></env:Body></env:Envelope>
|
1725
|
-
headers:
|
1726
|
-
Soapaction:
|
1727
|
-
- '"Service_mb/RegisterWallet"'
|
1728
|
-
Content-Type:
|
1729
|
-
- text/xml;charset=UTF-8
|
1730
|
-
Content-Length:
|
1731
|
-
- '652'
|
1732
|
-
Accept-Encoding:
|
1733
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1734
|
-
Accept:
|
1735
|
-
- "*/*"
|
1736
|
-
User-Agent:
|
1737
|
-
- Ruby
|
1738
|
-
response:
|
1739
|
-
status:
|
1740
|
-
code: 200
|
1741
|
-
message: OK
|
1742
|
-
headers:
|
1743
|
-
Cache-Control:
|
1744
|
-
- private, max-age=0
|
1745
|
-
Content-Type:
|
1746
|
-
- text/xml; charset=utf-8
|
1747
|
-
Server:
|
1748
|
-
- Microsoft-IIS/7.5
|
1749
|
-
X-Aspnet-Version:
|
1750
|
-
- 4.0.30319
|
1751
|
-
X-Powered-By:
|
1752
|
-
- ASP.NET
|
1753
|
-
Date:
|
1754
|
-
- Fri, 05 Feb 2016 14:16:06 GMT
|
1755
|
-
Content-Length:
|
1756
|
-
- '441'
|
1757
|
-
body:
|
1758
|
-
encoding: UTF-8
|
1759
|
-
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
1760
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><RegisterWalletResponse
|
1761
|
-
xmlns="Service_mb"><RegisterWalletResult><WALLET><ID>1234</ID><LWID>834</LWID></WALLET></RegisterWalletResult></RegisterWalletResponse></soap:Body></soap:Envelope>
|
1762
|
-
http_version:
|
1763
|
-
recorded_at: Fri, 05 Feb 2016 14:16:07 GMT
|
1764
|
-
- request:
|
1765
|
-
method: get
|
1766
|
-
uri: https://ws.lemonway.fr/mb/kwaala/dev/directkitxml/service.asmx
|
1767
|
-
body:
|
1768
|
-
encoding: US-ASCII
|
1769
|
-
string: ''
|
1770
|
-
headers:
|
1771
|
-
Accept-Encoding:
|
1772
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1773
|
-
Accept:
|
1774
|
-
- "*/*"
|
1775
|
-
User-Agent:
|
1776
|
-
- Ruby
|
1777
|
-
response:
|
1778
|
-
status:
|
1779
|
-
code: 200
|
1780
|
-
message: OK
|
1781
|
-
headers:
|
1782
|
-
Cache-Control:
|
1783
|
-
- private, max-age=0
|
1784
|
-
Content-Type:
|
1785
|
-
- text/html; charset=utf-8
|
1786
|
-
Server:
|
1787
|
-
- Microsoft-IIS/7.5
|
1788
|
-
X-Aspnet-Version:
|
1789
|
-
- 4.0.30319
|
1790
|
-
X-Powered-By:
|
1791
|
-
- ASP.NET
|
1792
|
-
Date:
|
1793
|
-
- Fri, 05 Feb 2016 17:55:10 GMT
|
1794
|
-
Content-Length:
|
1795
|
-
- '11278'
|
1796
|
-
body:
|
1797
|
-
encoding: UTF-8
|
1798
|
-
string: "\r\n\r\n<html>\r\n\r\n <head><link rel=\"alternate\" type=\"text/xml\"
|
1799
|
-
href=\"/mb/kwaala/dev/directkitxml/service.asmx?disco\" />\r\n\r\n <style
|
1800
|
-
type=\"text/css\">\r\n \r\n\t\tBODY { color: #000000; background-color:
|
1801
|
-
white; font-family: Verdana; margin-left: 0px; margin-top: 0px; }\r\n\t\t#content
|
1802
|
-
{ margin-left: 30px; font-size: .70em; padding-bottom: 2em; }\r\n\t\tA:link
|
1803
|
-
{ color: #336699; font-weight: bold; text-decoration: underline; }\r\n\t\tA:visited
|
1804
|
-
{ color: #6699cc; font-weight: bold; text-decoration: underline; }\r\n\t\tA:active
|
1805
|
-
{ color: #336699; font-weight: bold; text-decoration: underline; }\r\n\t\tA:hover
|
1806
|
-
{ color: cc3300; font-weight: bold; text-decoration: underline; }\r\n\t\tP
|
1807
|
-
{ color: #000000; margin-top: 0px; margin-bottom: 12px; font-family: Verdana;
|
1808
|
-
}\r\n\t\tpre { background-color: #e5e5cc; padding: 5px; font-family: Courier
|
1809
|
-
New; font-size: x-small; margin-top: -5px; border: 1px #f0f0e0 solid; }\r\n\t\ttd
|
1810
|
-
{ color: #000000; font-family: Verdana; font-size: .7em; }\r\n\t\th2 { font-size:
|
1811
|
-
1.5em; font-weight: bold; margin-top: 25px; margin-bottom: 10px; border-top:
|
1812
|
-
1px solid #003366; margin-left: -15px; color: #003366; }\r\n\t\th3 { font-size:
|
1813
|
-
1.1em; color: #000000; margin-left: -15px; margin-top: 10px; margin-bottom:
|
1814
|
-
10px; }\r\n\t\tul { margin-top: 10px; margin-left: 20px; }\r\n\t\tol { margin-top:
|
1815
|
-
10px; margin-left: 20px; }\r\n\t\tli { margin-top: 10px; color: #000000; }\r\n\t\tfont.value
|
1816
|
-
{ color: darkblue; font: bold; }\r\n\t\tfont.key { color: darkgreen; font:
|
1817
|
-
bold; }\r\n\t\tfont.error { color: darkred; font: bold; }\r\n\t\t.heading1
|
1818
|
-
{ color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal;
|
1819
|
-
background-color: #003366; margin-top: 0px; margin-bottom: 0px; margin-left:
|
1820
|
-
-30px; padding-top: 10px; padding-bottom: 3px; padding-left: 15px; width:
|
1821
|
-
105%; }\r\n\t\t.button { background-color: #dcdcdc; font-family: Verdana;
|
1822
|
-
font-size: 1em; border-top: #cccccc 1px solid; border-bottom: #666666 1px
|
1823
|
-
solid; border-left: #cccccc 1px solid; border-right: #666666 1px solid; }\r\n\t\t.frmheader
|
1824
|
-
{ color: #000000; background: #dcdcdc; font-family: Verdana; font-size: .7em;
|
1825
|
-
font-weight: normal; border-bottom: 1px solid #dcdcdc; padding-top: 2px; padding-bottom:
|
1826
|
-
2px; }\r\n\t\t.frmtext { font-family: Verdana; font-size: .7em; margin-top:
|
1827
|
-
8px; margin-bottom: 0px; margin-left: 32px; }\r\n\t\t.frmInput { font-family:
|
1828
|
-
Verdana; font-size: 1em; }\r\n\t\t.intro { margin-left: -15px; }\r\n \r\n
|
1829
|
-
\ </style>\r\n\r\n <title>\r\n\tService_mb_xml Web Service\r\n</title></head>\r\n\r\n
|
1830
|
-
\ <body>\r\n\r\n <div id=\"content\">\r\n\r\n <p class=\"heading1\">Service_mb_xml</p><br>\r\n\r\n
|
1831
|
-
\ \r\n\r\n <span>\r\n\r\n <p class=\"intro\">The following
|
1832
|
-
operations are supported. For a formal definition, please review the <a href=\"service.asmx?WSDL\">Service
|
1833
|
-
Description</a>. </p>\r\n \r\n \r\n <ul>\r\n
|
1834
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=CreateVCC\">CreateVCC</a>\r\n
|
1835
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1836
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=FastPay\">FastPay</a>\r\n
|
1837
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1838
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetBalances\">GetBalances</a>\r\n
|
1839
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1840
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetChargebacks\">GetChargebacks</a>\r\n
|
1841
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1842
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetKycStatus\">GetKycStatus</a>\r\n
|
1843
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1844
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetMoneyInChequeDetails\">GetMoneyInChequeDetails</a>\r\n
|
1845
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1846
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetMoneyInIBANDetails\">GetMoneyInIBANDetails</a>\r\n
|
1847
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1848
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetMoneyInSdd\">GetMoneyInSdd</a>\r\n
|
1849
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1850
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetMoneyInTransDetails\">GetMoneyInTransDetails</a>\r\n
|
1851
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1852
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetMoneyOutTransDetails\">GetMoneyOutTransDetails</a>\r\n
|
1853
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1854
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetPaymentDetails\">GetPaymentDetails</a>\r\n
|
1855
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1856
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetWalletDetails\">GetWalletDetails</a>\r\n
|
1857
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1858
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetWalletTransHistory\">GetWalletTransHistory</a>\r\n
|
1859
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1860
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=GetWizypayAds\">GetWizypayAds</a>\r\n
|
1861
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1862
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyIn\">MoneyIn</a>\r\n
|
1863
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1864
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyIn3DAuthenticate\">MoneyIn3DAuthenticate</a>\r\n
|
1865
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1866
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyIn3DConfirm\">MoneyIn3DConfirm</a>\r\n
|
1867
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1868
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyIn3DInit\">MoneyIn3DInit</a>\r\n
|
1869
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1870
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInChequeInit\">MoneyInChequeInit</a>\r\n
|
1871
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1872
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInIDealConfirm\">MoneyInIDealConfirm</a>\r\n
|
1873
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1874
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInIDealInit\">MoneyInIDealInit</a>\r\n
|
1875
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1876
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInMbwayInit\">MoneyInMbwayInit</a>\r\n
|
1877
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1878
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInMultibancoInit\">MoneyInMultibancoInit</a>\r\n
|
1879
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1880
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInNeosurf\">MoneyInNeosurf</a>\r\n
|
1881
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1882
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInPayshopInit\">MoneyInPayshopInit</a>\r\n
|
1883
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1884
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInSddInit\">MoneyInSddInit</a>\r\n
|
1885
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1886
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInSofortInit\">MoneyInSofortInit</a>\r\n
|
1887
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1888
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInValidate\">MoneyInValidate</a>\r\n
|
1889
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1890
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInWebInit\">MoneyInWebInit</a>\r\n
|
1891
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1892
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyInWithCardId\">MoneyInWithCardId</a>\r\n
|
1893
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1894
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=MoneyOut\">MoneyOut</a>\r\n
|
1895
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1896
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RefundMoneyIn\">RefundMoneyIn</a>\r\n
|
1897
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1898
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RegisterCard\">RegisterCard</a>\r\n
|
1899
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1900
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RegisterIBAN\">RegisterIBAN</a>\r\n
|
1901
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1902
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RegisterIBANExtended\">RegisterIBANExtended</a>\r\n
|
1903
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1904
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RegisterSddMandate\">RegisterSddMandate</a>\r\n
|
1905
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1906
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=RegisterWallet\">RegisterWallet</a>\r\n
|
1907
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1908
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=SendPayment\">SendPayment</a>\r\n
|
1909
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1910
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=SignDocumentInit\">SignDocumentInit</a>\r\n
|
1911
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1912
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=UnregisterCard\">UnregisterCard</a>\r\n
|
1913
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1914
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=UnregisterSddMandate\">UnregisterSddMandate</a>\r\n
|
1915
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1916
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=UpdateWalletDetails\">UpdateWalletDetails</a>\r\n
|
1917
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1918
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=UpdateWalletStatus\">UpdateWalletStatus</a>\r\n
|
1919
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1920
|
-
\ \r\n <li>\r\n <a href=\"service.asmx?op=UploadFile\">UploadFile</a>\r\n
|
1921
|
-
\ \r\n \r\n </li>\r\n <p>\r\n
|
1922
|
-
\ \r\n </ul>\r\n \r\n </span>\r\n\r\n
|
1923
|
-
\ \r\n \r\n\r\n <span>\r\n \r\n </span>\r\n \r\n
|
1924
|
-
\ \r\n\r\n \r\n\r\n \r\n </body>\r\n</html>\r\n"
|
1925
|
-
http_version:
|
1926
|
-
recorded_at: Fri, 05 Feb 2016 17:55:11 GMT
|
1927
3
|
- request:
|
1928
4
|
method: get
|
1929
5
|
uri: https://ws.lemonway.fr/mb/kwaala/dev/directkitxml/service.asmx?wsdl
|
@@ -1953,7 +29,7 @@ http_interactions:
|
|
1953
29
|
X-Powered-By:
|
1954
30
|
- ASP.NET
|
1955
31
|
Date:
|
1956
|
-
- Fri, 05 Feb 2016
|
32
|
+
- Fri, 05 Feb 2016 19:40:03 GMT
|
1957
33
|
Content-Length:
|
1958
34
|
- '163456'
|
1959
35
|
body:
|
@@ -4090,7 +2166,7 @@ http_interactions:
|
|
4090
2166
|
\ <soap12:address location=\"https://ws.lemonway.fr/mb/kwaala/dev/directkitxml/service.asmx\"
|
4091
2167
|
/>\r\n </wsdl:port>\r\n </wsdl:service>\r\n</wsdl:definitions>"
|
4092
2168
|
http_version:
|
4093
|
-
recorded_at: Fri, 05 Feb 2016
|
2169
|
+
recorded_at: Fri, 05 Feb 2016 19:40:04 GMT
|
4094
2170
|
- request:
|
4095
2171
|
method: post
|
4096
2172
|
uri: https://ws.lemonway.fr/mb/kwaala/dev/directkitxml/service.asmx
|
@@ -4098,14 +2174,14 @@ http_interactions:
|
|
4098
2174
|
encoding: UTF-8
|
4099
2175
|
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
4100
2176
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="Service_mb_xml"
|
4101
|
-
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><tns:RegisterWallet><tns:wlLogin>society</tns:wlLogin><tns:wlPass>rondoudou</tns:wlPass><tns:walletIp>87.231.205.18</tns:walletIp><tns:language>fr</tns:language><tns:version>1.1</tns:version><tns:wallet>
|
2177
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><tns:RegisterWallet><tns:wlLogin>society</tns:wlLogin><tns:wlPass>rondoudou</tns:wlPass><tns:walletIp>87.231.205.18</tns:walletIp><tns:language>fr</tns:language><tns:version>1.1</tns:version><tns:wallet>1234567</tns:wallet><tns:clientMail>nico1234567@las.com</tns:clientMail><tns:clientFirstName>nicolas</tns:clientFirstName><tns:clientLastName>nicolas</tns:clientLastName></tns:RegisterWallet></env:Body></env:Envelope>
|
4102
2178
|
headers:
|
4103
2179
|
Soapaction:
|
4104
2180
|
- '"Service_mb_xml/RegisterWallet"'
|
4105
2181
|
Content-Type:
|
4106
2182
|
- text/xml;charset=UTF-8
|
4107
2183
|
Content-Length:
|
4108
|
-
- '
|
2184
|
+
- '662'
|
4109
2185
|
Accept-Encoding:
|
4110
2186
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
4111
2187
|
Accept:
|
@@ -4128,14 +2204,14 @@ http_interactions:
|
|
4128
2204
|
X-Powered-By:
|
4129
2205
|
- ASP.NET
|
4130
2206
|
Date:
|
4131
|
-
- Fri, 05 Feb 2016
|
2207
|
+
- Fri, 05 Feb 2016 19:40:03 GMT
|
4132
2208
|
Content-Length:
|
4133
|
-
- '
|
2209
|
+
- '412'
|
4134
2210
|
body:
|
4135
2211
|
encoding: UTF-8
|
4136
2212
|
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
4137
2213
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><RegisterWalletResponse
|
4138
|
-
xmlns="Service_mb_xml"><RegisterWalletResult><WALLET><ID>
|
2214
|
+
xmlns="Service_mb_xml"><RegisterWalletResult><WALLET><ID>1234567</ID><LWID>836</LWID></WALLET></RegisterWalletResult></RegisterWalletResponse></soap:Body></soap:Envelope>
|
4139
2215
|
http_version:
|
4140
|
-
recorded_at: Fri, 05 Feb 2016
|
2216
|
+
recorded_at: Fri, 05 Feb 2016 19:40:05 GMT
|
4141
2217
|
recorded_with: VCR 3.0.1
|