rails-gp-webpay 0.1.0
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 +7 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/app/controllers/gp_webpay/cards_controller.rb +11 -0
- data/app/controllers/gp_webpay/orders_controller.rb +11 -0
- data/app/controllers/gp_webpay_controller.rb +18 -0
- data/changelog.md +4 -0
- data/config/keys/cert.pem +8 -0
- data/config/keys/pkey.pem +13 -0
- data/config/routes.rb +4 -0
- data/config/wsdl/GPwebpayAdditionalInfoResponse_v1.xsd +194 -0
- data/config/wsdl/cws_v1.wsdl +2355 -0
- data/config/wsdl/swaref.xsd +59 -0
- data/lib/gp_webpay.rb +55 -0
- data/lib/gp_webpay/configuration.rb +65 -0
- data/lib/gp_webpay/engine.rb +7 -0
- data/lib/gp_webpay/error.rb +4 -0
- data/lib/gp_webpay/http/base_signed_request.rb +72 -0
- data/lib/gp_webpay/http/create_order.rb +24 -0
- data/lib/gp_webpay/http/external_url.rb +13 -0
- data/lib/gp_webpay/http/http_request.rb +63 -0
- data/lib/gp_webpay/http/http_response.rb +40 -0
- data/lib/gp_webpay/http/validate_result.rb +63 -0
- data/lib/gp_webpay/http/verify_card.rb +18 -0
- data/lib/gp_webpay/openssl_security.rb +16 -0
- data/lib/gp_webpay/response.rb +34 -0
- data/lib/gp_webpay/service.rb +15 -0
- data/lib/gp_webpay/version.rb +3 -0
- data/lib/gp_webpay/ws/base_signed_request.rb +69 -0
- data/lib/gp_webpay/ws/echo.rb +35 -0
- data/lib/gp_webpay/ws/services/get_master_payment_status.rb +32 -0
- data/lib/gp_webpay/ws/services/get_payment_status.rb +19 -0
- data/lib/gp_webpay/ws/services/get_token_status.rb +21 -0
- data/lib/gp_webpay/ws/services/process_cancel_capture.rb +20 -0
- data/lib/gp_webpay/ws/services/process_capture_reverse.rb +20 -0
- data/lib/gp_webpay/ws/services/process_card_on_file_payment.rb +40 -0
- data/lib/gp_webpay/ws/services/process_master_payment_revoke.rb +20 -0
- data/lib/gp_webpay/ws/services/process_recurring_payment.rb +20 -0
- data/lib/gp_webpay/ws/services/process_refund_payment.rb +20 -0
- data/lib/gp_webpay/ws/services/process_token_payment.rb +26 -0
- data/lib/gp_webpay/ws/services/process_token_revoke.rb +20 -0
- data/lib/gp_webpay/ws/services/process_usage_based_payment.rb +21 -0
- data/lib/gp_webpay/ws/validate_result.rb +48 -0
- data/lib/gp_webpay/ws/ws_request.rb +39 -0
- data/lib/gp_webpay/ws/ws_response.rb +54 -0
- metadata +135 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7594fc71523b5d85a28d0a09f2e9c026dfba4e4fe7c43514fdd58f67fa5f149f
|
4
|
+
data.tar.gz: e0dc36655ec80dacf065b1227b87f477059fdb9d515aa9d7c3ccc707e43b118a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b2ef81c8629b7c685317e3edf73f3f8a45386f4e891004118516ad91f82918b1be742e6c1188c38639cdaed7f673489f453cdd587b5a72eca452edd56a7af6ae
|
7
|
+
data.tar.gz: edb5588491e3263b9c464c00e20c87cdfb6d03ea0a7c1fe59a2ddaac15b6b95df924acc68ff035063a2584a206cfc303066169fd1f9d1d98a193d2123cfd4014
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
[](https://travis-ci.com/lubosch/gp_webpay)
|
2
|
+
[](https://codecov.io/gh/lubosch/gp_webpay)
|
3
|
+
|
4
|
+
# GpWebpay
|
5
|
+
|
6
|
+
Gem for integrating GP Webpay HTTP api and WS recurring payments with multiple merchants
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'gp_webpay'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle install
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install gp_webpay
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
TODO: Write usage instructions here
|
27
|
+
|
28
|
+
## Development
|
29
|
+
|
30
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
31
|
+
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
33
|
+
|
34
|
+
## Contributing
|
35
|
+
|
36
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/gp_webpay.
|
37
|
+
|
38
|
+
|
39
|
+
## License
|
40
|
+
|
41
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
class GpWebpayController < GpWebpay.config.parent_controller.constantize
|
2
|
+
skip_before_action :verify_authenticity_token if defined?(verify_authenticity_token)
|
3
|
+
prepend_before_action :set_external_order_number
|
4
|
+
prepend_before_action :validate_gpwebpay_response
|
5
|
+
prepend_before_action :set_gpwebpay_response
|
6
|
+
|
7
|
+
def set_gpwebpay_response
|
8
|
+
@gpwebpay_response = GpWebpay::Http::HttpResponse.from_hash(params, params[:merchant_number])
|
9
|
+
end
|
10
|
+
|
11
|
+
def validate_gpwebpay_response
|
12
|
+
head :forbidden unless @gpwebpay_response.valid?
|
13
|
+
end
|
14
|
+
|
15
|
+
def set_external_order_number
|
16
|
+
@external_order_number = @gpwebpay_response.params[:order_number]
|
17
|
+
end
|
18
|
+
end
|
data/changelog.md
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIBDTCBuAIJAMcza0CFealrMA0GCSqGSIb3DQEBBQUAMA0xCzAJBgNVBAYTAlNL
|
3
|
+
MCAXDTIxMDQxNjExNTIwMVoYDzIxMjEwMzIzMTE1MjAxWjANMQswCQYDVQQGEwJT
|
4
|
+
SzBcMA0GCSqGSIb3DQEBAQUAA0sAMEgCQQDAop2mxPL4D7+eICOUelcxe9TEpYeL
|
5
|
+
bi/gwNds2rTe3P0BM/e2z9uxreN2JfwFVmB0SF6dMOTIRPCOIvVTOilzAgMBAAEw
|
6
|
+
DQYJKoZIhvcNAQEFBQADQQBXy5sBXXy7zxVkWHebMX7U9VXzV00yFIGjl3gvHrAq
|
7
|
+
FTOzd6+XiwLqPiBeXTSkzTkDj9ed+h6ka73uh3i7zkay
|
8
|
+
-----END CERTIFICATE-----
|
@@ -0,0 +1,13 @@
|
|
1
|
+
-----BEGIN ENCRYPTED PRIVATE KEY-----
|
2
|
+
MIIBrzBJBgkqhkiG9w0BBQ0wPDAbBgkqhkiG9w0BBQwwDgQIFzu3x2lsP5UCAggA
|
3
|
+
MB0GCWCGSAFlAwQBKgQQcr3l9PxPLd/ZGWUMHVgBSgSCAWCsVa5fdj5fzU0zEB88
|
4
|
+
V+50zU9pf5WluY0ztNlPFHLduDb5XDVTyrwI+YrpPTeU7gqbrqw8lKaizqTmBqCA
|
5
|
+
/Czizr32cFXgcvsKoVxiQPS8uaiNeDSTlTOVXPOPCtN4cPzrVDrqvA3vHmJ+QqDZ
|
6
|
+
cuoutmAi1Ys3mFB3Xdy6qnZD1q6MW0f0YNxz0RxY9FU7qgffZCvMCBmaThmhdD9R
|
7
|
+
1EP0/Cx6O6bSSOoVPblzk+epTxQFvOcD3CR1iHxtz2SRTiuFbvfzPTQQ1IpQIx6a
|
8
|
+
L09CvvzTuXGfvLCR6dBu0tbMQyPjD+dbSbmwoKo1BdnDc44ihwYktcnODRvehcSU
|
9
|
+
lCECuIU51PD3IKkfixAjAUzaVO//uDCTU/fEzXzAOwMka529XxIz4WNVwZUrU1nS
|
10
|
+
GMIp7zGlAACYB39j4ZSwJm0om1sMr4poHcA2Er6kN5iQ3m+f6AjsIh+H4cFvr+R1
|
11
|
+
pVp9
|
12
|
+
-----END ENCRYPTED PRIVATE KEY-----
|
13
|
+
|
data/config/routes.rb
ADDED
@@ -0,0 +1,4 @@
|
|
1
|
+
GpWebpay::Engine.routes.draw do
|
2
|
+
resources GpWebpay.config.orders_controller.delete_suffix('Controller').underscore, only: %i[create index], as: :gp_webpay_orders
|
3
|
+
resources GpWebpay.config.cards_controller.delete_suffix('Controller').underscore, only: %i[create index], as: :gp_webpay_cards
|
4
|
+
end
|
@@ -0,0 +1,194 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://gpe.cz/gpwebpay/additionalInfo/response/v1" targetNamespace="http://gpe.cz/gpwebpay/additionalInfo/response/v1" elementFormDefault="qualified" version="1.0">
|
3
|
+
<xs:element name="additionalInfoResponse" type="additionalInfoResponse"/>
|
4
|
+
<xs:complexType name="additionalInfoResponse">
|
5
|
+
<xs:sequence>
|
6
|
+
<xs:element name="walletDetails" type="textValue" minOccurs="0"/>
|
7
|
+
<xs:element name="contact" minOccurs="0">
|
8
|
+
<xs:complexType>
|
9
|
+
<xs:sequence>
|
10
|
+
<xs:element name="firstName" type="textValue"/>
|
11
|
+
<xs:element name="lastName" type="textValue"/>
|
12
|
+
<xs:element name="country" type="textValue" minOccurs="0"/>
|
13
|
+
<xs:element name="phone" type="phoneValue" minOccurs="0"/>
|
14
|
+
<xs:element name="email" type="emailValue" minOccurs="0"/>
|
15
|
+
</xs:sequence>
|
16
|
+
</xs:complexType>
|
17
|
+
</xs:element>
|
18
|
+
<xs:element name="billingDetails" minOccurs="0">
|
19
|
+
<xs:complexType>
|
20
|
+
<xs:sequence>
|
21
|
+
<xs:element name="name" type="textValue" minOccurs="0"/>
|
22
|
+
<xs:element name="address1" type="textValue"/>
|
23
|
+
<xs:element name="address2" type="textValue" minOccurs="0"/>
|
24
|
+
<xs:element name="address3" type="textValue" minOccurs="0"/>
|
25
|
+
<xs:element name="city" type="textValue" minOccurs="0"/>
|
26
|
+
<xs:element name="postalCode" type="textValue" minOccurs="0"/>
|
27
|
+
<xs:element name="country" type="textValue" minOccurs="0"/>
|
28
|
+
<xs:element name="countrySubdivision" type="textValue" minOccurs="0"/>
|
29
|
+
<xs:element name="phone" type="phoneValue" minOccurs="0"/>
|
30
|
+
<xs:element name="email" type="emailValue" minOccurs="0"/>
|
31
|
+
</xs:sequence>
|
32
|
+
</xs:complexType>
|
33
|
+
</xs:element>
|
34
|
+
<xs:element name="shippingDetails" minOccurs="0">
|
35
|
+
<xs:complexType>
|
36
|
+
<xs:sequence>
|
37
|
+
<xs:element name="name" type="textValue" minOccurs="0"/>
|
38
|
+
<xs:element name="address1" type="textValue"/>
|
39
|
+
<xs:element name="address2" type="textValue" minOccurs="0"/>
|
40
|
+
<xs:element name="address3" type="textValue" minOccurs="0"/>
|
41
|
+
<xs:element name="city" type="textValue" minOccurs="0"/>
|
42
|
+
<xs:element name="postalCode" type="textValue" minOccurs="0"/>
|
43
|
+
<xs:element name="country" type="textValue" minOccurs="0"/>
|
44
|
+
<xs:element name="countrySubdivision" type="textValue" minOccurs="0"/>
|
45
|
+
<xs:element name="phone" type="phoneValue" minOccurs="0"/>
|
46
|
+
<xs:element name="email" type="emailValue" minOccurs="0"/>
|
47
|
+
</xs:sequence>
|
48
|
+
</xs:complexType>
|
49
|
+
</xs:element>
|
50
|
+
<xs:element name="cardsDetails" minOccurs="0">
|
51
|
+
<xs:complexType>
|
52
|
+
<xs:sequence>
|
53
|
+
<xs:element name="cardDetail" maxOccurs="unbounded">
|
54
|
+
<xs:complexType>
|
55
|
+
<xs:sequence>
|
56
|
+
<xs:element name="brandId" type="textValue" minOccurs="0"/>
|
57
|
+
<xs:element name="brandName" type="textValue"/>
|
58
|
+
<xs:element name="cardHolderName" type="textValue" minOccurs="0"/>
|
59
|
+
<xs:element name="expiryMonth" type="month" minOccurs="0"/>
|
60
|
+
<xs:element name="expiryYear" type="year" minOccurs="0"/>
|
61
|
+
<xs:element name="cardId" type="textValue" minOccurs="0"/>
|
62
|
+
<xs:element name="lastFour" type="textValue"/>
|
63
|
+
<xs:element name="cardAlias" type="textValue" minOccurs="0"/>
|
64
|
+
</xs:sequence>
|
65
|
+
</xs:complexType>
|
66
|
+
</xs:element>
|
67
|
+
</xs:sequence>
|
68
|
+
</xs:complexType>
|
69
|
+
</xs:element>
|
70
|
+
<xs:element name="loyaltyProgramDetails" minOccurs="0">
|
71
|
+
<xs:complexType>
|
72
|
+
<xs:sequence>
|
73
|
+
<xs:element name="programNumber" type="textValue" minOccurs="0"/>
|
74
|
+
<xs:element name="programId" type="textValue" minOccurs="0"/>
|
75
|
+
<xs:element name="programName" type="textValue"/>
|
76
|
+
<xs:element name="programExpiryMonth" type="month" minOccurs="0"/>
|
77
|
+
<xs:element name="programExpiryYear" type="year" minOccurs="0"/>
|
78
|
+
</xs:sequence>
|
79
|
+
</xs:complexType>
|
80
|
+
</xs:element>
|
81
|
+
<xs:element name="eetRegistrationData" minOccurs="0">
|
82
|
+
<xs:complexType>
|
83
|
+
<xs:sequence>
|
84
|
+
<!-- Tax identification number -->
|
85
|
+
<xs:element name="taxId" type="czTaxIdValue"/>
|
86
|
+
<!-- Business premises ID -->
|
87
|
+
<xs:element name="businessPremisesId" type="businessPremisesIdValue"/>
|
88
|
+
<!-- Cash register ID -->
|
89
|
+
<xs:element name="cashRegisterId" type="cashRegisterIdValue"/>
|
90
|
+
<!-- Serial number of receipt -->
|
91
|
+
<xs:element name="receiptNumber" type="receiptNumberValue"/>
|
92
|
+
<!-- Date and time of sale -->
|
93
|
+
<xs:element name="saleDateTime" type="textValue"/>
|
94
|
+
<!-- Total amount of sale -->
|
95
|
+
<xs:element name="totalSaleAmount" type="amountValue"/>
|
96
|
+
<!-- Sale regime -->
|
97
|
+
<xs:element name="regime" type="regimeValue"/>
|
98
|
+
<!-- Fiscal Identification Code (FIK) -->
|
99
|
+
<xs:element name="fiscalCode" type="fiscalCodeValue" minOccurs="0"/>
|
100
|
+
<!-- Taxpayer's Security Code (BKP) -->
|
101
|
+
<xs:element name="securityCode" type="securityCodeValue" minOccurs="0"/>
|
102
|
+
<!-- Taxpayer's Signature Code (PKP) -->
|
103
|
+
<xs:element name="signatureCode" type="signatureCodeValue" minOccurs="0"/>
|
104
|
+
</xs:sequence>
|
105
|
+
</xs:complexType>
|
106
|
+
</xs:element>
|
107
|
+
</xs:sequence>
|
108
|
+
<xs:attribute name="version" use="required">
|
109
|
+
<xs:simpleType>
|
110
|
+
<xs:restriction base="xs:string">
|
111
|
+
<xs:pattern value="\d+\.\d+"/>
|
112
|
+
</xs:restriction>
|
113
|
+
</xs:simpleType>
|
114
|
+
</xs:attribute>
|
115
|
+
</xs:complexType>
|
116
|
+
<xs:simpleType name="textValue">
|
117
|
+
<xs:restriction base="xs:string">
|
118
|
+
<xs:minLength value="1"/>
|
119
|
+
<xs:maxLength value="255"/>
|
120
|
+
</xs:restriction>
|
121
|
+
</xs:simpleType>
|
122
|
+
<xs:simpleType name="phoneValue">
|
123
|
+
<xs:restriction base="xs:string">
|
124
|
+
<xs:maxLength value="20"/>
|
125
|
+
</xs:restriction>
|
126
|
+
</xs:simpleType>
|
127
|
+
<xs:simpleType name="emailValue">
|
128
|
+
<xs:restriction base="xs:string">
|
129
|
+
<xs:maxLength value="255"/>
|
130
|
+
</xs:restriction>
|
131
|
+
</xs:simpleType>
|
132
|
+
<xs:simpleType name="month">
|
133
|
+
<xs:restriction base="xs:unsignedByte">
|
134
|
+
<xs:minInclusive value="1"/>
|
135
|
+
<xs:maxInclusive value="12"/>
|
136
|
+
</xs:restriction>
|
137
|
+
</xs:simpleType>
|
138
|
+
<xs:simpleType name="year">
|
139
|
+
<xs:restriction base="xs:unsignedShort">
|
140
|
+
<xs:minInclusive value="2010"/>
|
141
|
+
<xs:pattern value="\d{4}"/>
|
142
|
+
</xs:restriction>
|
143
|
+
</xs:simpleType>
|
144
|
+
<xs:simpleType name="czTaxIdValue">
|
145
|
+
<xs:restriction base="xs:string">
|
146
|
+
<xs:pattern value="CZ[0-9]{8,10}"/>
|
147
|
+
</xs:restriction>
|
148
|
+
</xs:simpleType>
|
149
|
+
<xs:simpleType name="businessPremisesIdValue">
|
150
|
+
<xs:restriction base="xs:int">
|
151
|
+
<xs:minInclusive value="1"/>
|
152
|
+
<xs:maxInclusive value="999999"/>
|
153
|
+
</xs:restriction>
|
154
|
+
</xs:simpleType>
|
155
|
+
<xs:simpleType name="cashRegisterIdValue">
|
156
|
+
<xs:restriction base="xs:string">
|
157
|
+
<xs:pattern value="[0-9a-zA-Z\.,:;/#\-_ ]{1,20}"/>
|
158
|
+
</xs:restriction>
|
159
|
+
</xs:simpleType>
|
160
|
+
<xs:simpleType name="receiptNumberValue">
|
161
|
+
<xs:restriction base="xs:string">
|
162
|
+
<xs:pattern value="[0-9a-zA-Z\.,:;/#\-_ ]{1,25}"/>
|
163
|
+
</xs:restriction>
|
164
|
+
</xs:simpleType>
|
165
|
+
<xs:simpleType name="amountValue">
|
166
|
+
<xs:restriction base="xs:unsignedLong">
|
167
|
+
<xs:totalDigits value="12"/>
|
168
|
+
</xs:restriction>
|
169
|
+
</xs:simpleType>
|
170
|
+
<xs:simpleType name="regimeValue">
|
171
|
+
<xs:restriction base="xs:string">
|
172
|
+
<xs:enumeration value="regular"/>
|
173
|
+
<xs:enumeration value="simplified"/>
|
174
|
+
</xs:restriction>
|
175
|
+
</xs:simpleType>
|
176
|
+
<xs:simpleType name="fiscalCodeValue">
|
177
|
+
<xs:restriction base="xs:string">
|
178
|
+
<xs:length value="39"/>
|
179
|
+
<xs:pattern value="[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}-[0-9a-fA-F]{2}"/>
|
180
|
+
</xs:restriction>
|
181
|
+
</xs:simpleType>
|
182
|
+
<xs:simpleType name="securityCodeValue">
|
183
|
+
<xs:restriction base="xs:string">
|
184
|
+
<xs:length value="44"/>
|
185
|
+
<xs:whiteSpace value="collapse"/>
|
186
|
+
<xs:pattern value="[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}"/>
|
187
|
+
</xs:restriction>
|
188
|
+
</xs:simpleType>
|
189
|
+
<xs:simpleType name="signatureCodeValue">
|
190
|
+
<xs:restriction base="xs:string">
|
191
|
+
<xs:length value="512"/>
|
192
|
+
</xs:restriction>
|
193
|
+
</xs:simpleType>
|
194
|
+
</xs:schema>
|
@@ -0,0 +1,2355 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<wsdl:definitions name="Processing-WS" targetNamespace="http://gpe.cz/pay/pay-ws/proc/v1" xmlns:tns="http://gpe.cz/pay/pay-ws/proc/v1/type" xmlns:ns="http://gpe.cz/pay/pay-ws/proc/v1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd">
|
3
|
+
<wsdl:documentation>
|
4
|
+
<ns:build-info>
|
5
|
+
<ns:implementation-version>APPLICATION_VERSION</ns:implementation-version>
|
6
|
+
<ns:implementation-build>IMPLEMENTATION_BUILD</ns:implementation-build>
|
7
|
+
<ns:implementation-created>IMPLEMENTATION_CREATED</ns:implementation-created>
|
8
|
+
</ns:build-info>
|
9
|
+
</wsdl:documentation>
|
10
|
+
<wsdl:types>
|
11
|
+
<xsd:schema xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd" targetNamespace="http://gpe.cz/pay/pay-ws/proc/v1/type" xmlns:tns="http://gpe.cz/pay/pay-ws/proc/v1/type" xmlns="http://gpe.cz/pay/pay-ws/proc/v1/type" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ai="http://gpe.cz/gpwebpay/additionalInfo/response/v1" elementFormDefault="qualified">
|
12
|
+
<!-- http://ws-i.org/profiles/basic/1.1/swaref.xsd -->
|
13
|
+
<xsd:import namespace="http://ws-i.org/profiles/basic/1.1/xsd" schemaLocation="swaref.xsd" />
|
14
|
+
<xsd:import namespace="http://gpe.cz/gpwebpay/additionalInfo/response/v1" schemaLocation="GPwebpayAdditionalInfoResponse_v1.xsd" />
|
15
|
+
<xsd:simpleType name="ReturnCode">
|
16
|
+
<xsd:restriction base="xsd:int">
|
17
|
+
<xsd:minInclusive value="0" />
|
18
|
+
<xsd:maxInclusive value="9999" />
|
19
|
+
</xsd:restriction>
|
20
|
+
</xsd:simpleType>
|
21
|
+
<xsd:simpleType name="CaptureFlag">
|
22
|
+
<xsd:restriction base="xsd:int">
|
23
|
+
<xsd:enumeration value="0" />
|
24
|
+
<xsd:enumeration value="1" />
|
25
|
+
</xsd:restriction>
|
26
|
+
</xsd:simpleType>
|
27
|
+
<xsd:simpleType name="PaymentStatus">
|
28
|
+
<xsd:restriction base="xsd:string">
|
29
|
+
<xsd:enumeration value="SUCCESS" />
|
30
|
+
<xsd:enumeration value="FAIL" />
|
31
|
+
</xsd:restriction>
|
32
|
+
</xsd:simpleType>
|
33
|
+
<xsd:simpleType name="BooleanType">
|
34
|
+
<xsd:restriction base="xsd:string">
|
35
|
+
<xsd:enumeration value="true" />
|
36
|
+
<xsd:enumeration value="false" />
|
37
|
+
</xsd:restriction>
|
38
|
+
</xsd:simpleType>
|
39
|
+
<xsd:complexType name="EchoFaultDetail">
|
40
|
+
<xsd:sequence>
|
41
|
+
<xsd:element name="primaryReturnCode" minOccurs="1" maxOccurs="1" type="ReturnCode" />
|
42
|
+
<xsd:element name="secondaryReturnCode" minOccurs="1" maxOccurs="1" type="ReturnCode" />
|
43
|
+
</xsd:sequence>
|
44
|
+
</xsd:complexType>
|
45
|
+
<xsd:complexType name="FaultDetail">
|
46
|
+
<xsd:sequence>
|
47
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
48
|
+
<xsd:element name="primaryReturnCode" minOccurs="1" maxOccurs="1" type="ReturnCode" />
|
49
|
+
<xsd:element name="secondaryReturnCode" minOccurs="1" maxOccurs="1" type="ReturnCode" />
|
50
|
+
<xsd:element name="signature" minOccurs="1" maxOccurs="1" type="Signature" />
|
51
|
+
</xsd:sequence>
|
52
|
+
</xsd:complexType>
|
53
|
+
<xsd:complexType name="PaymentFaultDetail">
|
54
|
+
<xsd:complexContent>
|
55
|
+
<xsd:extension base="FaultDetail">
|
56
|
+
<xsd:sequence>
|
57
|
+
<xsd:element name="authCode" minOccurs="0" maxOccurs="1" type="AuthCode" />
|
58
|
+
</xsd:sequence>
|
59
|
+
</xsd:extension>
|
60
|
+
</xsd:complexContent>
|
61
|
+
</xsd:complexType>
|
62
|
+
<xsd:complexType name="CardOnFilePaymentFaultDetail">
|
63
|
+
<xsd:complexContent>
|
64
|
+
<xsd:extension base="FaultDetail">
|
65
|
+
<xsd:sequence>
|
66
|
+
<xsd:element name="authenticationLink" minOccurs="0" maxOccurs="1" type="xsd:string" />
|
67
|
+
</xsd:sequence>
|
68
|
+
</xsd:extension>
|
69
|
+
</xsd:complexContent>
|
70
|
+
</xsd:complexType>
|
71
|
+
<xsd:simpleType name="MessageId">
|
72
|
+
<xsd:restriction base="xsd:string">
|
73
|
+
<xsd:minLength value="16" />
|
74
|
+
<xsd:maxLength value="256" />
|
75
|
+
<xsd:pattern value="[A-Za-z0-9+/=]+" />
|
76
|
+
</xsd:restriction>
|
77
|
+
</xsd:simpleType>
|
78
|
+
<xsd:simpleType name="BatchId">
|
79
|
+
<xsd:restriction base="xsd:long">
|
80
|
+
<xsd:minInclusive value="0" />
|
81
|
+
</xsd:restriction>
|
82
|
+
</xsd:simpleType>
|
83
|
+
<xsd:simpleType name="CurrencyCode">
|
84
|
+
<xsd:restriction base="xsd:string">
|
85
|
+
<xsd:pattern value="[0-9A-Z]{3}" />
|
86
|
+
</xsd:restriction>
|
87
|
+
</xsd:simpleType>
|
88
|
+
<xsd:simpleType name="Email">
|
89
|
+
<xsd:restriction base="xsd:string">
|
90
|
+
<xsd:minLength value="6" />
|
91
|
+
<xsd:maxLength value="255" />
|
92
|
+
<xsd:pattern value="[a-zA-Z0-9!#$%'*+/=?^_`{|}~-]+(\.[a-zA-Z0-9!#$%'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9!#$%'*+/=?^_`{|}~-]+(\.[a-zA-Z0-9!#$%'*+/=?^_`{|}~-]+)*|\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\]" />
|
93
|
+
</xsd:restriction>
|
94
|
+
</xsd:simpleType>
|
95
|
+
<xsd:simpleType name="OrderNumber">
|
96
|
+
<xsd:restriction base="xsd:string">
|
97
|
+
<xsd:minLength value="1" />
|
98
|
+
<xsd:maxLength value="30" />
|
99
|
+
<xsd:pattern value="[0-9]*" />
|
100
|
+
</xsd:restriction>
|
101
|
+
</xsd:simpleType>
|
102
|
+
<xsd:simpleType name="ReferenceNumber">
|
103
|
+
<xsd:restriction base="xsd:string">
|
104
|
+
<xsd:minLength value="1" />
|
105
|
+
<xsd:maxLength value="20" />
|
106
|
+
<xsd:pattern value="[ -~]*" />
|
107
|
+
</xsd:restriction>
|
108
|
+
</xsd:simpleType>
|
109
|
+
<xsd:simpleType name="MerchantNumber">
|
110
|
+
<xsd:restriction base="xsd:string">
|
111
|
+
<xsd:minLength value="1" />
|
112
|
+
<xsd:maxLength value="10" />
|
113
|
+
</xsd:restriction>
|
114
|
+
</xsd:simpleType>
|
115
|
+
<xsd:simpleType name="PaymentNumber">
|
116
|
+
<xsd:restriction base="xsd:string">
|
117
|
+
<xsd:minLength value="1" />
|
118
|
+
<xsd:maxLength value="15" />
|
119
|
+
<xsd:pattern value="[0-9]*" />
|
120
|
+
</xsd:restriction>
|
121
|
+
</xsd:simpleType>
|
122
|
+
<xsd:simpleType name="Provider">
|
123
|
+
<xsd:restriction base="xsd:string">
|
124
|
+
<xsd:pattern value="[0-9]{4}" />
|
125
|
+
</xsd:restriction>
|
126
|
+
</xsd:simpleType>
|
127
|
+
<xsd:simpleType name="Signature">
|
128
|
+
<xsd:restriction base="xsd:base64Binary">
|
129
|
+
<xsd:minLength value="1" />
|
130
|
+
<xsd:maxLength value="1024" />
|
131
|
+
</xsd:restriction>
|
132
|
+
</xsd:simpleType>
|
133
|
+
<xsd:simpleType name="AuthCode">
|
134
|
+
<xsd:restriction base="xsd:string">
|
135
|
+
<xsd:minLength value="1" />
|
136
|
+
<xsd:maxLength value="6" />
|
137
|
+
</xsd:restriction>
|
138
|
+
</xsd:simpleType>
|
139
|
+
<xsd:simpleType name="Amount">
|
140
|
+
<xsd:restriction base="xsd:long">
|
141
|
+
<xsd:minExclusive value="0" />
|
142
|
+
<xsd:maxInclusive value="999999999999999" />
|
143
|
+
</xsd:restriction>
|
144
|
+
</xsd:simpleType>
|
145
|
+
<xsd:simpleType name="Amount12">
|
146
|
+
<xsd:restriction base="xsd:long">
|
147
|
+
<xsd:minExclusive value="0" />
|
148
|
+
<xsd:maxInclusive value="999999999999" />
|
149
|
+
</xsd:restriction>
|
150
|
+
</xsd:simpleType>
|
151
|
+
<xsd:simpleType name="Url">
|
152
|
+
<xsd:restriction base="xsd:string">
|
153
|
+
<xsd:minLength value="1" />
|
154
|
+
<xsd:maxLength value="300" />
|
155
|
+
<xsd:pattern value="http(s{0,1})://.*" />
|
156
|
+
</xsd:restriction>
|
157
|
+
</xsd:simpleType>
|
158
|
+
<xsd:simpleType name="Description">
|
159
|
+
<xsd:restriction base="xsd:string">
|
160
|
+
<xsd:minLength value="1" />
|
161
|
+
<xsd:maxLength value="255" />
|
162
|
+
<xsd:pattern value="[ -~]*" />
|
163
|
+
</xsd:restriction>
|
164
|
+
</xsd:simpleType>
|
165
|
+
<xsd:simpleType name="MerchantData">
|
166
|
+
<xsd:restriction base="xsd:string">
|
167
|
+
<xsd:minLength value="1" />
|
168
|
+
<xsd:maxLength value="255" />
|
169
|
+
<xsd:pattern value="[ -~]*" />
|
170
|
+
</xsd:restriction>
|
171
|
+
</xsd:simpleType>
|
172
|
+
<xsd:simpleType name="Language">
|
173
|
+
<xsd:restriction base="xsd:string">
|
174
|
+
<xsd:length value="2" />
|
175
|
+
</xsd:restriction>
|
176
|
+
</xsd:simpleType>
|
177
|
+
<xsd:simpleType name="PayMethod">
|
178
|
+
<xsd:restriction base="xsd:string">
|
179
|
+
<xsd:minLength value="1" />
|
180
|
+
<xsd:maxLength value="255" />
|
181
|
+
</xsd:restriction>
|
182
|
+
</xsd:simpleType>
|
183
|
+
<xsd:simpleType name="TextValue">
|
184
|
+
<xsd:restriction base="xsd:string">
|
185
|
+
<xsd:minLength value="1" />
|
186
|
+
<xsd:maxLength value="255" />
|
187
|
+
</xsd:restriction>
|
188
|
+
</xsd:simpleType>
|
189
|
+
<xsd:simpleType name="PhoneValue">
|
190
|
+
<xsd:restriction base="xsd:string">
|
191
|
+
<xsd:minLength value="1" />
|
192
|
+
<xsd:maxLength value="20" />
|
193
|
+
</xsd:restriction>
|
194
|
+
</xsd:simpleType>
|
195
|
+
<xsd:simpleType name="ItemType">
|
196
|
+
<xsd:restriction base="xsd:string">
|
197
|
+
<xsd:minLength value="1" />
|
198
|
+
<xsd:maxLength value="20" />
|
199
|
+
</xsd:restriction>
|
200
|
+
</xsd:simpleType>
|
201
|
+
<xsd:simpleType name="IpValue">
|
202
|
+
<xsd:restriction base="xsd:string">
|
203
|
+
<xsd:minLength value="1" />
|
204
|
+
<xsd:maxLength value="255" />
|
205
|
+
<xsd:pattern value="(25[0-5]|2[0-4]\d|[0-1]?\d?\d)(\.(25[0-5]|2[0-4]\d|[0-1]?\d?\d)){3}" />
|
206
|
+
<xsd:pattern
|
207
|
+
value="([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.{3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])" />
|
208
|
+
<!-- IPv4Pattern -->
|
209
|
+
<!-- IPv6Pattern -->
|
210
|
+
</xsd:restriction>
|
211
|
+
</xsd:simpleType>
|
212
|
+
<xsd:simpleType name="TokenData">
|
213
|
+
<xsd:restriction base="xsd:string">
|
214
|
+
<xsd:minLength value="1" />
|
215
|
+
<xsd:maxLength value="64" />
|
216
|
+
</xsd:restriction>
|
217
|
+
</xsd:simpleType>
|
218
|
+
<xsd:simpleType name="CzTaxId">
|
219
|
+
<xsd:restriction base="xsd:string">
|
220
|
+
<xsd:pattern value="CZ[0-9]{8,10}" />
|
221
|
+
</xsd:restriction>
|
222
|
+
</xsd:simpleType>
|
223
|
+
<xsd:simpleType name="BusinessPremisesId">
|
224
|
+
<xsd:restriction base="xsd:int">
|
225
|
+
<xsd:minInclusive value="1" />
|
226
|
+
<xsd:maxInclusive value="999999" />
|
227
|
+
</xsd:restriction>
|
228
|
+
</xsd:simpleType>
|
229
|
+
<xsd:simpleType name="CashRegisterId">
|
230
|
+
<xsd:restriction base="xsd:string">
|
231
|
+
<xsd:pattern value="[0-9a-zA-Z\.,:;/#\-_ ]{1,20}" />
|
232
|
+
</xsd:restriction>
|
233
|
+
</xsd:simpleType>
|
234
|
+
<xsd:simpleType name="ReceiptNumber">
|
235
|
+
<xsd:restriction base="xsd:string">
|
236
|
+
<xsd:pattern value="[0-9a-zA-Z\.,:;/#\-_ ]{1,25}" />
|
237
|
+
</xsd:restriction>
|
238
|
+
</xsd:simpleType>
|
239
|
+
<xsd:simpleType name="Regime">
|
240
|
+
<xsd:restriction base="xsd:string">
|
241
|
+
<xsd:enumeration value="regular" />
|
242
|
+
<xsd:enumeration value="simplified" />
|
243
|
+
</xsd:restriction>
|
244
|
+
</xsd:simpleType>
|
245
|
+
<xsd:simpleType name="FiscalCode">
|
246
|
+
<xsd:restriction base="xsd:string">
|
247
|
+
<xsd:length value="39" />
|
248
|
+
<xsd:pattern value="[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}-[0-9a-fA-F]{2}" />
|
249
|
+
</xsd:restriction>
|
250
|
+
</xsd:simpleType>
|
251
|
+
<xsd:simpleType name="SecurityCode">
|
252
|
+
<xsd:restriction base="xsd:string">
|
253
|
+
<xsd:length value="44" />
|
254
|
+
<xsd:whiteSpace value="collapse" />
|
255
|
+
<xsd:pattern value="[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}-[0-9a-fA-F]{8}" />
|
256
|
+
</xsd:restriction>
|
257
|
+
</xsd:simpleType>
|
258
|
+
<xsd:simpleType name="SignatureCode">
|
259
|
+
<xsd:restriction base="xsd:string">
|
260
|
+
<xsd:length value="512" />
|
261
|
+
</xsd:restriction>
|
262
|
+
</xsd:simpleType>
|
263
|
+
<xsd:simpleType name="LoginTypeValue">
|
264
|
+
<xsd:restriction base="xsd:string">
|
265
|
+
<xsd:enumeration value="01" />
|
266
|
+
<xsd:enumeration value="02" />
|
267
|
+
<xsd:enumeration value="03" />
|
268
|
+
<xsd:enumeration value="04" />
|
269
|
+
<xsd:enumeration value="05" />
|
270
|
+
<xsd:enumeration value="06" />
|
271
|
+
</xsd:restriction>
|
272
|
+
</xsd:simpleType>
|
273
|
+
<xsd:simpleType name="LoginTimeValue">
|
274
|
+
<xsd:restriction base="xsd:string">
|
275
|
+
<xsd:length value="12" />
|
276
|
+
<xsd:pattern value="([1-2]\d{3})(0[1-9]|1[0-2])(0[1-9]|[1-2][0-9]|3[0-1])(0[0-9]|1[0-9]|2[0-3])(0[0-9]|[1-5][0-9])" />
|
277
|
+
</xsd:restriction>
|
278
|
+
</xsd:simpleType>
|
279
|
+
<xsd:simpleType name="UserAccountIdValue">
|
280
|
+
<xsd:restriction base="xsd:string">
|
281
|
+
<xsd:maxLength value="40" />
|
282
|
+
</xsd:restriction>
|
283
|
+
</xsd:simpleType>
|
284
|
+
<xsd:simpleType name="DateTypeValue">
|
285
|
+
<xsd:restriction base="xsd:string">
|
286
|
+
<xsd:length value="8" />
|
287
|
+
<xsd:pattern value="([1-2]\d{3})(0[1-9]|1[0-2])(0[1-9]|[1-2][0-9]|3[0-1])" />
|
288
|
+
</xsd:restriction>
|
289
|
+
</xsd:simpleType>
|
290
|
+
<xsd:simpleType name="UserAccountAgeValue">
|
291
|
+
<xsd:restriction base="xsd:string">
|
292
|
+
<xsd:enumeration value="01" />
|
293
|
+
<xsd:enumeration value="02" />
|
294
|
+
<xsd:enumeration value="03" />
|
295
|
+
<xsd:enumeration value="04" />
|
296
|
+
<xsd:enumeration value="05" />
|
297
|
+
</xsd:restriction>
|
298
|
+
</xsd:simpleType>
|
299
|
+
<xsd:simpleType name="UserAccountLastChangeAgeValue">
|
300
|
+
<xsd:restriction base="xsd:string">
|
301
|
+
<xsd:enumeration value="01" />
|
302
|
+
<xsd:enumeration value="02" />
|
303
|
+
<xsd:enumeration value="03" />
|
304
|
+
<xsd:enumeration value="04" />
|
305
|
+
</xsd:restriction>
|
306
|
+
</xsd:simpleType>
|
307
|
+
<xsd:simpleType name="UserAccountPasswordChangeAgeValue">
|
308
|
+
<xsd:restriction base="xsd:string">
|
309
|
+
<xsd:enumeration value="01" />
|
310
|
+
<xsd:enumeration value="02" />
|
311
|
+
<xsd:enumeration value="03" />
|
312
|
+
<xsd:enumeration value="04" />
|
313
|
+
<xsd:enumeration value="05" />
|
314
|
+
</xsd:restriction>
|
315
|
+
</xsd:simpleType>
|
316
|
+
<xsd:simpleType name="PhoneCountryValue">
|
317
|
+
<xsd:restriction base="xsd:string">
|
318
|
+
<xsd:pattern value="\d{1,3}" />
|
319
|
+
</xsd:restriction>
|
320
|
+
</xsd:simpleType>
|
321
|
+
<xsd:simpleType name="AddressMatchValue">
|
322
|
+
<xsd:restriction base="xsd:string">
|
323
|
+
<xsd:enumeration value="Y" />
|
324
|
+
<xsd:enumeration value="N" />
|
325
|
+
</xsd:restriction>
|
326
|
+
</xsd:simpleType>
|
327
|
+
<xsd:simpleType name="TransactionTypeValue">
|
328
|
+
<xsd:restriction base="xsd:string">
|
329
|
+
<xsd:enumeration value="01" />
|
330
|
+
<xsd:enumeration value="03" />
|
331
|
+
<xsd:enumeration value="10" />
|
332
|
+
<xsd:enumeration value="11" />
|
333
|
+
<xsd:enumeration value="28" />
|
334
|
+
</xsd:restriction>
|
335
|
+
</xsd:simpleType>
|
336
|
+
<xsd:simpleType name="ShippingIndicatorValue">
|
337
|
+
<xsd:restriction base="xsd:string">
|
338
|
+
<xsd:enumeration value="01" />
|
339
|
+
<xsd:enumeration value="02" />
|
340
|
+
<xsd:enumeration value="03" />
|
341
|
+
<xsd:enumeration value="04" />
|
342
|
+
<xsd:enumeration value="05" />
|
343
|
+
<xsd:enumeration value="06" />
|
344
|
+
<xsd:enumeration value="07" />
|
345
|
+
</xsd:restriction>
|
346
|
+
</xsd:simpleType>
|
347
|
+
<xsd:simpleType name="PreOrderPurchaseIndValue">
|
348
|
+
<xsd:restriction base="xsd:string">
|
349
|
+
<xsd:enumeration value="01" />
|
350
|
+
<xsd:enumeration value="02" />
|
351
|
+
</xsd:restriction>
|
352
|
+
</xsd:simpleType>
|
353
|
+
<xsd:simpleType name="ReorderItemsIndValue">
|
354
|
+
<xsd:restriction base="xsd:string">
|
355
|
+
<xsd:enumeration value="01" />
|
356
|
+
<xsd:enumeration value="02" />
|
357
|
+
</xsd:restriction>
|
358
|
+
</xsd:simpleType>
|
359
|
+
<xsd:simpleType name="DeliveryTimeframeValue">
|
360
|
+
<xsd:restriction base="xsd:string">
|
361
|
+
<xsd:enumeration value="01" />
|
362
|
+
<xsd:enumeration value="02" />
|
363
|
+
<xsd:enumeration value="03" />
|
364
|
+
<xsd:enumeration value="04" />
|
365
|
+
</xsd:restriction>
|
366
|
+
</xsd:simpleType>
|
367
|
+
<xsd:simpleType name="GiftCardCountValue">
|
368
|
+
<xsd:restriction base="xsd:string">
|
369
|
+
<xsd:minLength value="1" />
|
370
|
+
<xsd:maxLength value="2" />
|
371
|
+
<xsd:pattern value="\d+" />
|
372
|
+
</xsd:restriction>
|
373
|
+
</xsd:simpleType>
|
374
|
+
<xsd:simpleType name="GiftCardAmountValue">
|
375
|
+
<xsd:restriction base="xsd:string">
|
376
|
+
<xsd:minLength value="1" />
|
377
|
+
<xsd:maxLength value="15" />
|
378
|
+
<xsd:pattern value="\d+" />
|
379
|
+
</xsd:restriction>
|
380
|
+
</xsd:simpleType>
|
381
|
+
<xsd:simpleType name="GiftCardCurrencyValue">
|
382
|
+
<xsd:restriction base="xsd:string">
|
383
|
+
<xsd:length value="3" />
|
384
|
+
<xsd:pattern value="\d+" />
|
385
|
+
</xsd:restriction>
|
386
|
+
</xsd:simpleType>
|
387
|
+
<xsd:simpleType name="RecurringFrequencyValue">
|
388
|
+
<xsd:restriction base="xsd:string">
|
389
|
+
<xsd:minLength value="1" />
|
390
|
+
<xsd:maxLength value="4" />
|
391
|
+
<xsd:pattern value="\d+" />
|
392
|
+
</xsd:restriction>
|
393
|
+
</xsd:simpleType>
|
394
|
+
<xsd:simpleType name="RemmitanceInfoValue">
|
395
|
+
<xsd:restriction base="xsd:string">
|
396
|
+
<xsd:maxLength value="140" />
|
397
|
+
</xsd:restriction>
|
398
|
+
</xsd:simpleType>
|
399
|
+
<xsd:simpleType name="NameValue">
|
400
|
+
<xsd:restriction base="xsd:string">
|
401
|
+
<xsd:minLength value="2" />
|
402
|
+
<xsd:maxLength value="45" />
|
403
|
+
</xsd:restriction>
|
404
|
+
</xsd:simpleType>
|
405
|
+
<xsd:simpleType name="AddressValue">
|
406
|
+
<xsd:restriction base="xsd:string">
|
407
|
+
<xsd:maxLength value="50" />
|
408
|
+
</xsd:restriction>
|
409
|
+
</xsd:simpleType>
|
410
|
+
<xsd:simpleType name="CityValue">
|
411
|
+
<xsd:restriction base="xsd:string">
|
412
|
+
<xsd:maxLength value="50" />
|
413
|
+
</xsd:restriction>
|
414
|
+
</xsd:simpleType>
|
415
|
+
<xsd:simpleType name="PostalCodeValue">
|
416
|
+
<xsd:restriction base="xsd:string">
|
417
|
+
<xsd:maxLength value="16" />
|
418
|
+
</xsd:restriction>
|
419
|
+
</xsd:simpleType>
|
420
|
+
<xsd:simpleType name="CountryValue">
|
421
|
+
<xsd:restriction base="xsd:string">
|
422
|
+
<xsd:pattern value="\d{1,3}" />
|
423
|
+
</xsd:restriction>
|
424
|
+
</xsd:simpleType>
|
425
|
+
<xsd:simpleType name="CountrySubdivisionValue">
|
426
|
+
<xsd:restriction base="xsd:string">
|
427
|
+
<xsd:minLength value="1" />
|
428
|
+
<xsd:maxLength value="3" />
|
429
|
+
</xsd:restriction>
|
430
|
+
</xsd:simpleType>
|
431
|
+
<xsd:group name="merchantKey">
|
432
|
+
<xsd:sequence>
|
433
|
+
<xsd:element name="provider" type="Provider" />
|
434
|
+
<xsd:element name="merchantNumber" type="MerchantNumber" />
|
435
|
+
</xsd:sequence>
|
436
|
+
</xsd:group>
|
437
|
+
<xsd:group name="paymentKey">
|
438
|
+
<xsd:sequence>
|
439
|
+
<xsd:group ref="merchantKey" />
|
440
|
+
<xsd:element name="paymentNumber" type="PaymentNumber" />
|
441
|
+
</xsd:sequence>
|
442
|
+
</xsd:group>
|
443
|
+
<xsd:complexType name="PaymentStatusRequest">
|
444
|
+
<xsd:sequence>
|
445
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
446
|
+
<xsd:group ref="paymentKey" />
|
447
|
+
<xsd:element name="signature" type="Signature" />
|
448
|
+
</xsd:sequence>
|
449
|
+
</xsd:complexType>
|
450
|
+
<xsd:complexType name="PaymentStatusResponse">
|
451
|
+
<xsd:sequence>
|
452
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
453
|
+
<xsd:element name="state" type="xsd:int" />
|
454
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
455
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
456
|
+
<xsd:element name="signature" type="Signature" />
|
457
|
+
</xsd:sequence>
|
458
|
+
</xsd:complexType>
|
459
|
+
<xsd:complexType name="MasterPaymentStatusResponse">
|
460
|
+
<xsd:sequence>
|
461
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
462
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
463
|
+
<xsd:element name="signature" type="Signature" />
|
464
|
+
</xsd:sequence>
|
465
|
+
</xsd:complexType>
|
466
|
+
<xsd:complexType name="RevokePaymentLinkResponse">
|
467
|
+
<xsd:sequence>
|
468
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
469
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
470
|
+
<xsd:element name="signature" type="Signature" />
|
471
|
+
</xsd:sequence>
|
472
|
+
</xsd:complexType>
|
473
|
+
<xsd:complexType name="SimpleValueHolder">
|
474
|
+
<xsd:sequence>
|
475
|
+
<xsd:element name="name" type="xsd:string" />
|
476
|
+
<xsd:element name="value" type="xsd:string" />
|
477
|
+
</xsd:sequence>
|
478
|
+
</xsd:complexType>
|
479
|
+
<xsd:complexType name="PaymentDetailResponse">
|
480
|
+
<xsd:sequence>
|
481
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
482
|
+
<xsd:element name="state" type="xsd:int" />
|
483
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
484
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
485
|
+
<xsd:element name="paymentMethod" type="xsd:string" minOccurs="0" />
|
486
|
+
<xsd:element name="panMasked" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
487
|
+
<xsd:element name="brandName" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
488
|
+
<xsd:element name="paymentAmount" type="xsd:long" minOccurs="0" maxOccurs="1" />
|
489
|
+
<xsd:element name="approveAmount" type="xsd:long" minOccurs="0" maxOccurs="1" />
|
490
|
+
<xsd:element name="captureAmount" type="xsd:long" minOccurs="0" maxOccurs="1" />
|
491
|
+
<xsd:element name="refundAmount" type="xsd:long" minOccurs="0" maxOccurs="1" />
|
492
|
+
<xsd:element name="approveCode" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
493
|
+
<xsd:element name="paymentTime" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
494
|
+
<xsd:element name="approveTime" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
495
|
+
<xsd:element name="lastCaptureTime" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
496
|
+
<xsd:element name="additionalInfoResponse" type="ai:additionalInfoResponse" minOccurs="0" maxOccurs="1" />
|
497
|
+
<xsd:element name="simpleValueHolder" type="SimpleValueHolder" minOccurs="0" maxOccurs="unbounded" />
|
498
|
+
<xsd:element name="panToken" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
499
|
+
<xsd:element name="panPattern" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
500
|
+
<xsd:element name="panExpiry" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
501
|
+
<xsd:element name="acsResult" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
502
|
+
<xsd:element name="dayToCapture" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
503
|
+
<xsd:element name="signature" type="Signature" />
|
504
|
+
</xsd:sequence>
|
505
|
+
</xsd:complexType>
|
506
|
+
<xsd:complexType name="AuthorizationReverseRequest">
|
507
|
+
<xsd:sequence>
|
508
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
509
|
+
<xsd:group ref="paymentKey" />
|
510
|
+
<xsd:element name="signature" type="Signature" />
|
511
|
+
</xsd:sequence>
|
512
|
+
</xsd:complexType>
|
513
|
+
<xsd:complexType name="AuthorizationReverseResponse">
|
514
|
+
<xsd:sequence>
|
515
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
516
|
+
<xsd:element name="state" type="xsd:int" />
|
517
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
518
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
519
|
+
<xsd:element name="signature" type="Signature" />
|
520
|
+
</xsd:sequence>
|
521
|
+
</xsd:complexType>
|
522
|
+
<xsd:complexType name="BatchCloseRequest">
|
523
|
+
<xsd:sequence>
|
524
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
525
|
+
<xsd:group ref="merchantKey" />
|
526
|
+
<xsd:element name="signature" type="Signature" />
|
527
|
+
</xsd:sequence>
|
528
|
+
</xsd:complexType>
|
529
|
+
<xsd:complexType name="BatchCloseResponse">
|
530
|
+
<xsd:sequence>
|
531
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
532
|
+
<xsd:element name="signature" type="Signature" />
|
533
|
+
</xsd:sequence>
|
534
|
+
</xsd:complexType>
|
535
|
+
<xsd:complexType name="RefundRequest">
|
536
|
+
<xsd:sequence>
|
537
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
538
|
+
<xsd:group ref="paymentKey" />
|
539
|
+
<xsd:element name="amount" type="Amount" />
|
540
|
+
<xsd:element name="signature" type="Signature" />
|
541
|
+
</xsd:sequence>
|
542
|
+
</xsd:complexType>
|
543
|
+
<xsd:complexType name="RefundResponse">
|
544
|
+
<xsd:sequence>
|
545
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
546
|
+
<xsd:element name="state" type="xsd:int" />
|
547
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
548
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
549
|
+
<xsd:element name="signature" type="Signature" />
|
550
|
+
</xsd:sequence>
|
551
|
+
</xsd:complexType>
|
552
|
+
<xsd:complexType name="RefundReverseRequest">
|
553
|
+
<xsd:sequence>
|
554
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
555
|
+
<xsd:group ref="paymentKey" />
|
556
|
+
<xsd:element name="refundNumber">
|
557
|
+
<xsd:simpleType>
|
558
|
+
<xsd:restriction base="xsd:int">
|
559
|
+
<xsd:minInclusive value="0" />
|
560
|
+
</xsd:restriction>
|
561
|
+
</xsd:simpleType>
|
562
|
+
</xsd:element>
|
563
|
+
<xsd:element name="signature" type="Signature" />
|
564
|
+
</xsd:sequence>
|
565
|
+
</xsd:complexType>
|
566
|
+
<xsd:complexType name="RefundReverseResponse">
|
567
|
+
<xsd:sequence>
|
568
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
569
|
+
<xsd:element name="state" type="xsd:int" />
|
570
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
571
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
572
|
+
<xsd:element name="signature" type="Signature" />
|
573
|
+
</xsd:sequence>
|
574
|
+
</xsd:complexType>
|
575
|
+
<xsd:complexType name="PaymentDeleteRequest">
|
576
|
+
<xsd:sequence>
|
577
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
578
|
+
<xsd:group ref="paymentKey" />
|
579
|
+
<xsd:element name="signature" type="Signature" />
|
580
|
+
</xsd:sequence>
|
581
|
+
</xsd:complexType>
|
582
|
+
<xsd:complexType name="PaymentDeleteResponse">
|
583
|
+
<xsd:sequence>
|
584
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
585
|
+
<xsd:element name="state" type="xsd:int" />
|
586
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
587
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
588
|
+
<xsd:element name="signature" type="Signature" />
|
589
|
+
</xsd:sequence>
|
590
|
+
</xsd:complexType>
|
591
|
+
<xsd:complexType name="CaptureRequest">
|
592
|
+
<xsd:sequence>
|
593
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
594
|
+
<xsd:group ref="paymentKey" />
|
595
|
+
<xsd:element name="amount" type="Amount" />
|
596
|
+
<xsd:element name="signature" type="Signature" />
|
597
|
+
</xsd:sequence>
|
598
|
+
</xsd:complexType>
|
599
|
+
<xsd:complexType name="CaptureResponse">
|
600
|
+
<xsd:sequence>
|
601
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
602
|
+
<xsd:element name="state" type="xsd:int" />
|
603
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
604
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
605
|
+
<xsd:element name="signature" type="Signature" />
|
606
|
+
</xsd:sequence>
|
607
|
+
</xsd:complexType>
|
608
|
+
<xsd:complexType name="CaptureReverseRequest">
|
609
|
+
<xsd:sequence>
|
610
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
611
|
+
<xsd:group ref="paymentKey" />
|
612
|
+
<xsd:element name="captureNumber">
|
613
|
+
<xsd:simpleType>
|
614
|
+
<xsd:restriction base="xsd:int">
|
615
|
+
<xsd:minInclusive value="0" />
|
616
|
+
</xsd:restriction>
|
617
|
+
</xsd:simpleType>
|
618
|
+
</xsd:element>
|
619
|
+
<xsd:element name="signature" type="Signature" />
|
620
|
+
</xsd:sequence>
|
621
|
+
</xsd:complexType>
|
622
|
+
<xsd:complexType name="CaptureReverseResponse">
|
623
|
+
<xsd:sequence>
|
624
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
625
|
+
<xsd:element name="state" type="xsd:int" />
|
626
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
627
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
628
|
+
<xsd:element name="signature" type="Signature" />
|
629
|
+
</xsd:sequence>
|
630
|
+
</xsd:complexType>
|
631
|
+
<xsd:complexType name="PaymentCloseRequest">
|
632
|
+
<xsd:sequence>
|
633
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
634
|
+
<xsd:group ref="paymentKey" />
|
635
|
+
<xsd:element name="signature" type="Signature" />
|
636
|
+
</xsd:sequence>
|
637
|
+
</xsd:complexType>
|
638
|
+
<xsd:complexType name="PaymentCloseResponse">
|
639
|
+
<xsd:sequence>
|
640
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
641
|
+
<xsd:element name="state" type="xsd:int" />
|
642
|
+
<xsd:element name="status" type="xsd:string" minOccurs="0" />
|
643
|
+
<xsd:element name="subStatus" type="xsd:string" minOccurs="0" />
|
644
|
+
<xsd:element name="signature" type="Signature" />
|
645
|
+
</xsd:sequence>
|
646
|
+
</xsd:complexType>
|
647
|
+
<xsd:complexType name="RecurringPaymentRequest">
|
648
|
+
<xsd:sequence>
|
649
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
650
|
+
<xsd:group ref="paymentKey" />
|
651
|
+
<xsd:element name="masterPaymentNumber" type="PaymentNumber" />
|
652
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
653
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
654
|
+
<xsd:element name="amount" type="Amount" minOccurs="0" maxOccurs="1" />
|
655
|
+
<xsd:element name="currencyCode" type="CurrencyCode" minOccurs="0" maxOccurs="1" />
|
656
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
657
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
658
|
+
<xsd:element name="altTerminalData" minOccurs="0" maxOccurs="1" type="AltTerminalData" />
|
659
|
+
<xsd:element name="signature" type="Signature" />
|
660
|
+
</xsd:sequence>
|
661
|
+
</xsd:complexType>
|
662
|
+
<xsd:complexType name="RecurringPaymentResponse">
|
663
|
+
<xsd:sequence>
|
664
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
665
|
+
<xsd:element name="authCode" type="AuthCode" />
|
666
|
+
<xsd:element name="signature" type="Signature" />
|
667
|
+
</xsd:sequence>
|
668
|
+
</xsd:complexType>
|
669
|
+
<xsd:complexType name="PaymentLinkRequest">
|
670
|
+
<xsd:sequence>
|
671
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
672
|
+
<xsd:group ref="paymentKey" />
|
673
|
+
<xsd:element name="amount" type="Amount" />
|
674
|
+
<xsd:element name="currencyCode" type="CurrencyCode" />
|
675
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
676
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
677
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
678
|
+
<xsd:element name="url" type="Url" minOccurs="0" maxOccurs="1" />
|
679
|
+
<xsd:element name="description" type="Description" minOccurs="0" maxOccurs="1" />
|
680
|
+
<xsd:element name="merchantData" type="MerchantData" minOccurs="0" maxOccurs="1" />
|
681
|
+
<xsd:element name="fastPayId" type="PaymentNumber" minOccurs="0" maxOccurs="1" />
|
682
|
+
<xsd:element name="defaultPayMethod" type="PayMethod" minOccurs="0" maxOccurs="1" />
|
683
|
+
<xsd:element name="disabledPayMethods" type="PayMethod" minOccurs="0" maxOccurs="1" />
|
684
|
+
<xsd:element name="email" type="Email" minOccurs="0" maxOccurs="1" />
|
685
|
+
<xsd:element name="merchantEmail" type="Email" minOccurs="0" maxOccurs="1" />
|
686
|
+
<xsd:element name="paymentExpiry" type="xsd:date" minOccurs="1" maxOccurs="1" />
|
687
|
+
<xsd:element name="language" type="Language" minOccurs="0" maxOccurs="1" />
|
688
|
+
<xsd:element name="registerRecurring" minOccurs="0" maxOccurs="1" type="BooleanType" />
|
689
|
+
<xsd:element name="registerToken" minOccurs="0" maxOccurs="1" type="BooleanType" />
|
690
|
+
<xsd:element name="signature" type="Signature" minOccurs="1" maxOccurs="1" />
|
691
|
+
</xsd:sequence>
|
692
|
+
</xsd:complexType>
|
693
|
+
<xsd:complexType name="PaymentLinkResponse">
|
694
|
+
<xsd:sequence>
|
695
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
696
|
+
<xsd:element name="paymentNumber" type="PaymentNumber" />
|
697
|
+
<xsd:element name="paymentLink" type="xsd:string" />
|
698
|
+
<xsd:element name="signature" type="Signature" />
|
699
|
+
</xsd:sequence>
|
700
|
+
</xsd:complexType>
|
701
|
+
<xsd:complexType name="MpsAddress">
|
702
|
+
<xsd:sequence>
|
703
|
+
<xsd:element name="city" type="xsd:string" />
|
704
|
+
<xsd:element name="country" type="xsd:string" />
|
705
|
+
<xsd:element name="countrySubdivision" type="xsd:string" minOccurs="0" />
|
706
|
+
<xsd:element name="address1" type="xsd:string" />
|
707
|
+
<xsd:element name="address2" type="xsd:string" minOccurs="0" />
|
708
|
+
<xsd:element name="address3" type="xsd:string" minOccurs="0" />
|
709
|
+
<xsd:element name="postalCode" type="xsd:string" minOccurs="0" />
|
710
|
+
</xsd:sequence>
|
711
|
+
</xsd:complexType>
|
712
|
+
<xsd:complexType name="MpsPreCheckoutShippingAddress">
|
713
|
+
<xsd:complexContent>
|
714
|
+
<xsd:extension base="MpsAddress">
|
715
|
+
<xsd:sequence>
|
716
|
+
<xsd:element name="recipientName" type="xsd:string" />
|
717
|
+
<xsd:element name="recipientPhoneNumber" type="xsd:string" />
|
718
|
+
<xsd:element name="addressId" type="xsd:string" />
|
719
|
+
<xsd:element name="selectedAsDefault" type="xsd:boolean" />
|
720
|
+
<xsd:element name="shippingAlias" type="xsd:string" minOccurs="0" />
|
721
|
+
</xsd:sequence>
|
722
|
+
</xsd:extension>
|
723
|
+
</xsd:complexContent>
|
724
|
+
</xsd:complexType>
|
725
|
+
<xsd:complexType name="MpsContact">
|
726
|
+
<xsd:sequence>
|
727
|
+
<xsd:element name="firstName" type="xsd:string" />
|
728
|
+
<xsd:element name="middleName" minOccurs="0">
|
729
|
+
<xsd:simpleType>
|
730
|
+
<xsd:restriction base="xsd:string">
|
731
|
+
<xsd:minLength value="1" />
|
732
|
+
<xsd:maxLength value="150" />
|
733
|
+
</xsd:restriction>
|
734
|
+
</xsd:simpleType>
|
735
|
+
</xsd:element>
|
736
|
+
<xsd:element name="lastName" type="xsd:string" />
|
737
|
+
<xsd:element name="country" type="xsd:string" />
|
738
|
+
<xsd:element name="emailAddress" type="xsd:string" />
|
739
|
+
<xsd:element name="phoneNumber" type="xsd:string" />
|
740
|
+
<xsd:element name="simpleValueHolder" type="SimpleValueHolder" minOccurs="0" maxOccurs="unbounded" />
|
741
|
+
</xsd:sequence>
|
742
|
+
</xsd:complexType>
|
743
|
+
<xsd:complexType name="MpsPreCheckoutCard">
|
744
|
+
<xsd:sequence>
|
745
|
+
<xsd:element name="brandId" type="xsd:string" />
|
746
|
+
<xsd:element name="brandName" type="xsd:string" />
|
747
|
+
<xsd:element name="billingAddress" type="MpsAddress" minOccurs="0" />
|
748
|
+
<xsd:element name="cardHolderName" type="xsd:string" />
|
749
|
+
<xsd:element name="expiryMonth" type="xsd:int" minOccurs="0" />
|
750
|
+
<xsd:element name="expiryYear" type="xsd:int" minOccurs="0" />
|
751
|
+
<xsd:element name="cardId" type="xsd:string" />
|
752
|
+
<xsd:element name="lastFour" type="xsd:string" />
|
753
|
+
<xsd:element name="cardAlias" type="xsd:string" minOccurs="0" />
|
754
|
+
<xsd:element name="selectedAsDefault" type="xsd:boolean" />
|
755
|
+
</xsd:sequence>
|
756
|
+
</xsd:complexType>
|
757
|
+
|
758
|
+
<xsd:complexType name="MpsPreCheckoutRewardProgram">
|
759
|
+
<xsd:sequence>
|
760
|
+
<xsd:element name="rewardNumber" type="xsd:string" />
|
761
|
+
<xsd:element name="rewardId" type="xsd:string" />
|
762
|
+
<xsd:element name="rewardName" type="xsd:string" minOccurs="0" />
|
763
|
+
<xsd:element name="expiryMonth" type="xsd:int" minOccurs="0" />
|
764
|
+
<xsd:element name="expiryYear" type="xsd:int" minOccurs="0" />
|
765
|
+
<xsd:element name="rewardProgramId" type="xsd:string" />
|
766
|
+
<xsd:element name="rewardLogoUrl" type="xsd:string" minOccurs="0" />
|
767
|
+
</xsd:sequence>
|
768
|
+
</xsd:complexType>
|
769
|
+
<xsd:complexType name="MpsPreCheckoutData">
|
770
|
+
<xsd:sequence>
|
771
|
+
<xsd:element name="cards" type="MpsPreCheckoutCard" maxOccurs="unbounded" />
|
772
|
+
<xsd:element name="contact" type="MpsContact" minOccurs="0" />
|
773
|
+
<xsd:element name="shippingAddresses" type="MpsPreCheckoutShippingAddress" maxOccurs="unbounded" />
|
774
|
+
<xsd:element name="rewardPrograms" type="MpsPreCheckoutRewardProgram" maxOccurs="unbounded" />
|
775
|
+
<xsd:element name="walletName" type="xsd:string" />
|
776
|
+
<xsd:element name="simpleValueHolder" type="SimpleValueHolder" minOccurs="0" maxOccurs="unbounded" />
|
777
|
+
</xsd:sequence>
|
778
|
+
</xsd:complexType>
|
779
|
+
<xsd:complexType name="MpsPreCheckoutRequest">
|
780
|
+
<xsd:sequence>
|
781
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
782
|
+
<xsd:group ref="merchantKey" />
|
783
|
+
<xsd:element name="pairingNumber" type="PaymentNumber" />
|
784
|
+
<xsd:element name="requestCardDetails" type="BooleanType" minOccurs="0" maxOccurs="1" />
|
785
|
+
<xsd:element name="requestShippingDetails" type="BooleanType" minOccurs="0" maxOccurs="1" />
|
786
|
+
<xsd:element name="requestRewardPrograms" type="BooleanType" minOccurs="0" maxOccurs="1" />
|
787
|
+
<xsd:element name="signature" type="Signature" />
|
788
|
+
</xsd:sequence>
|
789
|
+
</xsd:complexType>
|
790
|
+
<xsd:complexType name="MpsPreCheckoutResponse">
|
791
|
+
<xsd:sequence>
|
792
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
793
|
+
<xsd:element name="preCheckoutData" type="MpsPreCheckoutData" />
|
794
|
+
<xsd:element name="walletPartnerLogoUrl" type="xsd:anyURI" />
|
795
|
+
<xsd:element name="masterpassLogoUrl" type="xsd:anyURI" />
|
796
|
+
<xsd:element name="simpleValueHolder" type="SimpleValueHolder" minOccurs="0" maxOccurs="unbounded" />
|
797
|
+
<xsd:element name="signature" type="Signature" />
|
798
|
+
</xsd:sequence>
|
799
|
+
</xsd:complexType>
|
800
|
+
<xsd:complexType name="MpsExpressCheckoutRequest">
|
801
|
+
<xsd:sequence>
|
802
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
803
|
+
<xsd:group ref="paymentKey" />
|
804
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
805
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
806
|
+
<xsd:element name="amount" type="Amount" />
|
807
|
+
<xsd:element name="currencyCode" type="CurrencyCode" />
|
808
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
809
|
+
<xsd:element name="pairingNumber" type="PaymentNumber" />
|
810
|
+
<xsd:element name="cardId" type="TextValue" />
|
811
|
+
<xsd:element name="shippingAddressId" type="TextValue" minOccurs="0" />
|
812
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
813
|
+
<xsd:element name="signature" type="Signature" />
|
814
|
+
</xsd:sequence>
|
815
|
+
</xsd:complexType>
|
816
|
+
<xsd:complexType name="MpsExpressCheckoutResponse">
|
817
|
+
<xsd:sequence>
|
818
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
819
|
+
<xsd:element name="authCode" type="AuthCode" />
|
820
|
+
<xsd:element name="signature" type="Signature" />
|
821
|
+
</xsd:sequence>
|
822
|
+
</xsd:complexType>
|
823
|
+
<xsd:complexType name="CardHolderData">
|
824
|
+
<xsd:sequence>
|
825
|
+
<xsd:element name="cardholderDetails" minOccurs="0">
|
826
|
+
<xsd:complexType>
|
827
|
+
<xsd:sequence>
|
828
|
+
<xsd:element name="name" type="NameValue" minOccurs="1" />
|
829
|
+
<xsd:element name="loginId" type="TextValue" minOccurs="0" />
|
830
|
+
<xsd:element name="loginType" type="LoginTypeValue" minOccurs="0" />
|
831
|
+
<xsd:element name="loginTime" type="LoginTimeValue" minOccurs="0" />
|
832
|
+
<xsd:element name="userAccountId" type="UserAccountIdValue" minOccurs="0" />
|
833
|
+
<xsd:element name="userAccountCreatedDate" type="DateTypeValue" minOccurs="0" />
|
834
|
+
<xsd:element name="userAccountAge" type="UserAccountAgeValue" minOccurs="0" />
|
835
|
+
<xsd:element name="userAccountLastChangeDate" type="DateTypeValue" minOccurs="0" />
|
836
|
+
<xsd:element name="userAccountLastChangeAge" type="UserAccountLastChangeAgeValue" minOccurs="0" />
|
837
|
+
<xsd:element name="userAccountPasswordChangeDate" type="DateTypeValue" minOccurs="0" />
|
838
|
+
<xsd:element name="userAccountPasswordChangeAge" type="UserAccountPasswordChangeAgeValue" minOccurs="0" />
|
839
|
+
<xsd:element name="socialNetworkId" type="TextValue" minOccurs="0" />
|
840
|
+
<xsd:element name="email" type="Email" minOccurs="1" />
|
841
|
+
<xsd:element name="phoneCountry" type="PhoneCountryValue" minOccurs="0" />
|
842
|
+
<xsd:element name="phone" type="PhoneValue" minOccurs="0" />
|
843
|
+
<xsd:element name="mobilePhoneCountry" type="PhoneCountryValue" minOccurs="0" />
|
844
|
+
<xsd:element name="mobilePhone" type="PhoneValue" minOccurs="0" />
|
845
|
+
<xsd:element name="workPhoneCountry" type="PhoneCountryValue" minOccurs="0" />
|
846
|
+
<xsd:element name="workPhone" type="PhoneValue" minOccurs="0" />
|
847
|
+
<xsd:element name="clientIpAddress" type="IpValue" minOccurs="0" />
|
848
|
+
</xsd:sequence>
|
849
|
+
</xsd:complexType>
|
850
|
+
</xsd:element>
|
851
|
+
<xsd:element name="addressMatch" type="AddressMatchValue" minOccurs="0" />
|
852
|
+
<xsd:element name="billingDetails" minOccurs="0">
|
853
|
+
<xsd:complexType>
|
854
|
+
<xsd:sequence>
|
855
|
+
<xsd:element name="name" type="TextValue" />
|
856
|
+
<xsd:element name="address1" type="AddressValue" />
|
857
|
+
<xsd:element name="address2" type="AddressValue" minOccurs="0" />
|
858
|
+
<xsd:element name="address3" type="AddressValue" minOccurs="0" />
|
859
|
+
<xsd:element name="city" type="CityValue" />
|
860
|
+
<xsd:element name="postalCode" type="PostalCodeValue" />
|
861
|
+
<xsd:element name="country" type="CountryValue" />
|
862
|
+
<xsd:element name="countrySubdivision" type="CountrySubdivisionValue" minOccurs="0" />
|
863
|
+
<xsd:element name="phone" type="PhoneValue" minOccurs="0" />
|
864
|
+
<xsd:element name="email" type="Email" minOccurs="0" />
|
865
|
+
</xsd:sequence>
|
866
|
+
</xsd:complexType>
|
867
|
+
</xsd:element>
|
868
|
+
<xsd:element name="shippingDetails" minOccurs="0">
|
869
|
+
<xsd:complexType>
|
870
|
+
<xsd:sequence>
|
871
|
+
<xsd:element name="name" type="TextValue" />
|
872
|
+
<xsd:element name="address1" type="AddressValue" />
|
873
|
+
<xsd:element name="address2" type="AddressValue" minOccurs="0" />
|
874
|
+
<xsd:element name="address3" type="AddressValue" minOccurs="0" />
|
875
|
+
<xsd:element name="city" type="CityValue" />
|
876
|
+
<xsd:element name="postalCode" type="PostalCodeValue" />
|
877
|
+
<xsd:element name="country" type="CountryValue" />
|
878
|
+
<xsd:element name="countrySubdivision" type="CountrySubdivisionValue" minOccurs="0" />
|
879
|
+
<xsd:element name="phone" type="PhoneValue" minOccurs="0" />
|
880
|
+
<xsd:element name="email" type="Email" minOccurs="0" />
|
881
|
+
<xsd:element name="method" type="TextValue" minOccurs="0" />
|
882
|
+
</xsd:sequence>
|
883
|
+
</xsd:complexType>
|
884
|
+
</xsd:element>
|
885
|
+
</xsd:sequence>
|
886
|
+
</xsd:complexType>
|
887
|
+
<xsd:complexType name="ResolvePaymentStatusRequest">
|
888
|
+
<xsd:sequence>
|
889
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
890
|
+
<xsd:group ref="paymentKey" />
|
891
|
+
<xsd:element name="paymentStatus" type="xsd:string" />
|
892
|
+
<xsd:element name="signature" type="Signature" />
|
893
|
+
</xsd:sequence>
|
894
|
+
</xsd:complexType>
|
895
|
+
<xsd:complexType name="TokenStatusRequest">
|
896
|
+
<xsd:sequence>
|
897
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
898
|
+
<xsd:group ref="merchantKey" />
|
899
|
+
<xsd:element name="tokenData" type="TokenData" />
|
900
|
+
<xsd:element name="signature" type="Signature" />
|
901
|
+
</xsd:sequence>
|
902
|
+
</xsd:complexType>
|
903
|
+
<xsd:complexType name="TokenStatusResponse">
|
904
|
+
<xsd:sequence>
|
905
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
906
|
+
<xsd:element name="status" type="xsd:string" />
|
907
|
+
<xsd:element name="signature" type="Signature" />
|
908
|
+
</xsd:sequence>
|
909
|
+
</xsd:complexType>
|
910
|
+
<xsd:complexType name="TokenRevokeRequest">
|
911
|
+
<xsd:sequence>
|
912
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
913
|
+
<xsd:group ref="merchantKey" />
|
914
|
+
<xsd:element name="tokenData" type="TokenData" />
|
915
|
+
<xsd:element name="signature" type="Signature" />
|
916
|
+
</xsd:sequence>
|
917
|
+
</xsd:complexType>
|
918
|
+
<xsd:complexType name="TokenRevokeResponse">
|
919
|
+
<xsd:sequence>
|
920
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
921
|
+
<xsd:element name="status" type="xsd:string" />
|
922
|
+
<xsd:element name="signature" type="Signature" />
|
923
|
+
</xsd:sequence>
|
924
|
+
</xsd:complexType>
|
925
|
+
<xsd:complexType name="TokenPaymentRequest">
|
926
|
+
<xsd:sequence>
|
927
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
928
|
+
<xsd:group ref="paymentKey" />
|
929
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
930
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
931
|
+
<xsd:element name="amount" type="Amount" />
|
932
|
+
<xsd:element name="currencyCode" type="CurrencyCode" />
|
933
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
934
|
+
<xsd:element name="subMerchantData" minOccurs="0" maxOccurs="1" type="SubMerchantData" />
|
935
|
+
<xsd:element name="tokenData" type="TokenData" />
|
936
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
937
|
+
<xsd:element name="altTerminalData" minOccurs="0" maxOccurs="1" type="AltTerminalData" />
|
938
|
+
<xsd:element name="signature" type="Signature" />
|
939
|
+
</xsd:sequence>
|
940
|
+
</xsd:complexType>
|
941
|
+
<xsd:complexType name="TokenPaymentResponse">
|
942
|
+
<xsd:sequence>
|
943
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
944
|
+
<xsd:element name="authCode" type="AuthCode" />
|
945
|
+
<xsd:element name="tokenData" type="TokenData" />
|
946
|
+
<xsd:element name="signature" type="Signature" />
|
947
|
+
</xsd:sequence>
|
948
|
+
</xsd:complexType>
|
949
|
+
<xsd:complexType name="AltTerminalData">
|
950
|
+
<xsd:sequence>
|
951
|
+
<xsd:element name="terminalId" minOccurs="0">
|
952
|
+
<xsd:simpleType>
|
953
|
+
<xsd:restriction base="xsd:string">
|
954
|
+
<xsd:minLength value="1" />
|
955
|
+
<xsd:maxLength value="8" />
|
956
|
+
<xsd:pattern value="[ -~]*" />
|
957
|
+
</xsd:restriction>
|
958
|
+
</xsd:simpleType>
|
959
|
+
</xsd:element>
|
960
|
+
<xsd:element name="terminalOwner" minOccurs="0">
|
961
|
+
<xsd:simpleType>
|
962
|
+
<xsd:restriction base="xsd:string">
|
963
|
+
<xsd:minLength value="1" />
|
964
|
+
<xsd:maxLength value="22" />
|
965
|
+
<xsd:pattern value="[ -~]*" />
|
966
|
+
</xsd:restriction>
|
967
|
+
</xsd:simpleType>
|
968
|
+
</xsd:element>
|
969
|
+
<xsd:element name="terminalCity" minOccurs="0">
|
970
|
+
<xsd:simpleType>
|
971
|
+
<xsd:restriction base="xsd:string">
|
972
|
+
<xsd:minLength value="1" />
|
973
|
+
<xsd:maxLength value="13" />
|
974
|
+
<xsd:pattern value="[ -~]*" />
|
975
|
+
</xsd:restriction>
|
976
|
+
</xsd:simpleType>
|
977
|
+
</xsd:element>
|
978
|
+
</xsd:sequence>
|
979
|
+
</xsd:complexType>
|
980
|
+
<xsd:complexType name="SubMerchantData">
|
981
|
+
<xsd:sequence>
|
982
|
+
<xsd:element name="merchantId">
|
983
|
+
<xsd:simpleType>
|
984
|
+
<xsd:restriction base="xsd:string">
|
985
|
+
<xsd:minLength value="1" />
|
986
|
+
<xsd:maxLength value="15" />
|
987
|
+
<xsd:pattern value="[ -~]*" />
|
988
|
+
</xsd:restriction>
|
989
|
+
</xsd:simpleType>
|
990
|
+
</xsd:element>
|
991
|
+
<!-- MCC code -->
|
992
|
+
<xsd:element name="merchantType">
|
993
|
+
<xsd:simpleType>
|
994
|
+
<xsd:restriction base="xsd:string">
|
995
|
+
<xsd:length value="4" />
|
996
|
+
<xsd:pattern value="\d{4}" />
|
997
|
+
</xsd:restriction>
|
998
|
+
</xsd:simpleType>
|
999
|
+
</xsd:element>
|
1000
|
+
<xsd:element name="merchantName">
|
1001
|
+
<xsd:simpleType>
|
1002
|
+
<xsd:restriction base="xsd:string">
|
1003
|
+
<xsd:minLength value="1" />
|
1004
|
+
<xsd:maxLength value="22" />
|
1005
|
+
<xsd:pattern value="[ -~]*" />
|
1006
|
+
</xsd:restriction>
|
1007
|
+
</xsd:simpleType>
|
1008
|
+
</xsd:element>
|
1009
|
+
<xsd:element name="merchantStreet">
|
1010
|
+
<xsd:simpleType>
|
1011
|
+
<xsd:restriction base="xsd:string">
|
1012
|
+
<xsd:minLength value="1" />
|
1013
|
+
<xsd:maxLength value="25" />
|
1014
|
+
<xsd:pattern value="[ -~]*" />
|
1015
|
+
</xsd:restriction>
|
1016
|
+
</xsd:simpleType>
|
1017
|
+
</xsd:element>
|
1018
|
+
<xsd:element name="merchantCity">
|
1019
|
+
<xsd:simpleType>
|
1020
|
+
<xsd:restriction base="xsd:string">
|
1021
|
+
<xsd:minLength value="1" />
|
1022
|
+
<xsd:maxLength value="13" />
|
1023
|
+
<xsd:pattern value="[ -~]*" />
|
1024
|
+
</xsd:restriction>
|
1025
|
+
</xsd:simpleType>
|
1026
|
+
</xsd:element>
|
1027
|
+
<xsd:element name="merchantPostalCode">
|
1028
|
+
<xsd:simpleType>
|
1029
|
+
<xsd:restriction base="xsd:string">
|
1030
|
+
<xsd:minLength value="1" />
|
1031
|
+
<xsd:maxLength value="10" />
|
1032
|
+
<xsd:pattern value="[a-zA-Z0-9 ]+" />
|
1033
|
+
</xsd:restriction>
|
1034
|
+
</xsd:simpleType>
|
1035
|
+
</xsd:element>
|
1036
|
+
<xsd:element name="merchantState" minOccurs="0">
|
1037
|
+
<xsd:simpleType>
|
1038
|
+
<xsd:restriction base="xsd:string">
|
1039
|
+
<xsd:pattern value="\w{1,3}" />
|
1040
|
+
</xsd:restriction>
|
1041
|
+
</xsd:simpleType>
|
1042
|
+
</xsd:element>
|
1043
|
+
<!-- ISO 3166-1 Alpha-2 country code -->
|
1044
|
+
<xsd:element name="merchantCountry">
|
1045
|
+
<xsd:simpleType>
|
1046
|
+
<xsd:restriction base="xsd:string">
|
1047
|
+
<xsd:length value="2" />
|
1048
|
+
<xsd:pattern value="[a-zA-Z]{2}" />
|
1049
|
+
</xsd:restriction>
|
1050
|
+
</xsd:simpleType>
|
1051
|
+
</xsd:element>
|
1052
|
+
<!-- Merchant/shop web pages - www.merchant.com -->
|
1053
|
+
<xsd:element name="merchantWeb">
|
1054
|
+
<xsd:simpleType>
|
1055
|
+
<xsd:restriction base="xsd:string">
|
1056
|
+
<xsd:minLength value="1" />
|
1057
|
+
<xsd:maxLength value="25" />
|
1058
|
+
<xsd:pattern value="[ -~]*" />
|
1059
|
+
</xsd:restriction>
|
1060
|
+
</xsd:simpleType>
|
1061
|
+
</xsd:element>
|
1062
|
+
<!-- Merchant's customer support phone -->
|
1063
|
+
<xsd:element name="merchantServiceNumber">
|
1064
|
+
<xsd:simpleType>
|
1065
|
+
<xsd:restriction base="xsd:string">
|
1066
|
+
<xsd:minLength value="1" />
|
1067
|
+
<xsd:maxLength value="13" />
|
1068
|
+
<xsd:pattern value="\d+" />
|
1069
|
+
</xsd:restriction>
|
1070
|
+
</xsd:simpleType>
|
1071
|
+
</xsd:element>
|
1072
|
+
<!-- Merchant MC Assigned ID -->
|
1073
|
+
<xsd:element name="merchantMcAssignedId" minOccurs="0">
|
1074
|
+
<xsd:simpleType>
|
1075
|
+
<xsd:restriction base="xsd:string">
|
1076
|
+
<xsd:minLength value="1" />
|
1077
|
+
<xsd:maxLength value="15" />
|
1078
|
+
<xsd:pattern value="[a-zA-Z0-9]+" />
|
1079
|
+
</xsd:restriction>
|
1080
|
+
</xsd:simpleType>
|
1081
|
+
</xsd:element>
|
1082
|
+
</xsd:sequence>
|
1083
|
+
</xsd:complexType>
|
1084
|
+
|
1085
|
+
|
1086
|
+
<xsd:group name="recPaymentType1">
|
1087
|
+
<xsd:sequence>
|
1088
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1089
|
+
<xsd:group ref="paymentKey" />
|
1090
|
+
<xsd:element name="masterPaymentNumber" type="PaymentNumber" />
|
1091
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
1092
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
1093
|
+
<xsd:element name="amount" type="Amount" minOccurs="0" maxOccurs="1" />
|
1094
|
+
<xsd:element name="currencyCode" type="CurrencyCode" minOccurs="0" maxOccurs="1" />
|
1095
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
1096
|
+
<xsd:element name="subMerchantData" minOccurs="0" maxOccurs="1" type="SubMerchantData" />
|
1097
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
1098
|
+
<xsd:element name="paymentInfo" minOccurs="0" maxOccurs="1" type="PaymentInfo" />
|
1099
|
+
<xsd:element name="shoppingCartInfo" minOccurs="0" maxOccurs="1" type="ShoppingCartInfo" />
|
1100
|
+
<xsd:element name="altTerminalData" minOccurs="0" maxOccurs="1" type="AltTerminalData" />
|
1101
|
+
</xsd:sequence>
|
1102
|
+
</xsd:group>
|
1103
|
+
|
1104
|
+
<xsd:group name="recPaymentType2">
|
1105
|
+
<xsd:sequence>
|
1106
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1107
|
+
<xsd:group ref="paymentKey" />
|
1108
|
+
<xsd:element name="masterPaymentNumber" type="PaymentNumber" />
|
1109
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
1110
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
1111
|
+
<xsd:element name="subscriptionAmount" type="Amount" minOccurs="0" maxOccurs="1" />
|
1112
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
1113
|
+
<xsd:element name="subMerchantData" minOccurs="0" maxOccurs="1" type="SubMerchantData" />
|
1114
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
1115
|
+
<xsd:element name="paymentInfo" minOccurs="0" maxOccurs="1" type="PaymentInfo" />
|
1116
|
+
<xsd:element name="shoppingCartInfo" minOccurs="0" maxOccurs="1" type="ShoppingCartInfo" />
|
1117
|
+
<xsd:element name="altTerminalData" minOccurs="0" maxOccurs="1" type="AltTerminalData" />
|
1118
|
+
</xsd:sequence>
|
1119
|
+
</xsd:group>
|
1120
|
+
|
1121
|
+
<xsd:complexType name="CardOnFilePaymentRequest">
|
1122
|
+
<xsd:sequence>
|
1123
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1124
|
+
<xsd:group ref="paymentKey" />
|
1125
|
+
<xsd:element name="orderNumber" type="OrderNumber" minOccurs="0" maxOccurs="1" />
|
1126
|
+
<xsd:element name="referenceNumber" minOccurs="0" maxOccurs="1" type="ReferenceNumber" />
|
1127
|
+
<xsd:element name="amount" type="Amount" />
|
1128
|
+
<xsd:element name="currencyCode" type="CurrencyCode" />
|
1129
|
+
<xsd:element name="captureFlag" type="CaptureFlag" />
|
1130
|
+
<xsd:element name="subMerchantData" minOccurs="0" maxOccurs="1" type="SubMerchantData" />
|
1131
|
+
<xsd:element name="tokenData" type="TokenData" />
|
1132
|
+
<xsd:element name="cardHolderData" minOccurs="0" maxOccurs="1" type="CardHolderData" />
|
1133
|
+
<xsd:element name="paymentInfo" minOccurs="0" maxOccurs="1" type="PaymentInfo" />
|
1134
|
+
<xsd:element name="shoppingCartInfo" minOccurs="0" maxOccurs="1" type="ShoppingCartInfo" />
|
1135
|
+
<xsd:element name="altTerminalData" minOccurs="0" maxOccurs="1" type="AltTerminalData" />
|
1136
|
+
<xsd:element name="returnUrl" maxOccurs="1">
|
1137
|
+
<xsd:simpleType>
|
1138
|
+
<xsd:restriction base="xsd:anyURI">
|
1139
|
+
<xsd:minLength value="1" />
|
1140
|
+
<xsd:maxLength value="2047" />
|
1141
|
+
</xsd:restriction>
|
1142
|
+
</xsd:simpleType>
|
1143
|
+
</xsd:element>
|
1144
|
+
<xsd:element name="signature" type="Signature" />
|
1145
|
+
</xsd:sequence>
|
1146
|
+
</xsd:complexType>
|
1147
|
+
|
1148
|
+
<xsd:complexType name="UsageBasedSubscriptionPaymentRequest">
|
1149
|
+
<xsd:sequence>
|
1150
|
+
<xsd:group ref="recPaymentType1" />
|
1151
|
+
<xsd:element name="signature" type="Signature" />
|
1152
|
+
</xsd:sequence>
|
1153
|
+
</xsd:complexType>
|
1154
|
+
|
1155
|
+
<xsd:complexType name="RegularSubscriptionPaymentRequest">
|
1156
|
+
<xsd:sequence>
|
1157
|
+
<xsd:group ref="recPaymentType2" />
|
1158
|
+
<xsd:element name="signature" type="Signature" />
|
1159
|
+
</xsd:sequence>
|
1160
|
+
</xsd:complexType>
|
1161
|
+
|
1162
|
+
<xsd:complexType name="PrepaidPaymentRequest">
|
1163
|
+
<xsd:sequence>
|
1164
|
+
<xsd:group ref="recPaymentType2" />
|
1165
|
+
<xsd:element name="signature" type="Signature" />
|
1166
|
+
</xsd:sequence>
|
1167
|
+
</xsd:complexType>
|
1168
|
+
|
1169
|
+
<xsd:complexType name="UsageBasedPaymentResponse">
|
1170
|
+
<xsd:sequence>
|
1171
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1172
|
+
<xsd:element name="authCode" type="AuthCode" />
|
1173
|
+
<xsd:element name="tokenData" type="TokenData" />
|
1174
|
+
<xsd:element name="signature" type="Signature" />
|
1175
|
+
</xsd:sequence>
|
1176
|
+
</xsd:complexType>
|
1177
|
+
|
1178
|
+
<xsd:complexType name="UsageBasedSubscriptionPaymentResponse">
|
1179
|
+
<xsd:sequence>
|
1180
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1181
|
+
<xsd:element name="authCode" type="AuthCode" />
|
1182
|
+
<xsd:element name="signature" type="Signature" />
|
1183
|
+
</xsd:sequence>
|
1184
|
+
</xsd:complexType>
|
1185
|
+
|
1186
|
+
<xsd:complexType name="RegularSubscriptionPaymentResponse">
|
1187
|
+
<xsd:sequence>
|
1188
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1189
|
+
<xsd:element name="authCode" type="AuthCode" />
|
1190
|
+
<xsd:element name="signature" type="Signature" />
|
1191
|
+
</xsd:sequence>
|
1192
|
+
</xsd:complexType>
|
1193
|
+
|
1194
|
+
<xsd:complexType name="PrepaidPaymentResponse">
|
1195
|
+
<xsd:sequence>
|
1196
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1197
|
+
<xsd:element name="authCode" type="AuthCode" />
|
1198
|
+
<xsd:element name="signature" type="Signature" />
|
1199
|
+
</xsd:sequence>
|
1200
|
+
</xsd:complexType>
|
1201
|
+
|
1202
|
+
<xsd:complexType name="CardOnFilePaymentResponse">
|
1203
|
+
<xsd:sequence>
|
1204
|
+
<xsd:element name="messageId" minOccurs="1" maxOccurs="1" type="MessageId" />
|
1205
|
+
<xsd:element name="authCode" type="AuthCode" />
|
1206
|
+
<xsd:element name="tokenData" type="TokenData" />
|
1207
|
+
<xsd:element name="signature" type="Signature" />
|
1208
|
+
</xsd:sequence>
|
1209
|
+
</xsd:complexType>
|
1210
|
+
|
1211
|
+
<xsd:complexType name="PaymentInfo">
|
1212
|
+
<xsd:sequence>
|
1213
|
+
<xsd:element name="transactionType" type="TransactionTypeValue" minOccurs="0" />
|
1214
|
+
<xsd:element name="shippingIndicator" type="ShippingIndicatorValue" minOccurs="0" />
|
1215
|
+
<xsd:element name="preOrderPurchaseInd" type="PreOrderPurchaseIndValue" minOccurs="0" />
|
1216
|
+
<xsd:element name="preOrderDate" type="DateTypeValue" minOccurs="0" />
|
1217
|
+
<xsd:element name="reorderItemsInd" type="ReorderItemsIndValue" minOccurs="0" />
|
1218
|
+
<xsd:element name="deliveryTimeframe" type="DeliveryTimeframeValue" minOccurs="0" />
|
1219
|
+
<xsd:element name="deliveryEmailAddress" type="Email" minOccurs="0" />
|
1220
|
+
<xsd:element name="giftCardCount" type="GiftCardCountValue" minOccurs="0" />
|
1221
|
+
<xsd:element name="giftCardAmount" type="GiftCardAmountValue" minOccurs="0" />
|
1222
|
+
<xsd:element name="giftCardCurrency" type="GiftCardCurrencyValue" minOccurs="0" />
|
1223
|
+
<xsd:element name="recurringExpiry" type="DateTypeValue" minOccurs="0" />
|
1224
|
+
<xsd:element name="recurringFrequency" type="RecurringFrequencyValue" minOccurs="0" />
|
1225
|
+
<xsd:element name="remmitanceInfo1" type="RemmitanceInfoValue" minOccurs="0" />
|
1226
|
+
<xsd:element name="remmitanceInfo2" type="RemmitanceInfoValue" minOccurs="0" />
|
1227
|
+
</xsd:sequence>
|
1228
|
+
</xsd:complexType>
|
1229
|
+
|
1230
|
+
<!-- ShoppingCartItem -->
|
1231
|
+
<xsd:complexType name="ShoppingCartItem">
|
1232
|
+
<xsd:sequence>
|
1233
|
+
<xsd:element name="itemCode" minOccurs="0" maxOccurs="1" type="ItemType" />
|
1234
|
+
<xsd:element name="itemDescription" minOccurs="1" maxOccurs="1">
|
1235
|
+
<xsd:simpleType>
|
1236
|
+
<xsd:restriction base="xsd:string">
|
1237
|
+
<xsd:minLength value="1" />
|
1238
|
+
<xsd:maxLength value="50" />
|
1239
|
+
<xsd:pattern value=".*" />
|
1240
|
+
</xsd:restriction>
|
1241
|
+
</xsd:simpleType>
|
1242
|
+
</xsd:element>
|
1243
|
+
<xsd:element name="itemQuantity" minOccurs="1" maxOccurs="1">
|
1244
|
+
<xsd:simpleType>
|
1245
|
+
<xsd:restriction base="xsd:long">
|
1246
|
+
<xsd:minExclusive value="0" />
|
1247
|
+
<xsd:maxInclusive value="999999999999" />
|
1248
|
+
</xsd:restriction>
|
1249
|
+
</xsd:simpleType>
|
1250
|
+
</xsd:element>
|
1251
|
+
<xsd:element name="itemUnitPrice" minOccurs="1" maxOccurs="1" type="Amount" />
|
1252
|
+
<xsd:element name="itemClass" minOccurs="0" maxOccurs="1" type="ItemType" />
|
1253
|
+
<xsd:element name="itemType" minOccurs="0" maxOccurs="1" type="ItemType" />
|
1254
|
+
<xsd:element name="itemImageUrl" minOccurs="0" maxOccurs="1">
|
1255
|
+
<xsd:simpleType>
|
1256
|
+
<xsd:restriction base="xsd:anyURI">
|
1257
|
+
<xsd:minLength value="1" />
|
1258
|
+
<xsd:maxLength value="2000" />
|
1259
|
+
</xsd:restriction>
|
1260
|
+
</xsd:simpleType>
|
1261
|
+
</xsd:element>
|
1262
|
+
</xsd:sequence>
|
1263
|
+
</xsd:complexType>
|
1264
|
+
|
1265
|
+
<!-- shoppingCartInfo -->
|
1266
|
+
<xsd:complexType name="ShoppingCartInfo">
|
1267
|
+
<xsd:sequence>
|
1268
|
+
<xsd:element name="taxAmount" minOccurs="0" maxOccurs="1" type="Amount" />
|
1269
|
+
<xsd:element name="shippingAmount" minOccurs="0" maxOccurs="1" type="Amount12" />
|
1270
|
+
<xsd:element name="handlingAmount" minOccurs="0" maxOccurs="1" type="Amount12" />
|
1271
|
+
<xsd:element name="cartAmount" minOccurs="0" maxOccurs="1" type="Amount12" />
|
1272
|
+
<xsd:element name="shoppingCartItem" minOccurs="1" maxOccurs="unbounded" type="ShoppingCartItem" />
|
1273
|
+
</xsd:sequence>
|
1274
|
+
</xsd:complexType>
|
1275
|
+
|
1276
|
+
|
1277
|
+
</xsd:schema>
|
1278
|
+
<xsd:schema targetNamespace="http://gpe.cz/pay/pay-ws/proc/v1" elementFormDefault="qualified" xmlns:tns="http://gpe.cz/pay/pay-ws/proc/v1/type" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
1279
|
+
<xsd:import namespace="http://gpe.cz/pay/pay-ws/proc/v1/type" />
|
1280
|
+
<xsd:element name="echo">
|
1281
|
+
<xsd:complexType>
|
1282
|
+
<xsd:sequence />
|
1283
|
+
</xsd:complexType>
|
1284
|
+
</xsd:element>
|
1285
|
+
<xsd:element name="echoResponse">
|
1286
|
+
<xsd:complexType>
|
1287
|
+
<xsd:sequence />
|
1288
|
+
</xsd:complexType>
|
1289
|
+
</xsd:element>
|
1290
|
+
<xsd:element name="echoServiceException" type="tns:EchoFaultDetail" />
|
1291
|
+
<xsd:element name="serviceException" type="tns:FaultDetail" />
|
1292
|
+
<xsd:element name="paymentServiceException" type="tns:PaymentFaultDetail" />
|
1293
|
+
<xsd:element name="cardOnFilePaymentServiceException" type="tns:CardOnFilePaymentFaultDetail" />
|
1294
|
+
<xsd:element name="getPaymentStatus">
|
1295
|
+
<xsd:complexType>
|
1296
|
+
<xsd:sequence>
|
1297
|
+
<xsd:element name="paymentStatusRequest" type="tns:PaymentStatusRequest" />
|
1298
|
+
</xsd:sequence>
|
1299
|
+
</xsd:complexType>
|
1300
|
+
</xsd:element>
|
1301
|
+
<xsd:element name="getPaymentStatusResponse">
|
1302
|
+
<xsd:complexType>
|
1303
|
+
<xsd:sequence>
|
1304
|
+
<xsd:element name="paymentStatusResponse" type="tns:PaymentStatusResponse" />
|
1305
|
+
</xsd:sequence>
|
1306
|
+
</xsd:complexType>
|
1307
|
+
</xsd:element>
|
1308
|
+
<xsd:element name="getMasterPaymentStatus">
|
1309
|
+
<xsd:complexType>
|
1310
|
+
<xsd:sequence>
|
1311
|
+
<xsd:element name="masterPaymentStatusRequest" type="tns:PaymentStatusRequest" />
|
1312
|
+
</xsd:sequence>
|
1313
|
+
</xsd:complexType>
|
1314
|
+
</xsd:element>
|
1315
|
+
<xsd:element name="getMasterPaymentStatusResponse">
|
1316
|
+
<xsd:complexType>
|
1317
|
+
<xsd:sequence>
|
1318
|
+
<xsd:element name="masterPaymentStatusResponse" type="tns:MasterPaymentStatusResponse" />
|
1319
|
+
</xsd:sequence>
|
1320
|
+
</xsd:complexType>
|
1321
|
+
</xsd:element>
|
1322
|
+
<xsd:element name="processMasterPaymentRevoke">
|
1323
|
+
<xsd:complexType>
|
1324
|
+
<xsd:sequence>
|
1325
|
+
<xsd:element name="masterPaymentStatusRequest" type="tns:PaymentStatusRequest" />
|
1326
|
+
</xsd:sequence>
|
1327
|
+
</xsd:complexType>
|
1328
|
+
</xsd:element>
|
1329
|
+
<xsd:element name="processMasterPaymentRevokeResponse">
|
1330
|
+
<xsd:complexType>
|
1331
|
+
<xsd:sequence>
|
1332
|
+
<xsd:element name="masterPaymentStatusResponse" type="tns:MasterPaymentStatusResponse" />
|
1333
|
+
</xsd:sequence>
|
1334
|
+
</xsd:complexType>
|
1335
|
+
</xsd:element>
|
1336
|
+
<xsd:element name="revokePaymentLink">
|
1337
|
+
<xsd:complexType>
|
1338
|
+
<xsd:sequence>
|
1339
|
+
<xsd:element name="revokePaymentLinkRequest" type="tns:PaymentStatusRequest" />
|
1340
|
+
</xsd:sequence>
|
1341
|
+
</xsd:complexType>
|
1342
|
+
</xsd:element>
|
1343
|
+
<xsd:element name="revokePaymentLinkResponse">
|
1344
|
+
<xsd:complexType>
|
1345
|
+
<xsd:sequence>
|
1346
|
+
<xsd:element name="revokePaymentLinkResponse" type="tns:RevokePaymentLinkResponse" />
|
1347
|
+
</xsd:sequence>
|
1348
|
+
</xsd:complexType>
|
1349
|
+
</xsd:element>
|
1350
|
+
<xsd:element name="getPaymentDetail">
|
1351
|
+
<xsd:complexType>
|
1352
|
+
<xsd:sequence>
|
1353
|
+
<xsd:element name="paymentDetailRequest" type="tns:PaymentStatusRequest" />
|
1354
|
+
</xsd:sequence>
|
1355
|
+
</xsd:complexType>
|
1356
|
+
</xsd:element>
|
1357
|
+
<xsd:element name="getPaymentDetailResponse">
|
1358
|
+
<xsd:complexType>
|
1359
|
+
<xsd:sequence>
|
1360
|
+
<xsd:element name="paymentDetailResponse" type="tns:PaymentDetailResponse" />
|
1361
|
+
</xsd:sequence>
|
1362
|
+
</xsd:complexType>
|
1363
|
+
</xsd:element>
|
1364
|
+
<xsd:element name="processAuthorizationReverse">
|
1365
|
+
<xsd:complexType>
|
1366
|
+
<xsd:sequence>
|
1367
|
+
<xsd:element name="authorizationReverseRequest" type="tns:AuthorizationReverseRequest" />
|
1368
|
+
</xsd:sequence>
|
1369
|
+
</xsd:complexType>
|
1370
|
+
</xsd:element>
|
1371
|
+
<xsd:element name="processAuthorizationReverseResponse">
|
1372
|
+
<xsd:complexType>
|
1373
|
+
<xsd:sequence>
|
1374
|
+
<xsd:element name="authorizationReverseResponse" type="tns:AuthorizationReverseResponse" />
|
1375
|
+
</xsd:sequence>
|
1376
|
+
</xsd:complexType>
|
1377
|
+
</xsd:element>
|
1378
|
+
<xsd:element name="processBatchClose">
|
1379
|
+
<xsd:complexType>
|
1380
|
+
<xsd:sequence>
|
1381
|
+
<xsd:element name="batchClose" type="tns:BatchCloseRequest" />
|
1382
|
+
</xsd:sequence>
|
1383
|
+
</xsd:complexType>
|
1384
|
+
</xsd:element>
|
1385
|
+
<xsd:element name="processBatchCloseResponse">
|
1386
|
+
<xsd:complexType>
|
1387
|
+
<xsd:sequence>
|
1388
|
+
<xsd:element name="batchCloseResponse" type="tns:BatchCloseResponse" />
|
1389
|
+
</xsd:sequence>
|
1390
|
+
</xsd:complexType>
|
1391
|
+
</xsd:element>
|
1392
|
+
<xsd:element name="processRefund">
|
1393
|
+
<xsd:complexType>
|
1394
|
+
<xsd:sequence>
|
1395
|
+
<xsd:element name="refundRequest" type="tns:RefundRequest" />
|
1396
|
+
</xsd:sequence>
|
1397
|
+
</xsd:complexType>
|
1398
|
+
</xsd:element>
|
1399
|
+
<xsd:element name="processRefundResponse">
|
1400
|
+
<xsd:complexType>
|
1401
|
+
<xsd:sequence>
|
1402
|
+
<xsd:element name="refundRequestResponse" type="tns:RefundResponse" />
|
1403
|
+
</xsd:sequence>
|
1404
|
+
</xsd:complexType>
|
1405
|
+
</xsd:element>
|
1406
|
+
<xsd:element name="processRefundReverse">
|
1407
|
+
<xsd:complexType>
|
1408
|
+
<xsd:sequence>
|
1409
|
+
<xsd:element name="refundReverseRequest" type="tns:RefundReverseRequest" />
|
1410
|
+
</xsd:sequence>
|
1411
|
+
</xsd:complexType>
|
1412
|
+
</xsd:element>
|
1413
|
+
<xsd:element name="processRefundReverseResponse">
|
1414
|
+
<xsd:complexType>
|
1415
|
+
<xsd:sequence>
|
1416
|
+
<xsd:element name="refundReverseResponse" type="tns:RefundReverseResponse" />
|
1417
|
+
</xsd:sequence>
|
1418
|
+
</xsd:complexType>
|
1419
|
+
</xsd:element>
|
1420
|
+
<xsd:element name="processPaymentDelete">
|
1421
|
+
<xsd:complexType>
|
1422
|
+
<xsd:sequence>
|
1423
|
+
<xsd:element name="paymentDeleteRequest" type="tns:PaymentDeleteRequest" />
|
1424
|
+
</xsd:sequence>
|
1425
|
+
</xsd:complexType>
|
1426
|
+
</xsd:element>
|
1427
|
+
<xsd:element name="processPaymentDeleteResponse">
|
1428
|
+
<xsd:complexType>
|
1429
|
+
<xsd:sequence>
|
1430
|
+
<xsd:element name="paymentDeleteResponse" type="tns:PaymentDeleteResponse" />
|
1431
|
+
</xsd:sequence>
|
1432
|
+
</xsd:complexType>
|
1433
|
+
</xsd:element>
|
1434
|
+
<xsd:element name="processCapture">
|
1435
|
+
<xsd:complexType>
|
1436
|
+
<xsd:sequence>
|
1437
|
+
<xsd:element name="captureRequest" type="tns:CaptureRequest" />
|
1438
|
+
</xsd:sequence>
|
1439
|
+
</xsd:complexType>
|
1440
|
+
</xsd:element>
|
1441
|
+
<xsd:element name="processCaptureResponse">
|
1442
|
+
<xsd:complexType>
|
1443
|
+
<xsd:sequence>
|
1444
|
+
<xsd:element name="captureResponse" type="tns:CaptureResponse" />
|
1445
|
+
</xsd:sequence>
|
1446
|
+
</xsd:complexType>
|
1447
|
+
</xsd:element>
|
1448
|
+
<xsd:element name="processCaptureReverse">
|
1449
|
+
<xsd:complexType>
|
1450
|
+
<xsd:sequence>
|
1451
|
+
<xsd:element name="captureReverseRequest" type="tns:CaptureReverseRequest" />
|
1452
|
+
</xsd:sequence>
|
1453
|
+
</xsd:complexType>
|
1454
|
+
</xsd:element>
|
1455
|
+
<xsd:element name="processCaptureReverseResponse">
|
1456
|
+
<xsd:complexType>
|
1457
|
+
<xsd:sequence>
|
1458
|
+
<xsd:element name="captureReverseResponse" type="tns:CaptureReverseResponse" />
|
1459
|
+
</xsd:sequence>
|
1460
|
+
</xsd:complexType>
|
1461
|
+
</xsd:element>
|
1462
|
+
<xsd:element name="processPaymentClose">
|
1463
|
+
<xsd:complexType>
|
1464
|
+
<xsd:sequence>
|
1465
|
+
<xsd:element name="paymentCloseRequest" type="tns:PaymentCloseRequest" />
|
1466
|
+
</xsd:sequence>
|
1467
|
+
</xsd:complexType>
|
1468
|
+
</xsd:element>
|
1469
|
+
<xsd:element name="processPaymentCloseResponse">
|
1470
|
+
<xsd:complexType>
|
1471
|
+
<xsd:sequence>
|
1472
|
+
<xsd:element name="paymentCloseResponse" type="tns:PaymentCloseResponse" />
|
1473
|
+
</xsd:sequence>
|
1474
|
+
</xsd:complexType>
|
1475
|
+
</xsd:element>
|
1476
|
+
<xsd:element name="processRecurringPayment">
|
1477
|
+
<xsd:complexType>
|
1478
|
+
<xsd:sequence>
|
1479
|
+
<xsd:element name="recurringPaymentRequest" type="tns:RecurringPaymentRequest" />
|
1480
|
+
</xsd:sequence>
|
1481
|
+
</xsd:complexType>
|
1482
|
+
</xsd:element>
|
1483
|
+
<xsd:element name="processRecurringPaymentResponse">
|
1484
|
+
<xsd:complexType>
|
1485
|
+
<xsd:sequence>
|
1486
|
+
<xsd:element name="recurringPaymentResponse" type="tns:RecurringPaymentResponse" />
|
1487
|
+
</xsd:sequence>
|
1488
|
+
</xsd:complexType>
|
1489
|
+
</xsd:element>
|
1490
|
+
|
1491
|
+
|
1492
|
+
<xsd:element name="processUsageBasedPayment">
|
1493
|
+
<xsd:complexType>
|
1494
|
+
<xsd:sequence>
|
1495
|
+
<xsd:element name="usageBasedPaymentRequest" type="tns:CardOnFilePaymentRequest" />
|
1496
|
+
</xsd:sequence>
|
1497
|
+
</xsd:complexType>
|
1498
|
+
</xsd:element>
|
1499
|
+
<xsd:element name="processUsageBasedPaymentResponse">
|
1500
|
+
<xsd:complexType>
|
1501
|
+
<xsd:sequence>
|
1502
|
+
<xsd:element name="usageBasedPaymentResponse" type="tns:UsageBasedPaymentResponse" />
|
1503
|
+
</xsd:sequence>
|
1504
|
+
</xsd:complexType>
|
1505
|
+
</xsd:element>
|
1506
|
+
<xsd:element name="processRegularSubscriptionPayment">
|
1507
|
+
<xsd:complexType>
|
1508
|
+
<xsd:sequence>
|
1509
|
+
<xsd:element name="regularSubscriptionPaymentRequest" type="tns:RegularSubscriptionPaymentRequest" />
|
1510
|
+
</xsd:sequence>
|
1511
|
+
</xsd:complexType>
|
1512
|
+
</xsd:element>
|
1513
|
+
<xsd:element name="processRegularSubscriptionPaymentResponse">
|
1514
|
+
<xsd:complexType>
|
1515
|
+
<xsd:sequence>
|
1516
|
+
<xsd:element name="regularSubscriptionPaymentResponse" type="tns:RegularSubscriptionPaymentResponse" />
|
1517
|
+
</xsd:sequence>
|
1518
|
+
</xsd:complexType>
|
1519
|
+
</xsd:element>
|
1520
|
+
<xsd:element name="processUsageBasedSubscriptionPayment">
|
1521
|
+
<xsd:complexType>
|
1522
|
+
<xsd:sequence>
|
1523
|
+
<xsd:element name="usageBasedSubscriptionPaymentRequest" type="tns:UsageBasedSubscriptionPaymentRequest" />
|
1524
|
+
</xsd:sequence>
|
1525
|
+
</xsd:complexType>
|
1526
|
+
</xsd:element>
|
1527
|
+
<xsd:element name="processUsageBasedSubscriptionPaymentResponse">
|
1528
|
+
<xsd:complexType>
|
1529
|
+
<xsd:sequence>
|
1530
|
+
<xsd:element name="usageBasedSubscriptionPaymentResponse" type="tns:UsageBasedSubscriptionPaymentResponse" />
|
1531
|
+
</xsd:sequence>
|
1532
|
+
</xsd:complexType>
|
1533
|
+
</xsd:element>
|
1534
|
+
<xsd:element name="processPrepaidPayment">
|
1535
|
+
<xsd:complexType>
|
1536
|
+
<xsd:sequence>
|
1537
|
+
<xsd:element name="prepaidPaymentRequest" type="tns:PrepaidPaymentRequest" />
|
1538
|
+
</xsd:sequence>
|
1539
|
+
</xsd:complexType>
|
1540
|
+
</xsd:element>
|
1541
|
+
<xsd:element name="processPrepaidPaymentResponse">
|
1542
|
+
<xsd:complexType>
|
1543
|
+
<xsd:sequence>
|
1544
|
+
<xsd:element name="prepaidPaymentResponse" type="tns:PrepaidPaymentResponse" />
|
1545
|
+
</xsd:sequence>
|
1546
|
+
</xsd:complexType>
|
1547
|
+
</xsd:element>
|
1548
|
+
<xsd:element name="processCardOnFilePayment">
|
1549
|
+
<xsd:complexType>
|
1550
|
+
<xsd:sequence>
|
1551
|
+
<xsd:element name="cardOnFilePaymentRequest" type="tns:CardOnFilePaymentRequest" />
|
1552
|
+
</xsd:sequence>
|
1553
|
+
</xsd:complexType>
|
1554
|
+
</xsd:element>
|
1555
|
+
<xsd:element name="processCardOnFilePaymentResponse">
|
1556
|
+
<xsd:complexType>
|
1557
|
+
<xsd:sequence>
|
1558
|
+
<xsd:element name="cardOnFilePaymentResponse" type="tns:CardOnFilePaymentResponse" />
|
1559
|
+
</xsd:sequence>
|
1560
|
+
</xsd:complexType>
|
1561
|
+
</xsd:element>
|
1562
|
+
|
1563
|
+
|
1564
|
+
<xsd:element name="createPaymentLink">
|
1565
|
+
<xsd:complexType>
|
1566
|
+
<xsd:sequence>
|
1567
|
+
<xsd:element name="paymentLinkRequest" type="tns:PaymentLinkRequest" />
|
1568
|
+
</xsd:sequence>
|
1569
|
+
</xsd:complexType>
|
1570
|
+
</xsd:element>
|
1571
|
+
<xsd:element name="createPaymentLinkResponse">
|
1572
|
+
<xsd:complexType>
|
1573
|
+
<xsd:sequence>
|
1574
|
+
<xsd:element name="paymentLinkResponse" type="tns:PaymentLinkResponse" />
|
1575
|
+
</xsd:sequence>
|
1576
|
+
</xsd:complexType>
|
1577
|
+
</xsd:element>
|
1578
|
+
<xsd:element name="mpsPreCheckout">
|
1579
|
+
<xsd:complexType>
|
1580
|
+
<xsd:sequence>
|
1581
|
+
<xsd:element name="mpsPreCheckoutRequest" type="tns:MpsPreCheckoutRequest" />
|
1582
|
+
</xsd:sequence>
|
1583
|
+
</xsd:complexType>
|
1584
|
+
</xsd:element>
|
1585
|
+
<xsd:element name="mpsPreCheckoutResponse">
|
1586
|
+
<xsd:complexType>
|
1587
|
+
<xsd:sequence>
|
1588
|
+
<xsd:element name="mpsPreCheckoutResponse" type="tns:MpsPreCheckoutResponse" />
|
1589
|
+
</xsd:sequence>
|
1590
|
+
</xsd:complexType>
|
1591
|
+
</xsd:element>
|
1592
|
+
<xsd:element name="mpsExpressCheckout">
|
1593
|
+
<xsd:complexType>
|
1594
|
+
<xsd:sequence>
|
1595
|
+
<xsd:element name="mpsExpressCheckoutRequest" type="tns:MpsExpressCheckoutRequest" />
|
1596
|
+
</xsd:sequence>
|
1597
|
+
</xsd:complexType>
|
1598
|
+
</xsd:element>
|
1599
|
+
<xsd:element name="mpsExpressCheckoutResponse">
|
1600
|
+
<xsd:complexType>
|
1601
|
+
<xsd:sequence>
|
1602
|
+
<xsd:element name="mpsExpressCheckoutResponse" type="tns:MpsExpressCheckoutResponse" />
|
1603
|
+
</xsd:sequence>
|
1604
|
+
</xsd:complexType>
|
1605
|
+
</xsd:element>
|
1606
|
+
<xsd:element name="resolvePaymentStatus">
|
1607
|
+
<xsd:complexType>
|
1608
|
+
<xsd:sequence>
|
1609
|
+
<xsd:element name="resolvePaymentStatusRequest" type="tns:ResolvePaymentStatusRequest" />
|
1610
|
+
</xsd:sequence>
|
1611
|
+
</xsd:complexType>
|
1612
|
+
</xsd:element>
|
1613
|
+
<xsd:element name="resolvePaymentStatusResponse">
|
1614
|
+
<xsd:complexType>
|
1615
|
+
<xsd:sequence>
|
1616
|
+
<xsd:element name="paymentStatusResponse" type="tns:PaymentStatusResponse" />
|
1617
|
+
</xsd:sequence>
|
1618
|
+
</xsd:complexType>
|
1619
|
+
</xsd:element>
|
1620
|
+
<xsd:element name="getTokenStatus">
|
1621
|
+
<xsd:complexType>
|
1622
|
+
<xsd:sequence>
|
1623
|
+
<xsd:element name="tokenStatusRequest" type="tns:TokenStatusRequest" />
|
1624
|
+
</xsd:sequence>
|
1625
|
+
</xsd:complexType>
|
1626
|
+
</xsd:element>
|
1627
|
+
<xsd:element name="getTokenStatusResponse">
|
1628
|
+
<xsd:complexType>
|
1629
|
+
<xsd:sequence>
|
1630
|
+
<xsd:element name="tokenStatusResponse" type="tns:TokenStatusResponse" />
|
1631
|
+
</xsd:sequence>
|
1632
|
+
</xsd:complexType>
|
1633
|
+
</xsd:element>
|
1634
|
+
<xsd:element name="processTokenRevoke">
|
1635
|
+
<xsd:complexType>
|
1636
|
+
<xsd:sequence>
|
1637
|
+
<xsd:element name="tokenRevokeRequest" type="tns:TokenRevokeRequest" />
|
1638
|
+
</xsd:sequence>
|
1639
|
+
</xsd:complexType>
|
1640
|
+
</xsd:element>
|
1641
|
+
<xsd:element name="processTokenRevokeResponse">
|
1642
|
+
<xsd:complexType>
|
1643
|
+
<xsd:sequence>
|
1644
|
+
<xsd:element name="tokenRevokeResponse" type="tns:TokenRevokeResponse" />
|
1645
|
+
</xsd:sequence>
|
1646
|
+
</xsd:complexType>
|
1647
|
+
</xsd:element>
|
1648
|
+
<xsd:element name="processTokenPayment">
|
1649
|
+
<xsd:complexType>
|
1650
|
+
<xsd:sequence>
|
1651
|
+
<xsd:element name="tokenPaymentRequest" type="tns:TokenPaymentRequest" />
|
1652
|
+
</xsd:sequence>
|
1653
|
+
</xsd:complexType>
|
1654
|
+
</xsd:element>
|
1655
|
+
<xsd:element name="processTokenPaymentResponse">
|
1656
|
+
<xsd:complexType>
|
1657
|
+
<xsd:sequence>
|
1658
|
+
<xsd:element name="tokenPaymentResponse" type="tns:TokenPaymentResponse" />
|
1659
|
+
</xsd:sequence>
|
1660
|
+
</xsd:complexType>
|
1661
|
+
</xsd:element>
|
1662
|
+
</xsd:schema>
|
1663
|
+
</wsdl:types>
|
1664
|
+
<wsdl:message name="echoServiceException">
|
1665
|
+
<wsdl:part name="parameters" element="ns:echoServiceException" />
|
1666
|
+
</wsdl:message>
|
1667
|
+
<wsdl:message name="serviceException">
|
1668
|
+
<wsdl:part name="parameters" element="ns:serviceException" />
|
1669
|
+
</wsdl:message>
|
1670
|
+
<wsdl:message name="paymentServiceException">
|
1671
|
+
<wsdl:part name="parameters" element="ns:paymentServiceException" />
|
1672
|
+
</wsdl:message>
|
1673
|
+
<wsdl:message name="cardOnFilePaymentServiceException">
|
1674
|
+
<wsdl:part name="parameters" element="ns:cardOnFilePaymentServiceException" />
|
1675
|
+
</wsdl:message>
|
1676
|
+
<wsdl:message name="echoRequest">
|
1677
|
+
<wsdl:part element="ns:echo" name="parameters">
|
1678
|
+
</wsdl:part>
|
1679
|
+
</wsdl:message>
|
1680
|
+
<wsdl:message name="echoResponse">
|
1681
|
+
<wsdl:part element="ns:echoResponse" name="parameters">
|
1682
|
+
</wsdl:part>
|
1683
|
+
</wsdl:message>
|
1684
|
+
<wsdl:message name="getPaymentStatusRequest">
|
1685
|
+
<wsdl:part element="ns:getPaymentStatus" name="parameters">
|
1686
|
+
</wsdl:part>
|
1687
|
+
</wsdl:message>
|
1688
|
+
<wsdl:message name="getPaymentStatusResponse">
|
1689
|
+
<wsdl:part element="ns:getPaymentStatusResponse" name="parameters">
|
1690
|
+
</wsdl:part>
|
1691
|
+
</wsdl:message>
|
1692
|
+
<wsdl:message name="getMasterPaymentStatusRequest">
|
1693
|
+
<wsdl:part element="ns:getMasterPaymentStatus" name="parameters">
|
1694
|
+
</wsdl:part>
|
1695
|
+
</wsdl:message>
|
1696
|
+
<wsdl:message name="getMasterPaymentStatusResponse">
|
1697
|
+
<wsdl:part element="ns:getMasterPaymentStatusResponse" name="parameters">
|
1698
|
+
</wsdl:part>
|
1699
|
+
</wsdl:message>
|
1700
|
+
<wsdl:message name="processMasterPaymentRevokeRequest">
|
1701
|
+
<wsdl:part element="ns:processMasterPaymentRevoke" name="parameters">
|
1702
|
+
</wsdl:part>
|
1703
|
+
</wsdl:message>
|
1704
|
+
<wsdl:message name="processMasterPaymentRevokeResponse">
|
1705
|
+
<wsdl:part element="ns:processMasterPaymentRevokeResponse" name="parameters">
|
1706
|
+
</wsdl:part>
|
1707
|
+
</wsdl:message>
|
1708
|
+
<wsdl:message name="revokePaymentLinkRequest">
|
1709
|
+
<wsdl:part element="ns:revokePaymentLink" name="parameters">
|
1710
|
+
</wsdl:part>
|
1711
|
+
</wsdl:message>
|
1712
|
+
<wsdl:message name="revokePaymentLinkResponse">
|
1713
|
+
<wsdl:part element="ns:revokePaymentLinkResponse" name="parameters">
|
1714
|
+
</wsdl:part>
|
1715
|
+
</wsdl:message>
|
1716
|
+
<wsdl:message name="getPaymentDetailRequest">
|
1717
|
+
<wsdl:part element="ns:getPaymentDetail" name="parameters">
|
1718
|
+
</wsdl:part>
|
1719
|
+
</wsdl:message>
|
1720
|
+
<wsdl:message name="getPaymentDetailResponse">
|
1721
|
+
<wsdl:part element="ns:getPaymentDetailResponse" name="parameters">
|
1722
|
+
</wsdl:part>
|
1723
|
+
</wsdl:message>
|
1724
|
+
<wsdl:message name="processAuthorizationReverseRequest">
|
1725
|
+
<wsdl:part element="ns:processAuthorizationReverse" name="parameters">
|
1726
|
+
</wsdl:part>
|
1727
|
+
</wsdl:message>
|
1728
|
+
<wsdl:message name="processAuthorizationReverseResponse">
|
1729
|
+
<wsdl:part element="ns:processAuthorizationReverseResponse" name="parameters">
|
1730
|
+
</wsdl:part>
|
1731
|
+
</wsdl:message>
|
1732
|
+
<wsdl:message name="processBatchCloseRequest">
|
1733
|
+
<wsdl:part element="ns:processBatchClose" name="parameters">
|
1734
|
+
</wsdl:part>
|
1735
|
+
</wsdl:message>
|
1736
|
+
<wsdl:message name="processBatchCloseResponse">
|
1737
|
+
<wsdl:part element="ns:processBatchCloseResponse" name="parameters">
|
1738
|
+
</wsdl:part>
|
1739
|
+
</wsdl:message>
|
1740
|
+
<wsdl:message name="processRefundRequest">
|
1741
|
+
<wsdl:part element="ns:processRefund" name="parameters">
|
1742
|
+
</wsdl:part>
|
1743
|
+
</wsdl:message>
|
1744
|
+
<wsdl:message name="processRefundResponse">
|
1745
|
+
<wsdl:part element="ns:processRefundResponse" name="parameters">
|
1746
|
+
</wsdl:part>
|
1747
|
+
</wsdl:message>
|
1748
|
+
<wsdl:message name="processRefundReverseRequest">
|
1749
|
+
<wsdl:part element="ns:processRefundReverse" name="parameters">
|
1750
|
+
</wsdl:part>
|
1751
|
+
</wsdl:message>
|
1752
|
+
<wsdl:message name="processRefundReverseResponse">
|
1753
|
+
<wsdl:part element="ns:processRefundReverseResponse" name="parameters">
|
1754
|
+
</wsdl:part>
|
1755
|
+
</wsdl:message>
|
1756
|
+
<wsdl:message name="processPaymentDeleteRequest">
|
1757
|
+
<wsdl:part element="ns:processPaymentDelete" name="parameters">
|
1758
|
+
</wsdl:part>
|
1759
|
+
</wsdl:message>
|
1760
|
+
<wsdl:message name="processPaymentDeleteResponse">
|
1761
|
+
<wsdl:part element="ns:processPaymentDeleteResponse" name="parameters">
|
1762
|
+
</wsdl:part>
|
1763
|
+
</wsdl:message>
|
1764
|
+
<wsdl:message name="processCaptureRequest">
|
1765
|
+
<wsdl:part element="ns:processCapture" name="parameters">
|
1766
|
+
</wsdl:part>
|
1767
|
+
</wsdl:message>
|
1768
|
+
<wsdl:message name="processCaptureResponse">
|
1769
|
+
<wsdl:part element="ns:processCaptureResponse" name="parameters">
|
1770
|
+
</wsdl:part>
|
1771
|
+
</wsdl:message>
|
1772
|
+
<wsdl:message name="processCaptureReverseRequest">
|
1773
|
+
<wsdl:part element="ns:processCaptureReverse" name="parameters">
|
1774
|
+
</wsdl:part>
|
1775
|
+
</wsdl:message>
|
1776
|
+
<wsdl:message name="processCaptureReverseResponse">
|
1777
|
+
<wsdl:part element="ns:processCaptureReverseResponse" name="parameters">
|
1778
|
+
</wsdl:part>
|
1779
|
+
</wsdl:message>
|
1780
|
+
<wsdl:message name="processPaymentCloseRequest">
|
1781
|
+
<wsdl:part element="ns:processPaymentClose" name="parameters">
|
1782
|
+
</wsdl:part>
|
1783
|
+
</wsdl:message>
|
1784
|
+
<wsdl:message name="processPaymentCloseResponse">
|
1785
|
+
<wsdl:part element="ns:processPaymentCloseResponse" name="parameters">
|
1786
|
+
</wsdl:part>
|
1787
|
+
</wsdl:message>
|
1788
|
+
<wsdl:message name="processRecurringPaymentRequest">
|
1789
|
+
<wsdl:part element="ns:processRecurringPayment" name="parameters">
|
1790
|
+
</wsdl:part>
|
1791
|
+
</wsdl:message>
|
1792
|
+
<wsdl:message name="processRecurringPaymentResponse">
|
1793
|
+
<wsdl:part element="ns:processRecurringPaymentResponse" name="parameters">
|
1794
|
+
</wsdl:part>
|
1795
|
+
</wsdl:message>
|
1796
|
+
|
1797
|
+
|
1798
|
+
<wsdl:message name="processUsageBasedPaymentRequest">
|
1799
|
+
<wsdl:part element="ns:processUsageBasedPayment" name="parameters">
|
1800
|
+
</wsdl:part>
|
1801
|
+
</wsdl:message>
|
1802
|
+
<wsdl:message name="processUsageBasedPaymentResponse">
|
1803
|
+
<wsdl:part element="ns:processUsageBasedPaymentResponse" name="parameters">
|
1804
|
+
</wsdl:part>
|
1805
|
+
</wsdl:message>
|
1806
|
+
<wsdl:message name="processUsageBasedSubscriptionPaymentRequest">
|
1807
|
+
<wsdl:part element="ns:processUsageBasedSubscriptionPayment" name="parameters">
|
1808
|
+
</wsdl:part>
|
1809
|
+
</wsdl:message>
|
1810
|
+
<wsdl:message name="processUsageBasedSubscriptionPaymentResponse">
|
1811
|
+
<wsdl:part element="ns:processUsageBasedSubscriptionPaymentResponse" name="parameters">
|
1812
|
+
</wsdl:part>
|
1813
|
+
</wsdl:message>
|
1814
|
+
<wsdl:message name="processRegularSubscriptionPaymentRequest">
|
1815
|
+
<wsdl:part element="ns:processRegularSubscriptionPayment" name="parameters">
|
1816
|
+
</wsdl:part>
|
1817
|
+
</wsdl:message>
|
1818
|
+
<wsdl:message name="processRegularSubscriptionPaymentResponse">
|
1819
|
+
<wsdl:part element="ns:processRegularSubscriptionPaymentResponse" name="parameters">
|
1820
|
+
</wsdl:part>
|
1821
|
+
</wsdl:message>
|
1822
|
+
<wsdl:message name="processPrepaidPaymentRequest">
|
1823
|
+
<wsdl:part element="ns:processPrepaidPayment" name="parameters">
|
1824
|
+
</wsdl:part>
|
1825
|
+
</wsdl:message>
|
1826
|
+
<wsdl:message name="processPrepaidPaymentResponse">
|
1827
|
+
<wsdl:part element="ns:processPrepaidPaymentResponse" name="parameters">
|
1828
|
+
</wsdl:part>
|
1829
|
+
</wsdl:message>
|
1830
|
+
<wsdl:message name="processCardOnFilePaymentRequest">
|
1831
|
+
<wsdl:part element="ns:processCardOnFilePayment" name="parameters">
|
1832
|
+
</wsdl:part>
|
1833
|
+
</wsdl:message>
|
1834
|
+
<wsdl:message name="processCardOnFilePaymentResponse">
|
1835
|
+
<wsdl:part element="ns:processCardOnFilePaymentResponse" name="parameters">
|
1836
|
+
</wsdl:part>
|
1837
|
+
</wsdl:message>
|
1838
|
+
|
1839
|
+
<wsdl:message name="createPaymentLinkRequest">
|
1840
|
+
<wsdl:part element="ns:createPaymentLink" name="parameters" />
|
1841
|
+
</wsdl:message>
|
1842
|
+
<wsdl:message name="createPaymentLinkResponse">
|
1843
|
+
<wsdl:part element="ns:createPaymentLinkResponse" name="parameters" />
|
1844
|
+
</wsdl:message>
|
1845
|
+
<wsdl:message name="mpsPreCheckoutRequest">
|
1846
|
+
<wsdl:part element="ns:mpsPreCheckout" name="parameters" />
|
1847
|
+
</wsdl:message>
|
1848
|
+
<wsdl:message name="mpsPreCheckoutResponse">
|
1849
|
+
<wsdl:part element="ns:mpsPreCheckoutResponse" name="parameters" />
|
1850
|
+
</wsdl:message>
|
1851
|
+
<wsdl:message name="mpsExpressCheckoutRequest">
|
1852
|
+
<wsdl:part element="ns:mpsExpressCheckout" name="parameters" />
|
1853
|
+
</wsdl:message>
|
1854
|
+
<wsdl:message name="mpsExpressCheckoutResponse">
|
1855
|
+
<wsdl:part element="ns:mpsExpressCheckoutResponse" name="parameters" />
|
1856
|
+
</wsdl:message>
|
1857
|
+
<wsdl:message name="resolvePaymentStatusRequest">
|
1858
|
+
<wsdl:part element="ns:resolvePaymentStatus" name="parameters" />
|
1859
|
+
</wsdl:message>
|
1860
|
+
<wsdl:message name="resolvePaymentStatusResponse">
|
1861
|
+
<wsdl:part element="ns:resolvePaymentStatusResponse" name="parameters" />
|
1862
|
+
</wsdl:message>
|
1863
|
+
<wsdl:message name="getTokenStatusRequest">
|
1864
|
+
<wsdl:part element="ns:getTokenStatus" name="parameters" />
|
1865
|
+
</wsdl:message>
|
1866
|
+
<wsdl:message name="getTokenStatusResponse">
|
1867
|
+
<wsdl:part element="ns:getTokenStatusResponse" name="parameters" />
|
1868
|
+
</wsdl:message>
|
1869
|
+
<wsdl:message name="processTokenRevokeRequest">
|
1870
|
+
<wsdl:part element="ns:processTokenRevoke" name="parameters" />
|
1871
|
+
</wsdl:message>
|
1872
|
+
<wsdl:message name="processTokenRevokeResponse">
|
1873
|
+
<wsdl:part element="ns:processTokenRevokeResponse" name="parameters" />
|
1874
|
+
</wsdl:message>
|
1875
|
+
<wsdl:message name="processTokenPaymentRequest">
|
1876
|
+
<wsdl:part element="ns:processTokenPayment" name="parameters" />
|
1877
|
+
</wsdl:message>
|
1878
|
+
<wsdl:message name="processTokenPaymentResponse">
|
1879
|
+
<wsdl:part element="ns:processTokenPaymentResponse" name="parameters" />
|
1880
|
+
</wsdl:message>
|
1881
|
+
<wsdl:portType name="PaymentPort">
|
1882
|
+
<wsdl:operation name="echo">
|
1883
|
+
<wsdl:input message="ns:echoRequest" name="echoRequest" />
|
1884
|
+
<wsdl:output message="ns:echoResponse" name="echoResponse" />
|
1885
|
+
<wsdl:fault message="ns:echoServiceException" name="EchoServiceException" />
|
1886
|
+
</wsdl:operation>
|
1887
|
+
<wsdl:operation name="getPaymentStatus">
|
1888
|
+
<wsdl:input message="ns:getPaymentStatusRequest" name="getPaymentStatusRequest" />
|
1889
|
+
<wsdl:output message="ns:getPaymentStatusResponse" name="getPaymentStatusResponse" />
|
1890
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1891
|
+
</wsdl:operation>
|
1892
|
+
<wsdl:operation name="getMasterPaymentStatus">
|
1893
|
+
<wsdl:input message="ns:getMasterPaymentStatusRequest" name="getMasterPaymentStatusRequest" />
|
1894
|
+
<wsdl:output message="ns:getMasterPaymentStatusResponse" name="getMasterPaymentStatusResponse" />
|
1895
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1896
|
+
</wsdl:operation>
|
1897
|
+
<wsdl:operation name="processMasterPaymentRevoke">
|
1898
|
+
<wsdl:input message="ns:processMasterPaymentRevokeRequest" name="processMasterPaymentRevokeRequest" />
|
1899
|
+
<wsdl:output message="ns:processMasterPaymentRevokeResponse" name="processMasterPaymentRevokeResponse" />
|
1900
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1901
|
+
</wsdl:operation>
|
1902
|
+
<wsdl:operation name="revokePaymentLink">
|
1903
|
+
<wsdl:input message="ns:revokePaymentLinkRequest" name="revokePaymentLinkRequest" />
|
1904
|
+
<wsdl:output message="ns:revokePaymentLinkResponse" name="revokePaymentLinkResponse" />
|
1905
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1906
|
+
</wsdl:operation>
|
1907
|
+
<wsdl:operation name="getPaymentDetail">
|
1908
|
+
<wsdl:input message="ns:getPaymentDetailRequest" name="getPaymentDetailRequest" />
|
1909
|
+
<wsdl:output message="ns:getPaymentDetailResponse" name="getPaymentDetailResponse" />
|
1910
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1911
|
+
</wsdl:operation>
|
1912
|
+
<wsdl:operation name="processAuthorizationReverse">
|
1913
|
+
<wsdl:input message="ns:processAuthorizationReverseRequest" name="processAuthorizationReverseRequest" />
|
1914
|
+
<wsdl:output message="ns:processAuthorizationReverseResponse" name="processAuthorizationReverseResponse" />
|
1915
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1916
|
+
</wsdl:operation>
|
1917
|
+
<wsdl:operation name="processBatchClose">
|
1918
|
+
<wsdl:input message="ns:processBatchCloseRequest" name="processBatchCloseRequest" />
|
1919
|
+
<wsdl:output message="ns:processBatchCloseResponse" name="processBatchCloseResponse" />
|
1920
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1921
|
+
</wsdl:operation>
|
1922
|
+
<wsdl:operation name="processRefund">
|
1923
|
+
<wsdl:input message="ns:processRefundRequest" name="processRefundRequest" />
|
1924
|
+
<wsdl:output message="ns:processRefundResponse" name="processRefundResponse" />
|
1925
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1926
|
+
</wsdl:operation>
|
1927
|
+
<wsdl:operation name="processRefundReverse">
|
1928
|
+
<wsdl:input message="ns:processRefundReverseRequest" name="processRefundReverseRequest" />
|
1929
|
+
<wsdl:output message="ns:processRefundReverseResponse" name="processRefundReverseResponse" />
|
1930
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1931
|
+
</wsdl:operation>
|
1932
|
+
<wsdl:operation name="processPaymentDelete">
|
1933
|
+
<wsdl:input message="ns:processPaymentDeleteRequest" name="processPaymentDeleteRequest" />
|
1934
|
+
<wsdl:output message="ns:processPaymentDeleteResponse" name="processPaymentDeleteResponse" />
|
1935
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1936
|
+
</wsdl:operation>
|
1937
|
+
<wsdl:operation name="processCapture">
|
1938
|
+
<wsdl:input message="ns:processCaptureRequest" name="processCaptureRequest" />
|
1939
|
+
<wsdl:output message="ns:processCaptureResponse" name="processCaptureResponse" />
|
1940
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1941
|
+
</wsdl:operation>
|
1942
|
+
<wsdl:operation name="processCaptureReverse">
|
1943
|
+
<wsdl:input message="ns:processCaptureReverseRequest" name="processCaptureReverseRequest" />
|
1944
|
+
<wsdl:output message="ns:processCaptureReverseResponse" name="processCaptureReverseResponse" />
|
1945
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1946
|
+
</wsdl:operation>
|
1947
|
+
<wsdl:operation name="processPaymentClose">
|
1948
|
+
<wsdl:input message="ns:processPaymentCloseRequest" name="processPaymentCloseRequest" />
|
1949
|
+
<wsdl:output message="ns:processPaymentCloseResponse" name="processPaymentCloseResponse" />
|
1950
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1951
|
+
</wsdl:operation>
|
1952
|
+
<wsdl:operation name="processRecurringPayment">
|
1953
|
+
<wsdl:input message="ns:processRecurringPaymentRequest" name="processRecurringPaymentRequest" />
|
1954
|
+
<wsdl:output message="ns:processRecurringPaymentResponse" name="processRecurringPaymentResponse" />
|
1955
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
1956
|
+
</wsdl:operation>
|
1957
|
+
<wsdl:operation name="createPaymentLink">
|
1958
|
+
<wsdl:input message="ns:createPaymentLinkRequest" name="createPaymentLinkRequest" />
|
1959
|
+
<wsdl:output message="ns:createPaymentLinkResponse" name="createPaymentLinkResponse" />
|
1960
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1961
|
+
</wsdl:operation>
|
1962
|
+
|
1963
|
+
<wsdl:operation name="processUsageBasedPayment">
|
1964
|
+
<wsdl:input message="ns:processUsageBasedPaymentRequest" name="processUsageBasedPaymentRequest" />
|
1965
|
+
<wsdl:output message="ns:processUsageBasedPaymentResponse" name="processUsageBasedPaymentResponse" />
|
1966
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
1967
|
+
</wsdl:operation>
|
1968
|
+
<wsdl:operation name="processUsageBasedSubscriptionPayment">
|
1969
|
+
<wsdl:input message="ns:processUsageBasedSubscriptionPaymentRequest" name="processUsageBasedSubscriptionPaymentRequest" />
|
1970
|
+
<wsdl:output message="ns:processUsageBasedSubscriptionPaymentResponse" name="processUsageBasedSubscriptionPaymentResponse" />
|
1971
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
1972
|
+
</wsdl:operation>
|
1973
|
+
<wsdl:operation name="processRegularSubscriptionPayment">
|
1974
|
+
<wsdl:input message="ns:processRegularSubscriptionPaymentRequest" name="processRegularSubscriptionPaymentRequest" />
|
1975
|
+
<wsdl:output message="ns:processRegularSubscriptionPaymentResponse" name="processRegularSubscriptionPaymentResponse" />
|
1976
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
1977
|
+
</wsdl:operation>
|
1978
|
+
<wsdl:operation name="processPrepaidPayment">
|
1979
|
+
<wsdl:input message="ns:processPrepaidPaymentRequest" name="processPrepaidPaymentRequest" />
|
1980
|
+
<wsdl:output message="ns:processPrepaidPaymentResponse" name="processPrepaidPaymentResponse" />
|
1981
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
1982
|
+
</wsdl:operation>
|
1983
|
+
<wsdl:operation name="processCardOnFilePayment">
|
1984
|
+
<wsdl:input message="ns:processCardOnFilePaymentRequest" name="processCardOnFilePaymentRequest" />
|
1985
|
+
<wsdl:output message="ns:processCardOnFilePaymentResponse" name="processCardOnFilePaymentResponse" />
|
1986
|
+
<wsdl:fault message="ns:cardOnFilePaymentServiceException" name="ServiceException" />
|
1987
|
+
</wsdl:operation>
|
1988
|
+
|
1989
|
+
<wsdl:operation name="mpsPreCheckout">
|
1990
|
+
<wsdl:input message="ns:mpsPreCheckoutRequest" name="mpsPreCheckoutRequest" />
|
1991
|
+
<wsdl:output message="ns:mpsPreCheckoutResponse" name="mpsPreCheckoutResponse" />
|
1992
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1993
|
+
</wsdl:operation>
|
1994
|
+
<wsdl:operation name="mpsExpressCheckout">
|
1995
|
+
<wsdl:input message="ns:mpsExpressCheckoutRequest" name="mpsExpressCheckoutRequest" />
|
1996
|
+
<wsdl:output message="ns:mpsExpressCheckoutResponse" name="mpsExpressCheckoutResponse" />
|
1997
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
1998
|
+
</wsdl:operation>
|
1999
|
+
<wsdl:operation name="resolvePaymentStatus">
|
2000
|
+
<wsdl:input message="ns:resolvePaymentStatusRequest" name="resolvePaymentStatusRequest" />
|
2001
|
+
<wsdl:output message="ns:resolvePaymentStatusResponse" name="resolvePaymentStatusResponse" />
|
2002
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
2003
|
+
</wsdl:operation>
|
2004
|
+
<wsdl:operation name="getTokenStatus">
|
2005
|
+
<wsdl:input message="ns:getTokenStatusRequest" name="getTokenStatusRequest" />
|
2006
|
+
<wsdl:output message="ns:getTokenStatusResponse" name="getTokenStatusResponse" />
|
2007
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
2008
|
+
</wsdl:operation>
|
2009
|
+
<wsdl:operation name="processTokenRevoke">
|
2010
|
+
<wsdl:input message="ns:processTokenRevokeRequest" name="processTokenRevokeRequest" />
|
2011
|
+
<wsdl:output message="ns:processTokenRevokeResponse" name="processTokenRevokeResponse" />
|
2012
|
+
<wsdl:fault message="ns:serviceException" name="ServiceException" />
|
2013
|
+
</wsdl:operation>
|
2014
|
+
<wsdl:operation name="processTokenPayment">
|
2015
|
+
<wsdl:input message="ns:processTokenPaymentRequest" name="processTokenPaymentRequest" />
|
2016
|
+
<wsdl:output message="ns:processTokenPaymentResponse" name="processTokenPaymentResponse" />
|
2017
|
+
<wsdl:fault message="ns:paymentServiceException" name="ServiceException" />
|
2018
|
+
</wsdl:operation>
|
2019
|
+
</wsdl:portType>
|
2020
|
+
<wsdl:binding name="PaymentServiceSoap" type="ns:PaymentPort">
|
2021
|
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
|
2022
|
+
<wsdl:operation name="echo">
|
2023
|
+
<wsdlsoap:operation soapAction="" />
|
2024
|
+
<wsdl:input name="echoRequest">
|
2025
|
+
<wsdlsoap:body use="literal" />
|
2026
|
+
</wsdl:input>
|
2027
|
+
<wsdl:output name="echoResponse">
|
2028
|
+
<wsdlsoap:body use="literal" />
|
2029
|
+
</wsdl:output>
|
2030
|
+
<wsdl:fault name="EchoServiceException">
|
2031
|
+
<wsdlsoap:fault use="literal" name="EchoServiceException" />
|
2032
|
+
</wsdl:fault>
|
2033
|
+
</wsdl:operation>
|
2034
|
+
<wsdl:operation name="getPaymentStatus">
|
2035
|
+
<wsdlsoap:operation soapAction="" />
|
2036
|
+
<wsdl:input name="getPaymentStatusRequest">
|
2037
|
+
<wsdlsoap:body use="literal" />
|
2038
|
+
</wsdl:input>
|
2039
|
+
<wsdl:output name="getPaymentStatusResponse">
|
2040
|
+
<wsdlsoap:body use="literal" />
|
2041
|
+
</wsdl:output>
|
2042
|
+
<wsdl:fault name="ServiceException">
|
2043
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2044
|
+
</wsdl:fault>
|
2045
|
+
</wsdl:operation>
|
2046
|
+
<wsdl:operation name="getMasterPaymentStatus">
|
2047
|
+
<wsdlsoap:operation soapAction="" />
|
2048
|
+
<wsdl:input name="getMasterPaymentStatusRequest">
|
2049
|
+
<wsdlsoap:body use="literal" />
|
2050
|
+
</wsdl:input>
|
2051
|
+
<wsdl:output name="getMasterPaymentStatusResponse">
|
2052
|
+
<wsdlsoap:body use="literal" />
|
2053
|
+
</wsdl:output>
|
2054
|
+
<wsdl:fault name="ServiceException">
|
2055
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2056
|
+
</wsdl:fault>
|
2057
|
+
</wsdl:operation>
|
2058
|
+
<wsdl:operation name="processMasterPaymentRevoke">
|
2059
|
+
<wsdlsoap:operation soapAction="" />
|
2060
|
+
<wsdl:input name="processMasterPaymentRevokeRequest">
|
2061
|
+
<wsdlsoap:body use="literal" />
|
2062
|
+
</wsdl:input>
|
2063
|
+
<wsdl:output name="processMasterPaymentRevokeResponse">
|
2064
|
+
<wsdlsoap:body use="literal" />
|
2065
|
+
</wsdl:output>
|
2066
|
+
<wsdl:fault name="ServiceException">
|
2067
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2068
|
+
</wsdl:fault>
|
2069
|
+
</wsdl:operation>
|
2070
|
+
<wsdl:operation name="revokePaymentLink">
|
2071
|
+
<wsdlsoap:operation soapAction="" />
|
2072
|
+
<wsdl:input name="revokePaymentLinkRequest">
|
2073
|
+
<wsdlsoap:body use="literal" />
|
2074
|
+
</wsdl:input>
|
2075
|
+
<wsdl:output name="revokePaymentLinkResponse">
|
2076
|
+
<wsdlsoap:body use="literal" />
|
2077
|
+
</wsdl:output>
|
2078
|
+
<wsdl:fault name="ServiceException">
|
2079
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2080
|
+
</wsdl:fault>
|
2081
|
+
</wsdl:operation>
|
2082
|
+
<wsdl:operation name="getPaymentDetail">
|
2083
|
+
<wsdlsoap:operation soapAction="" />
|
2084
|
+
<wsdl:input name="getPaymentDetailRequest">
|
2085
|
+
<wsdlsoap:body use="literal" />
|
2086
|
+
</wsdl:input>
|
2087
|
+
<wsdl:output name="getPaymentDetailResponse">
|
2088
|
+
<wsdlsoap:body use="literal" />
|
2089
|
+
</wsdl:output>
|
2090
|
+
<wsdl:fault name="ServiceException">
|
2091
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2092
|
+
</wsdl:fault>
|
2093
|
+
</wsdl:operation>
|
2094
|
+
<wsdl:operation name="processAuthorizationReverse">
|
2095
|
+
<wsdlsoap:operation soapAction="" />
|
2096
|
+
<wsdl:input name="processAuthorizationReverseRequest">
|
2097
|
+
<wsdlsoap:body use="literal" />
|
2098
|
+
</wsdl:input>
|
2099
|
+
<wsdl:output name="processAuthorizationReverseResponse">
|
2100
|
+
<wsdlsoap:body use="literal" />
|
2101
|
+
</wsdl:output>
|
2102
|
+
<wsdl:fault name="ServiceException">
|
2103
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2104
|
+
</wsdl:fault>
|
2105
|
+
</wsdl:operation>
|
2106
|
+
<wsdl:operation name="processBatchClose">
|
2107
|
+
<wsdlsoap:operation soapAction="" />
|
2108
|
+
<wsdl:input name="processBatchCloseRequest">
|
2109
|
+
<wsdlsoap:body use="literal" />
|
2110
|
+
</wsdl:input>
|
2111
|
+
<wsdl:output name="processBatchCloseResponse">
|
2112
|
+
<wsdlsoap:body use="literal" />
|
2113
|
+
</wsdl:output>
|
2114
|
+
<wsdl:fault name="ServiceException">
|
2115
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2116
|
+
</wsdl:fault>
|
2117
|
+
</wsdl:operation>
|
2118
|
+
<wsdl:operation name="processRefund">
|
2119
|
+
<wsdlsoap:operation soapAction="" />
|
2120
|
+
<wsdl:input name="processRefundRequest">
|
2121
|
+
<wsdlsoap:body use="literal" />
|
2122
|
+
</wsdl:input>
|
2123
|
+
<wsdl:output name="processRefundResponse">
|
2124
|
+
<wsdlsoap:body use="literal" />
|
2125
|
+
</wsdl:output>
|
2126
|
+
<wsdl:fault name="ServiceException">
|
2127
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2128
|
+
</wsdl:fault>
|
2129
|
+
</wsdl:operation>
|
2130
|
+
<wsdl:operation name="processRefundReverse">
|
2131
|
+
<wsdlsoap:operation soapAction="" />
|
2132
|
+
<wsdl:input name="processRefundReverseRequest">
|
2133
|
+
<wsdlsoap:body use="literal" />
|
2134
|
+
</wsdl:input>
|
2135
|
+
<wsdl:output name="processRefundReverseResponse">
|
2136
|
+
<wsdlsoap:body use="literal" />
|
2137
|
+
</wsdl:output>
|
2138
|
+
<wsdl:fault name="ServiceException">
|
2139
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2140
|
+
</wsdl:fault>
|
2141
|
+
</wsdl:operation>
|
2142
|
+
<wsdl:operation name="processPaymentDelete">
|
2143
|
+
<wsdlsoap:operation soapAction="" />
|
2144
|
+
<wsdl:input name="processPaymentDeleteRequest">
|
2145
|
+
<wsdlsoap:body use="literal" />
|
2146
|
+
</wsdl:input>
|
2147
|
+
<wsdl:output name="processPaymentDeleteResponse">
|
2148
|
+
<wsdlsoap:body use="literal" />
|
2149
|
+
</wsdl:output>
|
2150
|
+
<wsdl:fault name="ServiceException">
|
2151
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2152
|
+
</wsdl:fault>
|
2153
|
+
</wsdl:operation>
|
2154
|
+
<wsdl:operation name="processCapture">
|
2155
|
+
<wsdlsoap:operation soapAction="" />
|
2156
|
+
<wsdl:input name="processCaptureRequest">
|
2157
|
+
<wsdlsoap:body use="literal" />
|
2158
|
+
</wsdl:input>
|
2159
|
+
<wsdl:output name="processCaptureResponse">
|
2160
|
+
<wsdlsoap:body use="literal" />
|
2161
|
+
</wsdl:output>
|
2162
|
+
<wsdl:fault name="ServiceException">
|
2163
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2164
|
+
</wsdl:fault>
|
2165
|
+
</wsdl:operation>
|
2166
|
+
<wsdl:operation name="processCaptureReverse">
|
2167
|
+
<wsdlsoap:operation soapAction="" />
|
2168
|
+
<wsdl:input name="processCaptureReverseRequest">
|
2169
|
+
<wsdlsoap:body use="literal" />
|
2170
|
+
</wsdl:input>
|
2171
|
+
<wsdl:output name="processCaptureReverseResponse">
|
2172
|
+
<wsdlsoap:body use="literal" />
|
2173
|
+
</wsdl:output>
|
2174
|
+
<wsdl:fault name="ServiceException">
|
2175
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2176
|
+
</wsdl:fault>
|
2177
|
+
</wsdl:operation>
|
2178
|
+
<wsdl:operation name="processPaymentClose">
|
2179
|
+
<wsdlsoap:operation soapAction="" />
|
2180
|
+
<wsdl:input name="processPaymentCloseRequest">
|
2181
|
+
<wsdlsoap:body use="literal" />
|
2182
|
+
</wsdl:input>
|
2183
|
+
<wsdl:output name="processPaymentCloseResponse">
|
2184
|
+
<wsdlsoap:body use="literal" />
|
2185
|
+
</wsdl:output>
|
2186
|
+
<wsdl:fault name="ServiceException">
|
2187
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2188
|
+
</wsdl:fault>
|
2189
|
+
</wsdl:operation>
|
2190
|
+
<wsdl:operation name="processRecurringPayment">
|
2191
|
+
<wsdlsoap:operation soapAction="" />
|
2192
|
+
<wsdl:input name="processRecurringPaymentRequest">
|
2193
|
+
<wsdlsoap:body use="literal" />
|
2194
|
+
</wsdl:input>
|
2195
|
+
<wsdl:output name="processRecurringPaymentResponse">
|
2196
|
+
<wsdlsoap:body use="literal" />
|
2197
|
+
</wsdl:output>
|
2198
|
+
<wsdl:fault name="ServiceException">
|
2199
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2200
|
+
</wsdl:fault>
|
2201
|
+
</wsdl:operation>
|
2202
|
+
|
2203
|
+
<wsdl:operation name="processUsageBasedPayment">
|
2204
|
+
<wsdlsoap:operation soapAction="" />
|
2205
|
+
<wsdl:input name="processUsageBasedPaymentRequest">
|
2206
|
+
<wsdlsoap:body use="literal" />
|
2207
|
+
</wsdl:input>
|
2208
|
+
<wsdl:output name="processUsageBasedPaymentResponse">
|
2209
|
+
<wsdlsoap:body use="literal" />
|
2210
|
+
</wsdl:output>
|
2211
|
+
<wsdl:fault name="ServiceException">
|
2212
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2213
|
+
</wsdl:fault>
|
2214
|
+
</wsdl:operation>
|
2215
|
+
<wsdl:operation name="processUsageBasedSubscriptionPayment">
|
2216
|
+
<wsdlsoap:operation soapAction="" />
|
2217
|
+
<wsdl:input name="processUsageBasedSubscriptionPaymentRequest">
|
2218
|
+
<wsdlsoap:body use="literal" />
|
2219
|
+
</wsdl:input>
|
2220
|
+
<wsdl:output name="processUsageBasedSubscriptionPaymentResponse">
|
2221
|
+
<wsdlsoap:body use="literal" />
|
2222
|
+
</wsdl:output>
|
2223
|
+
<wsdl:fault name="ServiceException">
|
2224
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2225
|
+
</wsdl:fault>
|
2226
|
+
</wsdl:operation>
|
2227
|
+
<wsdl:operation name="processRegularSubscriptionPayment">
|
2228
|
+
<wsdlsoap:operation soapAction="" />
|
2229
|
+
<wsdl:input name="processRegularSubscriptionPaymentRequest">
|
2230
|
+
<wsdlsoap:body use="literal" />
|
2231
|
+
</wsdl:input>
|
2232
|
+
<wsdl:output name="processRegularSubscriptionPaymentResponse">
|
2233
|
+
<wsdlsoap:body use="literal" />
|
2234
|
+
</wsdl:output>
|
2235
|
+
<wsdl:fault name="ServiceException">
|
2236
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2237
|
+
</wsdl:fault>
|
2238
|
+
</wsdl:operation>
|
2239
|
+
<wsdl:operation name="processPrepaidPayment">
|
2240
|
+
<wsdlsoap:operation soapAction="" />
|
2241
|
+
<wsdl:input name="processPrepaidPaymentRequest">
|
2242
|
+
<wsdlsoap:body use="literal" />
|
2243
|
+
</wsdl:input>
|
2244
|
+
<wsdl:output name="processPrepaidPaymentResponse">
|
2245
|
+
<wsdlsoap:body use="literal" />
|
2246
|
+
</wsdl:output>
|
2247
|
+
<wsdl:fault name="ServiceException">
|
2248
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2249
|
+
</wsdl:fault>
|
2250
|
+
</wsdl:operation>
|
2251
|
+
<wsdl:operation name="processCardOnFilePayment">
|
2252
|
+
<wsdlsoap:operation soapAction="" />
|
2253
|
+
<wsdl:input name="processCardOnFilePaymentRequest">
|
2254
|
+
<wsdlsoap:body use="literal" />
|
2255
|
+
</wsdl:input>
|
2256
|
+
<wsdl:output name="processCardOnFilePaymentResponse">
|
2257
|
+
<wsdlsoap:body use="literal" />
|
2258
|
+
</wsdl:output>
|
2259
|
+
<wsdl:fault name="ServiceException">
|
2260
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2261
|
+
</wsdl:fault>
|
2262
|
+
</wsdl:operation>
|
2263
|
+
|
2264
|
+
<wsdl:operation name="createPaymentLink">
|
2265
|
+
<wsdlsoap:operation soapAction="" />
|
2266
|
+
<wsdl:input name="createPaymentLinkRequest">
|
2267
|
+
<wsdlsoap:body use="literal" />
|
2268
|
+
</wsdl:input>
|
2269
|
+
<wsdl:output name="createPaymentLinkResponse">
|
2270
|
+
<wsdlsoap:body use="literal" />
|
2271
|
+
</wsdl:output>
|
2272
|
+
<wsdl:fault name="ServiceException">
|
2273
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2274
|
+
</wsdl:fault>
|
2275
|
+
</wsdl:operation>
|
2276
|
+
<wsdl:operation name="mpsPreCheckout">
|
2277
|
+
<wsdlsoap:operation soapAction="" />
|
2278
|
+
<wsdl:input name="mpsPreCheckoutRequest">
|
2279
|
+
<wsdlsoap:body use="literal" />
|
2280
|
+
</wsdl:input>
|
2281
|
+
<wsdl:output name="mpsPreCheckoutResponse">
|
2282
|
+
<wsdlsoap:body use="literal" />
|
2283
|
+
</wsdl:output>
|
2284
|
+
<wsdl:fault name="ServiceException">
|
2285
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2286
|
+
</wsdl:fault>
|
2287
|
+
</wsdl:operation>
|
2288
|
+
<wsdl:operation name="mpsExpressCheckout">
|
2289
|
+
<wsdlsoap:operation soapAction="" />
|
2290
|
+
<wsdl:input name="mpsExpressCheckoutRequest">
|
2291
|
+
<wsdlsoap:body use="literal" />
|
2292
|
+
</wsdl:input>
|
2293
|
+
<wsdl:output name="mpsExpressCheckoutResponse">
|
2294
|
+
<wsdlsoap:body use="literal" />
|
2295
|
+
</wsdl:output>
|
2296
|
+
<wsdl:fault name="ServiceException">
|
2297
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2298
|
+
</wsdl:fault>
|
2299
|
+
</wsdl:operation>
|
2300
|
+
<wsdl:operation name="resolvePaymentStatus">
|
2301
|
+
<wsdlsoap:operation soapAction="" />
|
2302
|
+
<wsdl:input name="resolvePaymentStatusRequest">
|
2303
|
+
<wsdlsoap:body use="literal" />
|
2304
|
+
</wsdl:input>
|
2305
|
+
<wsdl:output name="resolvePaymentStatusResponse">
|
2306
|
+
<wsdlsoap:body use="literal" />
|
2307
|
+
</wsdl:output>
|
2308
|
+
<wsdl:fault name="ServiceException">
|
2309
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2310
|
+
</wsdl:fault>
|
2311
|
+
</wsdl:operation>
|
2312
|
+
<wsdl:operation name="getTokenStatus">
|
2313
|
+
<wsdlsoap:operation soapAction="" />
|
2314
|
+
<wsdl:input name="getTokenStatusRequest">
|
2315
|
+
<wsdlsoap:body use="literal" />
|
2316
|
+
</wsdl:input>
|
2317
|
+
<wsdl:output name="getTokenStatusResponse">
|
2318
|
+
<wsdlsoap:body use="literal" />
|
2319
|
+
</wsdl:output>
|
2320
|
+
<wsdl:fault name="ServiceException">
|
2321
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2322
|
+
</wsdl:fault>
|
2323
|
+
</wsdl:operation>
|
2324
|
+
<wsdl:operation name="processTokenRevoke">
|
2325
|
+
<wsdlsoap:operation soapAction="" />
|
2326
|
+
<wsdl:input name="processTokenRevokeRequest">
|
2327
|
+
<wsdlsoap:body use="literal" />
|
2328
|
+
</wsdl:input>
|
2329
|
+
<wsdl:output name="processTokenRevokeResponse">
|
2330
|
+
<wsdlsoap:body use="literal" />
|
2331
|
+
</wsdl:output>
|
2332
|
+
<wsdl:fault name="ServiceException">
|
2333
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2334
|
+
</wsdl:fault>
|
2335
|
+
</wsdl:operation>
|
2336
|
+
<wsdl:operation name="processTokenPayment">
|
2337
|
+
<wsdlsoap:operation soapAction="" />
|
2338
|
+
<wsdl:input name="processTokenPaymentRequest">
|
2339
|
+
<wsdlsoap:body use="literal" />
|
2340
|
+
</wsdl:input>
|
2341
|
+
<wsdl:output name="processTokenPaymentResponse">
|
2342
|
+
<wsdlsoap:body use="literal" />
|
2343
|
+
</wsdl:output>
|
2344
|
+
<wsdl:fault name="ServiceException">
|
2345
|
+
<wsdlsoap:fault use="literal" name="ServiceException" />
|
2346
|
+
</wsdl:fault>
|
2347
|
+
</wsdl:operation>
|
2348
|
+
|
2349
|
+
</wsdl:binding>
|
2350
|
+
<wsdl:service name="PaymentService">
|
2351
|
+
<wsdl:port name="PaymentPortV1" binding="ns:PaymentServiceSoap">
|
2352
|
+
<wsdlsoap:address location="file:///PaymentService" />
|
2353
|
+
</wsdl:port>
|
2354
|
+
</wsdl:service>
|
2355
|
+
</wsdl:definitions>
|