sekken 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.travis.yml +11 -0
  4. data/.yardopts +6 -0
  5. data/CONTRIBUTING.md +46 -0
  6. data/Gemfile +27 -0
  7. data/MIT-LICENSE +20 -0
  8. data/README.md +28 -0
  9. data/Rakefile +21 -0
  10. data/donate.png +0 -0
  11. data/lib/sekken.rb +75 -0
  12. data/lib/sekken/envelope.rb +92 -0
  13. data/lib/sekken/errors.rb +9 -0
  14. data/lib/sekken/example_message.rb +41 -0
  15. data/lib/sekken/httpclient.rb +35 -0
  16. data/lib/sekken/importer.rb +77 -0
  17. data/lib/sekken/message.rb +135 -0
  18. data/lib/sekken/operation.rb +100 -0
  19. data/lib/sekken/resolver.rb +20 -0
  20. data/lib/sekken/response.rb +50 -0
  21. data/lib/sekken/version.rb +5 -0
  22. data/lib/sekken/wsdl.rb +86 -0
  23. data/lib/sekken/wsdl/binding.rb +64 -0
  24. data/lib/sekken/wsdl/binding_operation.rb +85 -0
  25. data/lib/sekken/wsdl/document.rb +83 -0
  26. data/lib/sekken/wsdl/document_collection.rb +61 -0
  27. data/lib/sekken/wsdl/input_output.rb +84 -0
  28. data/lib/sekken/wsdl/message.rb +38 -0
  29. data/lib/sekken/wsdl/operation.rb +47 -0
  30. data/lib/sekken/wsdl/port.rb +29 -0
  31. data/lib/sekken/wsdl/port_type.rb +38 -0
  32. data/lib/sekken/wsdl/port_type_operation.rb +42 -0
  33. data/lib/sekken/wsdl/service.rb +55 -0
  34. data/lib/sekken/xml/attribute.rb +13 -0
  35. data/lib/sekken/xml/element.rb +82 -0
  36. data/lib/sekken/xml/element_builder.rb +220 -0
  37. data/lib/sekken/xs/schema.rb +57 -0
  38. data/lib/sekken/xs/schema_collection.rb +49 -0
  39. data/lib/sekken/xs/types.rb +272 -0
  40. data/sekken.gemspec +42 -0
  41. data/spec/fixtures/response/another_soap_fault.xml +14 -0
  42. data/spec/fixtures/response/authentication.xml +14 -0
  43. data/spec/fixtures/response/header.xml +13 -0
  44. data/spec/fixtures/response/list.xml +18 -0
  45. data/spec/fixtures/response/multi_ref.xml +39 -0
  46. data/spec/fixtures/response/soap_fault.xml +8 -0
  47. data/spec/fixtures/response/soap_fault12.xml +18 -0
  48. data/spec/fixtures/response/taxcloud.xml +1 -0
  49. data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
  50. data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
  51. data/spec/fixtures/wsdl/authentication.wsdl +63 -0
  52. data/spec/fixtures/wsdl/awse.wsdl +1510 -0
  53. data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
  54. data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
  55. data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
  56. data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
  57. data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
  58. data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
  59. data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
  60. data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
  61. data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
  62. data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
  63. data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
  64. data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
  65. data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
  66. data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
  67. data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
  68. data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
  69. data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
  70. data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
  71. data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
  72. data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
  73. data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
  74. data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
  75. data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
  76. data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
  77. data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
  78. data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
  79. data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
  80. data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
  81. data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
  82. data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
  83. data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
  84. data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
  85. data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
  86. data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
  87. data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
  88. data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
  89. data/spec/fixtures/wsdl/economic.wsdl +65660 -0
  90. data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
  91. data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
  92. data/spec/fixtures/wsdl/equifax.wsdl +794 -0
  93. data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
  94. data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
  95. data/spec/fixtures/wsdl/iws.wsdl +695 -0
  96. data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
  97. data/spec/fixtures/wsdl/jira.wsdl +3890 -0
  98. data/spec/fixtures/wsdl/juniper.wsdl +215 -0
  99. data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
  100. data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
  101. data/spec/fixtures/wsdl/ratp.wsdl +955 -0
  102. data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
  103. data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
  104. data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
  105. data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
  106. data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
  107. data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
  108. data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
  109. data/spec/fixtures/wsdl/spyne.wsdl +70 -0
  110. data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
  111. data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
  112. data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
  113. data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
  114. data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
  115. data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
  116. data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
  117. data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
  118. data/spec/fixtures/wsdl/temperature.wsdl +136 -0
  119. data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
  120. data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
  121. data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
  122. data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
  123. data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
  124. data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
  125. data/spec/integration/amazon_spec.rb +51 -0
  126. data/spec/integration/authentication_spec.rb +38 -0
  127. data/spec/integration/awse_spec.rb +95 -0
  128. data/spec/integration/betfair_spec.rb +179 -0
  129. data/spec/integration/blz_service_spec.rb +46 -0
  130. data/spec/integration/bookt_spec.rb +59 -0
  131. data/spec/integration/bronto_spec.rb +178 -0
  132. data/spec/integration/bydexchange_spec.rb +40 -0
  133. data/spec/integration/crowd_spec.rb +44 -0
  134. data/spec/integration/data_exchange_spec.rb +27 -0
  135. data/spec/integration/document_literal_spec.rb +104 -0
  136. data/spec/integration/economic_spec.rb +64 -0
  137. data/spec/integration/email_verification_spec.rb +82 -0
  138. data/spec/integration/equifax_spec.rb +216 -0
  139. data/spec/integration/geotrust_spec.rb +17 -0
  140. data/spec/integration/interhome_spec.rb +156 -0
  141. data/spec/integration/iws_spec.rb +27 -0
  142. data/spec/integration/jetairways_spec.rb +142 -0
  143. data/spec/integration/jira_spec.rb +27 -0
  144. data/spec/integration/juniper_spec.rb +20 -0
  145. data/spec/integration/namespaced_actions_spec.rb +37 -0
  146. data/spec/integration/oracle_spec.rb +61 -0
  147. data/spec/integration/ratp_spec.rb +178 -0
  148. data/spec/integration/rio2_spec.rb +56 -0
  149. data/spec/integration/rpc_literal_spec.rb +101 -0
  150. data/spec/integration/spyne_spec.rb +60 -0
  151. data/spec/integration/stockquote_spec.rb +46 -0
  152. data/spec/integration/taxcloud_spec.rb +45 -0
  153. data/spec/integration/team_software_spec.rb +51 -0
  154. data/spec/integration/telefonkatalogen_spec.rb +42 -0
  155. data/spec/integration/temperature_spec.rb +71 -0
  156. data/spec/integration/wasmuth_spec.rb +47 -0
  157. data/spec/integration/xignite_spec.rb +112 -0
  158. data/spec/integration/yahoo_spec.rb +116 -0
  159. data/spec/sekken/httpclient_spec.rb +41 -0
  160. data/spec/sekken/operation/build_spec.rb +308 -0
  161. data/spec/sekken/operation/document_literal_spec.rb +53 -0
  162. data/spec/sekken/operation/example_body_spec.rb +95 -0
  163. data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
  164. data/spec/sekken/operation_spec.rb +169 -0
  165. data/spec/sekken/resolver_spec.rb +38 -0
  166. data/spec/sekken/response_spec.rb +17 -0
  167. data/spec/sekken/wsdl/document_spec.rb +191 -0
  168. data/spec/sekken/wsdl_spec.rb +46 -0
  169. data/spec/sekken/xs/complex_type_spec.rb +197 -0
  170. data/spec/sekken/xs/element_spec.rb +82 -0
  171. data/spec/sekken/xs/simple_type_spec.rb +39 -0
  172. data/spec/sekken_spec.rb +128 -0
  173. data/spec/spec_helper.rb +37 -0
  174. data/spec/support/fixture.rb +19 -0
  175. data/spec/support/http_mock.rb +43 -0
  176. metadata +344 -0
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soap:Header xmlns="http://webservices.somewhere.com/definitions">
4
+ <SessionNumber>ABCD1234</SessionNumber>
5
+ </soap:Header>
6
+ <soap:Body>
7
+ <AuthenticateReply xmlns="http://xml.somewhere.com/ABCD">
8
+ <processStatus>
9
+ <statusCode>P</statusCode>
10
+ </processStatus>
11
+ </AuthenticateReply>
12
+ </soap:Body>
13
+ </soap:Envelope>
@@ -0,0 +1,18 @@
1
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
+ <soapenv:Body>
3
+ <MultiNamespacedEntryResponse xmlns="http://www.example.com/BusinessRulesEngine/xsd">
4
+ <history>
5
+ <ns10:case xmlns:ns10="http://www.example.com/Common/xsd">
6
+ <ns10:logTime>2010-09-21T18:22:01.558+10:00</ns10:logTime>
7
+ <ns10:logType>Notes Log</ns10:logType>
8
+ <ns10:logText>test</ns10:logText>
9
+ </ns10:case>
10
+ <ns11:case xmlns:ns11="http://www.example.com/Common/xsd">
11
+ <ns11:logTime>2010-09-21T18:22:07.038+10:00</ns11:logTime>
12
+ <ns11:logType>Notes Log</ns11:logType>
13
+ <ns11:logText>another test</ns11:logText>
14
+ </ns11:case>
15
+ </history>
16
+ </MultiNamespacedEntryResponse>
17
+ </soapenv:Body>
18
+ </soapenv:Envelope>
@@ -0,0 +1,39 @@
1
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
+ <soapenv:Body>
3
+ <ns1:listResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://ws.example.com">
4
+ <listReturn soapenc:arrayType="ns2:HistoryEntry[3]" xsi:type="soapenc:Array" xmlns:ns2="http://ws.example.com/ws/history" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
5
+ <listReturn href="#id0"/>
6
+ <listReturn href="#id1"/>
7
+ <listReturn href="#id2"/>
8
+ </listReturn>
9
+ </ns1:listResponse>
10
+ <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns5:HistoryEntry" xmlns:ns5="http://ws.example.com/ws/history" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
11
+ <date xsi:type="xsd:dateTime">2009-09-22T13:47:23.000Z</date>
12
+ <location xsi:type="soapenc:string">Archive</location>
13
+ <mailId href="#id9"/>
14
+ <referenceId href="#id8"/>
15
+ <state xsi:type="soapenc:string">Original</state>
16
+ <subject xsi:type="soapenc:string">Mail from 09-22-2009: Misc</subject>
17
+ </multiRef>
18
+ <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns6:HistoryEntry" xmlns:ns6="http://ws.example.com/ws/history" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
19
+ <date xsi:type="xsd:dateTime">2009-04-30T06:38:34.000Z</date>
20
+ <location xsi:type="soapenc:string">Archive</location>
21
+ <mailId href="#id10"/>
22
+ <referenceId href="#id8"/>
23
+ <state xsi:type="soapenc:string">Original</state>
24
+ <subject xsi:type="soapenc:string">Mail from 04-29-2009: Technical support</subject>
25
+ </multiRef>
26
+ <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns7:HistoryEntry" xmlns:ns7="http://ws.example.com/ws/history" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
27
+ <date xsi:type="xsd:dateTime">2009-12-18T15:43:21.000Z</date>
28
+ <location xsi:type="soapenc:string">Archive</location>
29
+ <mailId href="#id11"/>
30
+ <referenceId href="#id8"/>
31
+ <state xsi:type="soapenc:string">Original</state>
32
+ <subject xsi:type="soapenc:string">Mail from 12-17-2009: Misc</subject>
33
+ </multiRef>
34
+ <multiRef id="id11" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">972219</multiRef>
35
+ <multiRef id="id10" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">708021</multiRef>
36
+ <multiRef id="id8" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">0</multiRef>
37
+ <multiRef id="id9" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">855763</multiRef>
38
+ </soapenv:Body>
39
+ </soapenv:Envelope>
@@ -0,0 +1,8 @@
1
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
2
+ <soap:Body>
3
+ <soap:Fault>
4
+ <faultcode>soap:Server</faultcode>
5
+ <faultstring>Fault occurred while processing.</faultstring>
6
+ </soap:Fault>
7
+ </soap:Body>
8
+ </soap:Envelope>
@@ -0,0 +1,18 @@
1
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:m="http://www.example.org/timeouts">
2
+ <soap:Body>
3
+ <soap:Fault>
4
+ <Code>
5
+ <Value>soap:Sender</Value>
6
+ <Subcode>
7
+ <Value>m:MessageTimeout</Value>
8
+ </Subcode>
9
+ </Code>
10
+ <Reason>
11
+ <Text xml:lang="en">Sender Timeout</Text>
12
+ </Reason>
13
+ <Detail>
14
+ <m:MaxTime>P5M</m:MaxTime>
15
+ </Detail>
16
+ </soap:Fault>
17
+ </soap:Body>
18
+ </soap:Envelope>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><LookupResponse xmlns="http://taxcloud.net"><LookupResult><ResponseType>Error</ResponseType><Messages><ResponseMessage><ResponseType>Error</ResponseType><Message>Invalid apiLoginID and/or apiKey</Message></ResponseMessage></Messages><CartItemsResponse /></LookupResult></LookupResponse></soap:Body></soap:Envelope>
@@ -0,0 +1,1920 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- https://fps.amazonaws.com/doc/2008-09-17/AmazonFPS.wsdl -->
3
+ <wsdl:definitions
4
+ targetNamespace="http://fps.amazonaws.com/doc/2008-09-17/"
5
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
6
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
7
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
8
+ xmlns:wsa="http://www.w3.org/2005/08/addressing"
9
+ xmlns:tns="http://fps.amazonaws.com/doc/2008-09-17/">
10
+
11
+ <wsdl:types>
12
+ <xs:schema targetNamespace="http://fps.amazonaws.com/doc/2008-09-17/"
13
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:tns="http://fps.amazonaws.com/doc/2008-09-17/"
15
+ elementFormDefault="qualified">
16
+
17
+ <!-- **************************** AmazonFPS Interface *************************** -->
18
+
19
+ <!-- Cancel Action -->
20
+ <xs:element name="Cancel">
21
+ <xs:complexType>
22
+ <xs:sequence>
23
+ <xs:element name="TransactionId" type="xs:string"
24
+ minOccurs="0" />
25
+ <xs:element name="Description" type="xs:string"
26
+ minOccurs="0" />
27
+ </xs:sequence>
28
+ </xs:complexType>
29
+ </xs:element>
30
+
31
+ <!-- Cancel Action Response -->
32
+ <xs:element name="CancelResponse">
33
+ <xs:complexType>
34
+ <xs:sequence>
35
+ <xs:element ref="tns:CancelResult" minOccurs="0" />
36
+ <xs:element ref="tns:ResponseMetadata" />
37
+ </xs:sequence>
38
+ </xs:complexType>
39
+ </xs:element>
40
+
41
+ <!-- CancelToken Action -->
42
+ <xs:element name="CancelToken">
43
+ <xs:complexType>
44
+ <xs:sequence>
45
+ <xs:element name="TokenId" type="xs:string" minOccurs="0" />
46
+ <xs:element name="ReasonText" type="xs:string" minOccurs="0" />
47
+ </xs:sequence>
48
+ </xs:complexType>
49
+ </xs:element>
50
+
51
+ <!-- CancelToken Action Response -->
52
+ <xs:element name="CancelTokenResponse">
53
+ <xs:complexType>
54
+ <xs:sequence>
55
+ <xs:element ref="tns:ResponseMetadata" />
56
+ </xs:sequence>
57
+ </xs:complexType>
58
+ </xs:element>
59
+
60
+ <!-- CancelSubscriptionAndRefund Action -->
61
+ <xs:element name="CancelSubscriptionAndRefund">
62
+ <xs:complexType>
63
+ <xs:sequence>
64
+ <xs:element name="SubscriptionId" type="xs:string"
65
+ minOccurs="0" />
66
+ <xs:element name="RefundAmount" type="tns:Amount"
67
+ minOccurs="0" />
68
+ <xs:element name="CallerReference" type="xs:string"
69
+ minOccurs="0" />
70
+ <xs:element name="CancelReason" type="xs:string"
71
+ minOccurs="0" />
72
+ </xs:sequence>
73
+ </xs:complexType>
74
+ </xs:element>
75
+
76
+ <!-- CancelSubscriptionAndRefund Action Response -->
77
+ <xs:element name="CancelSubscriptionAndRefundResponse">
78
+ <xs:complexType>
79
+ <xs:sequence>
80
+ <xs:element ref="tns:CancelSubscriptionAndRefundResult"
81
+ minOccurs="0" />
82
+ <xs:element ref="tns:ResponseMetadata" />
83
+ </xs:sequence>
84
+ </xs:complexType>
85
+ </xs:element>
86
+
87
+ <!-- FundPrepaid Action -->
88
+ <xs:element name="FundPrepaid">
89
+ <xs:complexType>
90
+ <xs:sequence>
91
+ <xs:element name="SenderTokenId" type="xs:string"
92
+ minOccurs="0" />
93
+ <xs:element name="PrepaidInstrumentId" type="xs:string"
94
+ minOccurs="0" />
95
+ <xs:element name="FundingAmount" type="tns:Amount"
96
+ minOccurs="0" />
97
+ <xs:element name="CallerReference" type="xs:string"
98
+ minOccurs="0" />
99
+ <xs:element name="SenderDescription" type="xs:string"
100
+ minOccurs="0" />
101
+ <xs:element name="CallerDescription" type="xs:string"
102
+ minOccurs="0" />
103
+ <xs:element name="DescriptorPolicy" type="tns:DescriptorPolicy"
104
+ minOccurs="0" />
105
+ <xs:element name="TransactionTimeoutInMins" type="xs:integer"
106
+ minOccurs="0" />
107
+ </xs:sequence>
108
+ </xs:complexType>
109
+ </xs:element>
110
+
111
+ <!-- FundPrepaid Action Response -->
112
+ <xs:element name="FundPrepaidResponse">
113
+ <xs:complexType>
114
+ <xs:sequence>
115
+ <xs:element ref="tns:FundPrepaidResult" minOccurs="0" />
116
+ <xs:element ref="tns:ResponseMetadata" />
117
+ </xs:sequence>
118
+ </xs:complexType>
119
+ </xs:element>
120
+
121
+
122
+ <!-- GetAccountActivity Action -->
123
+ <xs:element name="GetAccountActivity">
124
+ <xs:complexType>
125
+ <xs:sequence>
126
+ <xs:element name="MaxBatchSize" type="xs:integer"
127
+ minOccurs="0" />
128
+ <xs:element name="StartDate" type="xs:dateTime"
129
+ minOccurs="0" />
130
+ <xs:element name="EndDate" type="xs:dateTime" minOccurs="0" />
131
+ <xs:element name="SortOrderByDate" type="tns:SortOrder"
132
+ default="Descending" minOccurs="0" />
133
+ <xs:element name="FPSOperation" type="tns:FPSOperation"
134
+ minOccurs="0" />
135
+ <xs:element name="PaymentMethod" type="tns:PaymentMethod"
136
+ minOccurs="0" />
137
+ <xs:element name="Role" type="tns:TransactionalRole"
138
+ maxOccurs="unbounded" minOccurs="0" />
139
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus"
140
+ minOccurs="0" />
141
+ </xs:sequence>
142
+ </xs:complexType>
143
+ </xs:element>
144
+
145
+ <!-- GetAccountActivity Action Response -->
146
+ <xs:element name="GetAccountActivityResponse">
147
+ <xs:complexType>
148
+ <xs:sequence>
149
+ <xs:element ref="tns:GetAccountActivityResult" minOccurs="0" />
150
+ <xs:element ref="tns:ResponseMetadata" />
151
+ </xs:sequence>
152
+ </xs:complexType>
153
+ </xs:element>
154
+
155
+
156
+ <!-- GetAccountBalance Action -->
157
+ <xs:element name="GetAccountBalance">
158
+ <xs:complexType />
159
+ </xs:element>
160
+
161
+ <!-- GetAccountBalance Action Response -->
162
+ <xs:element name="GetAccountBalanceResponse">
163
+ <xs:complexType>
164
+ <xs:sequence>
165
+ <xs:element ref="tns:GetAccountBalanceResult" minOccurs="0" />
166
+ <xs:element ref="tns:ResponseMetadata" />
167
+ </xs:sequence>
168
+ </xs:complexType>
169
+ </xs:element>
170
+
171
+
172
+ <!-- GetDebtBalance Action -->
173
+ <xs:element name="GetDebtBalance">
174
+ <xs:complexType>
175
+ <xs:sequence>
176
+ <xs:element name="CreditInstrumentId" type="xs:string"
177
+ minOccurs="0" />
178
+ </xs:sequence>
179
+ </xs:complexType>
180
+ </xs:element>
181
+
182
+ <!-- GetDebtBalance Action Response -->
183
+ <xs:element name="GetDebtBalanceResponse">
184
+ <xs:complexType>
185
+ <xs:sequence>
186
+ <xs:element ref="tns:GetDebtBalanceResult" minOccurs="0" />
187
+ <xs:element ref="tns:ResponseMetadata" />
188
+ </xs:sequence>
189
+ </xs:complexType>
190
+ </xs:element>
191
+
192
+
193
+ <!-- GetOutstandingDebtBalance Action -->
194
+ <xs:element name="GetOutstandingDebtBalance">
195
+ <xs:complexType />
196
+ </xs:element>
197
+
198
+
199
+ <!-- GetOutstandingDebtBalance Action Response -->
200
+ <xs:element name="GetOutstandingDebtBalanceResponse">
201
+ <xs:complexType>
202
+ <xs:sequence>
203
+ <xs:element ref="tns:GetOutstandingDebtBalanceResult"
204
+ minOccurs="0" />
205
+ <xs:element ref="tns:ResponseMetadata" />
206
+ </xs:sequence>
207
+ </xs:complexType>
208
+ </xs:element>
209
+
210
+
211
+ <!-- GetPrepaidBalance Action -->
212
+ <xs:element name="GetPrepaidBalance">
213
+ <xs:complexType>
214
+ <xs:sequence>
215
+ <xs:element name="PrepaidInstrumentId" type="xs:string"
216
+ minOccurs="0" />
217
+ </xs:sequence>
218
+ </xs:complexType>
219
+ </xs:element>
220
+
221
+ <!-- GetPrepaidBalance Action Response -->
222
+ <xs:element name="GetPrepaidBalanceResponse">
223
+ <xs:complexType>
224
+ <xs:sequence>
225
+ <xs:element ref="tns:GetPrepaidBalanceResult" minOccurs="0" />
226
+ <xs:element ref="tns:ResponseMetadata" />
227
+ </xs:sequence>
228
+ </xs:complexType>
229
+ </xs:element>
230
+
231
+
232
+ <!-- GetTokenByCaller Action -->
233
+ <xs:element name="GetTokenByCaller">
234
+ <xs:complexType>
235
+ <xs:sequence>
236
+ <xs:element name="TokenId" type="xs:string" minOccurs="0" />
237
+ <xs:element name="CallerReference" type="xs:string"
238
+ minOccurs="0" />
239
+ </xs:sequence>
240
+ </xs:complexType>
241
+ </xs:element>
242
+
243
+ <!-- GetTokenByCaller Action Response -->
244
+ <xs:element name="GetTokenByCallerResponse">
245
+ <xs:complexType>
246
+ <xs:sequence>
247
+ <xs:element ref="tns:GetTokenByCallerResult" minOccurs="0" />
248
+ <xs:element ref="tns:ResponseMetadata" />
249
+ </xs:sequence>
250
+ </xs:complexType>
251
+ </xs:element>
252
+
253
+
254
+ <!-- GetTokenUsage Action -->
255
+ <xs:element name="GetTokenUsage">
256
+ <xs:complexType>
257
+ <xs:sequence>
258
+ <xs:element name="TokenId" type="xs:string" minOccurs="0" />
259
+ </xs:sequence>
260
+ </xs:complexType>
261
+ </xs:element>
262
+
263
+ <!-- GetTokenUsage Action Response -->
264
+ <xs:element name="GetTokenUsageResponse">
265
+ <xs:complexType>
266
+ <xs:sequence>
267
+ <xs:element ref="tns:GetTokenUsageResult" minOccurs="0" />
268
+ <xs:element ref="tns:ResponseMetadata" />
269
+ </xs:sequence>
270
+ </xs:complexType>
271
+ </xs:element>
272
+
273
+
274
+ <!-- GetTokens Action -->
275
+ <xs:element name="GetTokens">
276
+ <xs:complexType>
277
+ <xs:sequence>
278
+ <xs:element name="TokenStatus" type="tns:TokenStatus"
279
+ default="Active" minOccurs="0" />
280
+ <xs:element name="TokenType" type="tns:TokenType"
281
+ minOccurs="0" />
282
+ <xs:element name="CallerReference" type="xs:string"
283
+ minOccurs="0" />
284
+ <xs:element name="TokenFriendlyName" type="xs:string"
285
+ minOccurs="0" />
286
+ </xs:sequence>
287
+ </xs:complexType>
288
+ </xs:element>
289
+
290
+ <!-- GetTokens Action Response -->
291
+ <xs:element name="GetTokensResponse">
292
+ <xs:complexType>
293
+ <xs:sequence>
294
+ <xs:element ref="tns:GetTokensResult" minOccurs="0" />
295
+ <xs:element ref="tns:ResponseMetadata" />
296
+ </xs:sequence>
297
+ </xs:complexType>
298
+ </xs:element>
299
+
300
+
301
+ <!-- GetTotalPrepaidLiability Action -->
302
+ <xs:element name="GetTotalPrepaidLiability">
303
+ <xs:complexType />
304
+ </xs:element>
305
+
306
+
307
+ <!-- GetTotalPrepaidLiability Action Response -->
308
+ <xs:element name="GetTotalPrepaidLiabilityResponse">
309
+ <xs:complexType>
310
+ <xs:sequence>
311
+ <xs:element ref="tns:GetTotalPrepaidLiabilityResult"
312
+ minOccurs="0" />
313
+ <xs:element ref="tns:ResponseMetadata" />
314
+ </xs:sequence>
315
+ </xs:complexType>
316
+ </xs:element>
317
+
318
+
319
+ <!-- GetTransaction Action -->
320
+ <xs:element name="GetTransaction">
321
+ <xs:complexType>
322
+ <xs:sequence>
323
+ <xs:element name="TransactionId" type="xs:string"
324
+ minOccurs="0" />
325
+ </xs:sequence>
326
+ </xs:complexType>
327
+ </xs:element>
328
+
329
+ <!-- GetTransaction Action Response -->
330
+ <xs:element name="GetTransactionResponse">
331
+ <xs:complexType>
332
+ <xs:sequence>
333
+ <xs:element ref="tns:GetTransactionResult" minOccurs="0" />
334
+ <xs:element ref="tns:ResponseMetadata" />
335
+ </xs:sequence>
336
+ </xs:complexType>
337
+ </xs:element>
338
+
339
+
340
+ <!-- GetTransactionStatus Action -->
341
+ <xs:element name="GetTransactionStatus">
342
+ <xs:complexType>
343
+ <xs:sequence>
344
+ <xs:element name="TransactionId" type="xs:string"
345
+ minOccurs="0" />
346
+ </xs:sequence>
347
+ </xs:complexType>
348
+ </xs:element>
349
+
350
+ <!-- GetTransactionStatus Action Response -->
351
+ <xs:element name="GetTransactionStatusResponse">
352
+ <xs:complexType>
353
+ <xs:sequence>
354
+ <xs:element ref="tns:GetTransactionStatusResult"
355
+ minOccurs="0" />
356
+ <xs:element ref="tns:ResponseMetadata" />
357
+ </xs:sequence>
358
+ </xs:complexType>
359
+ </xs:element>
360
+
361
+
362
+ <!-- GetPaymentInstruction Action -->
363
+ <xs:element name="GetPaymentInstruction">
364
+ <xs:complexType>
365
+ <xs:sequence>
366
+ <xs:element name="TokenId" type="xs:string" minOccurs="0" />
367
+ </xs:sequence>
368
+ </xs:complexType>
369
+ </xs:element>
370
+
371
+ <!-- GetPaymentInstruction Action Response -->
372
+ <xs:element name="GetPaymentInstructionResponse">
373
+ <xs:complexType>
374
+ <xs:sequence>
375
+ <xs:element ref="tns:GetPaymentInstructionResult"
376
+ minOccurs="0" />
377
+ <xs:element ref="tns:ResponseMetadata" />
378
+ </xs:sequence>
379
+ </xs:complexType>
380
+ </xs:element>
381
+
382
+
383
+ <!-- InstallPaymentInstruction Action -->
384
+ <xs:element name="InstallPaymentInstruction">
385
+ <xs:complexType>
386
+ <xs:sequence>
387
+ <xs:element name="PaymentInstruction" type="xs:string"
388
+ minOccurs="0" />
389
+ <xs:element name="TokenFriendlyName" type="xs:string"
390
+ minOccurs="0" />
391
+ <xs:element name="CallerReference" type="xs:string"
392
+ minOccurs="0" />
393
+ <xs:element name="TokenType" type="tns:TokenType"
394
+ minOccurs="0" />
395
+ <xs:element name="PaymentReason" type="xs:string"
396
+ minOccurs="0" />
397
+ </xs:sequence>
398
+ </xs:complexType>
399
+ </xs:element>
400
+
401
+ <!-- InstallPaymentInstruction Action Response -->
402
+ <xs:element name="InstallPaymentInstructionResponse">
403
+ <xs:complexType>
404
+ <xs:sequence>
405
+ <xs:element ref="tns:InstallPaymentInstructionResult"
406
+ minOccurs="0" />
407
+ <xs:element ref="tns:ResponseMetadata" />
408
+ </xs:sequence>
409
+ </xs:complexType>
410
+ </xs:element>
411
+
412
+
413
+ <!-- Pay Action -->
414
+ <xs:element name="Pay">
415
+ <xs:complexType>
416
+ <xs:sequence>
417
+ <xs:element name="SenderTokenId" type="xs:string"
418
+ minOccurs="0" />
419
+ <xs:element name="RecipientTokenId" type="xs:string"
420
+ minOccurs="0" />
421
+ <xs:element name="TransactionAmount" type="tns:Amount"
422
+ minOccurs="0" />
423
+ <xs:element name="ChargeFeeTo" type="tns:ChargeFeeTo"
424
+ minOccurs="0" />
425
+ <xs:element name="CallerReference" type="xs:string"
426
+ minOccurs="0" />
427
+ <xs:element name="CallerDescription" type="xs:string"
428
+ minOccurs="0" />
429
+ <xs:element name="SenderDescription" type="xs:string"
430
+ minOccurs="0" />
431
+ <xs:element name="DescriptorPolicy" type="tns:DescriptorPolicy"
432
+ minOccurs="0" />
433
+ <xs:element name="TransactionTimeoutInMins" type="xs:integer"
434
+ minOccurs="0" />
435
+ <xs:element name="MarketplaceFixedFee" type="tns:Amount"
436
+ minOccurs="0" />
437
+ <xs:element name="MarketplaceVariableFee" type="xs:decimal"
438
+ minOccurs="0" />
439
+ </xs:sequence>
440
+ </xs:complexType>
441
+ </xs:element>
442
+
443
+ <!-- Pay Action Response -->
444
+ <xs:element name="PayResponse">
445
+ <xs:complexType>
446
+ <xs:sequence>
447
+ <xs:element ref="tns:PayResult" minOccurs="0" />
448
+ <xs:element ref="tns:ResponseMetadata" />
449
+ </xs:sequence>
450
+ </xs:complexType>
451
+ </xs:element>
452
+
453
+
454
+ <!-- Refund Action -->
455
+ <xs:element name="Refund">
456
+ <xs:complexType>
457
+ <xs:sequence>
458
+ <xs:element name="TransactionId" type="xs:string"
459
+ minOccurs="0" />
460
+ <xs:element name="RefundAmount" type="tns:Amount"
461
+ minOccurs="0" />
462
+ <xs:element name="CallerReference" type="xs:string"
463
+ minOccurs="0" />
464
+ <xs:element name="CallerDescription" type="xs:string"
465
+ minOccurs="0" />
466
+ <xs:element name="MarketplaceRefundPolicy" type="tns:MarketplaceRefundPolicy"
467
+ default="MasterTxnOnly" minOccurs="0" />
468
+ </xs:sequence>
469
+ </xs:complexType>
470
+ </xs:element>
471
+
472
+ <!-- Refund Action Response -->
473
+ <xs:element name="RefundResponse">
474
+ <xs:complexType>
475
+ <xs:sequence>
476
+ <xs:element ref="tns:RefundResult" minOccurs="0" />
477
+ <xs:element ref="tns:ResponseMetadata" />
478
+ </xs:sequence>
479
+ </xs:complexType>
480
+ </xs:element>
481
+
482
+
483
+ <!-- Reserve Action -->
484
+ <xs:element name="Reserve">
485
+ <xs:complexType>
486
+ <xs:sequence>
487
+ <xs:element name="SenderTokenId" type="xs:string"
488
+ minOccurs="0" />
489
+ <xs:element name="RecipientTokenId" type="xs:string"
490
+ minOccurs="0" />
491
+ <xs:element name="TransactionAmount" type="tns:Amount"
492
+ minOccurs="0" />
493
+ <xs:element name="ChargeFeeTo" type="tns:ChargeFeeTo"
494
+ minOccurs="0" />
495
+ <xs:element name="CallerReference" type="xs:string"
496
+ minOccurs="0" />
497
+ <xs:element name="CallerDescription" type="xs:string"
498
+ minOccurs="0" />
499
+ <xs:element name="SenderDescription" type="xs:string"
500
+ minOccurs="0" />
501
+ <xs:element name="DescriptorPolicy" type="tns:DescriptorPolicy"
502
+ minOccurs="0" />
503
+ <xs:element name="TransactionTimeoutInMins" type="xs:integer"
504
+ minOccurs="0" />
505
+ <xs:element name="MarketplaceFixedFee" type="tns:Amount"
506
+ minOccurs="0" />
507
+ <xs:element name="MarketplaceVariableFee" type="xs:decimal"
508
+ minOccurs="0" />
509
+ </xs:sequence>
510
+ </xs:complexType>
511
+ </xs:element>
512
+
513
+ <!-- Reserve Action Response -->
514
+ <xs:element name="ReserveResponse">
515
+ <xs:complexType>
516
+ <xs:sequence>
517
+ <xs:element ref="tns:ReserveResult" minOccurs="0" />
518
+ <xs:element ref="tns:ResponseMetadata" />
519
+ </xs:sequence>
520
+ </xs:complexType>
521
+ </xs:element>
522
+
523
+
524
+ <!-- Settle Action -->
525
+ <xs:element name="Settle">
526
+ <xs:complexType>
527
+ <xs:sequence>
528
+ <xs:element name="ReserveTransactionId" type="xs:string"
529
+ minOccurs="0" />
530
+ <xs:element name="TransactionAmount" type="tns:Amount"
531
+ minOccurs="0" />
532
+ </xs:sequence>
533
+ </xs:complexType>
534
+ </xs:element>
535
+
536
+ <!-- Settle Action Response -->
537
+ <xs:element name="SettleResponse">
538
+ <xs:complexType>
539
+ <xs:sequence>
540
+ <xs:element ref="tns:SettleResult" minOccurs="0" />
541
+ <xs:element ref="tns:ResponseMetadata" />
542
+ </xs:sequence>
543
+ </xs:complexType>
544
+ </xs:element>
545
+
546
+
547
+ <!-- SettleDebt Action -->
548
+ <xs:element name="SettleDebt">
549
+ <xs:complexType>
550
+ <xs:sequence>
551
+ <xs:element name="SenderTokenId" type="xs:string"
552
+ minOccurs="0" />
553
+ <xs:element name="CreditInstrumentId" type="xs:string"
554
+ minOccurs="0" />
555
+ <xs:element name="SettlementAmount" type="tns:Amount"
556
+ minOccurs="0" />
557
+ <xs:element name="CallerReference" type="xs:string"
558
+ minOccurs="0" />
559
+ <xs:element name="SenderDescription" type="xs:string"
560
+ minOccurs="0" />
561
+ <xs:element name="CallerDescription" type="xs:string"
562
+ minOccurs="0" />
563
+ <xs:element name="DescriptorPolicy" type="tns:DescriptorPolicy"
564
+ minOccurs="0" />
565
+ <xs:element name="TransactionTimeoutInMins" type="xs:integer"
566
+ minOccurs="0" />
567
+ </xs:sequence>
568
+ </xs:complexType>
569
+ </xs:element>
570
+
571
+ <!-- SettleDebt Action Response -->
572
+ <xs:element name="SettleDebtResponse">
573
+ <xs:complexType>
574
+ <xs:sequence>
575
+ <xs:element ref="tns:SettleDebtResult" minOccurs="0" />
576
+ <xs:element ref="tns:ResponseMetadata" />
577
+ </xs:sequence>
578
+ </xs:complexType>
579
+ </xs:element>
580
+
581
+
582
+ <!-- WriteOffDebt Action -->
583
+ <xs:element name="WriteOffDebt">
584
+ <xs:complexType>
585
+ <xs:sequence>
586
+ <xs:element name="CreditInstrumentId" type="xs:string"
587
+ minOccurs="0" />
588
+ <xs:element name="AdjustmentAmount" type="tns:Amount"
589
+ minOccurs="0" />
590
+ <xs:element name="CallerReference" type="xs:string"
591
+ minOccurs="0" />
592
+ <xs:element name="CallerDescription" type="xs:string"
593
+ minOccurs="0" />
594
+ </xs:sequence>
595
+ </xs:complexType>
596
+ </xs:element>
597
+
598
+ <!-- WriteOffDebt Action Response -->
599
+ <xs:element name="WriteOffDebtResponse">
600
+ <xs:complexType>
601
+ <xs:sequence>
602
+ <xs:element ref="tns:WriteOffDebtResult" minOccurs="0" />
603
+ <xs:element ref="tns:ResponseMetadata" />
604
+ </xs:sequence>
605
+ </xs:complexType>
606
+ </xs:element>
607
+
608
+
609
+ <!-- VerifySignature Action -->
610
+ <xs:element name="VerifySignature">
611
+ <xs:complexType>
612
+ <xs:sequence>
613
+ <xs:element name="UrlEndPoint" type="xs:string"
614
+ minOccurs="0" />
615
+ <xs:element name="HttpParameters" type="xs:string"
616
+ minOccurs="0" />
617
+ </xs:sequence>
618
+ </xs:complexType>
619
+ </xs:element>
620
+
621
+ <!-- VerifySignature Action Response -->
622
+ <xs:element name="VerifySignatureResponse">
623
+ <xs:complexType>
624
+ <xs:sequence>
625
+ <xs:element ref="tns:VerifySignatureResult" minOccurs="0" />
626
+ <xs:element ref="tns:ResponseMetadata" />
627
+ </xs:sequence>
628
+ </xs:complexType>
629
+ </xs:element>
630
+
631
+ <!-- ******************************* AmazonFPS Types ************************* -->
632
+
633
+
634
+ <xs:simpleType name="TransactionStatus">
635
+ <xs:restriction base="xs:string">
636
+ <xs:enumeration value="Reserved" />
637
+ <xs:enumeration value="Success" />
638
+ <xs:enumeration value="Failure" />
639
+ <xs:enumeration value="Pending" />
640
+ <xs:enumeration value="Cancelled" />
641
+ </xs:restriction>
642
+ </xs:simpleType>
643
+
644
+ <xs:simpleType name="CurrencyCode">
645
+ <xs:restriction base="xs:string">
646
+ <xs:enumeration value="USD" />
647
+ </xs:restriction>
648
+ </xs:simpleType>
649
+
650
+ <xs:complexType name="Amount">
651
+ <xs:sequence>
652
+ <xs:element name="CurrencyCode" type="tns:CurrencyCode" />
653
+ <xs:element name="Value" type="xs:string" />
654
+ </xs:sequence>
655
+ </xs:complexType>
656
+
657
+ <xs:simpleType name="RelationType">
658
+ <xs:restriction base="xs:string">
659
+ <xs:enumeration value="Refund" />
660
+ <xs:enumeration value="Parent" />
661
+ <xs:enumeration value="MarketplaceFee" />
662
+ <xs:enumeration value="RefundReversal" />
663
+ </xs:restriction>
664
+ </xs:simpleType>
665
+
666
+ <xs:simpleType name="ChargeFeeTo">
667
+ <xs:restriction base="xs:string">
668
+ <xs:enumeration value="Caller" />
669
+ <xs:enumeration value="Recipient" />
670
+ </xs:restriction>
671
+ </xs:simpleType>
672
+
673
+ <xs:simpleType name="CSOwner">
674
+ <xs:restriction base="xs:string">
675
+ <xs:enumeration value="Caller" />
676
+ <xs:enumeration value="Recipient" />
677
+ </xs:restriction>
678
+ </xs:simpleType>
679
+
680
+ <xs:simpleType name="SoftDescriptorType">
681
+ <xs:restriction base="xs:string">
682
+ <xs:enumeration value="Dynamic" />
683
+ <xs:enumeration value="Static" />
684
+ </xs:restriction>
685
+ </xs:simpleType>
686
+
687
+ <xs:complexType name="DescriptorPolicy">
688
+ <xs:sequence>
689
+ <xs:element name="SoftDescriptorType" type="tns:SoftDescriptorType"
690
+ minOccurs="0" />
691
+ <xs:element name="CSOwner" type="tns:CSOwner" minOccurs="0" />
692
+ </xs:sequence>
693
+ </xs:complexType>
694
+
695
+ <xs:simpleType name="PaymentMethod">
696
+ <xs:restriction base="xs:string">
697
+ <xs:enumeration value="ABT" />
698
+ <xs:enumeration value="CC" />
699
+ <xs:enumeration value="ACH" />
700
+ <xs:enumeration value="Debt" />
701
+ <xs:enumeration value="Prepaid" />
702
+ </xs:restriction>
703
+ </xs:simpleType>
704
+
705
+ <xs:simpleType name="SortOrder">
706
+ <xs:restriction base="xs:string">
707
+ <xs:enumeration value="Ascending" />
708
+ <xs:enumeration value="Descending" />
709
+ </xs:restriction>
710
+ </xs:simpleType>
711
+
712
+ <xs:simpleType name="FPSOperation">
713
+ <xs:restriction base="xs:string">
714
+ <xs:enumeration value="Pay" />
715
+ <xs:enumeration value="Refund" />
716
+ <xs:enumeration value="Settle" />
717
+ <xs:enumeration value="SettleDebt" />
718
+ <xs:enumeration value="WriteOffDebt" />
719
+ <xs:enumeration value="FundPrepaid" />
720
+ <xs:enumeration value="Reserve" />
721
+ </xs:restriction>
722
+ </xs:simpleType>
723
+
724
+ <xs:simpleType name="TransactionalRole">
725
+ <xs:restriction base="xs:string">
726
+ <xs:enumeration value="Sender" />
727
+ <xs:enumeration value="Caller" />
728
+ <xs:enumeration value="Recipient" />
729
+ </xs:restriction>
730
+ </xs:simpleType>
731
+
732
+ <xs:complexType name="TransactionPart">
733
+ <xs:sequence>
734
+ <xs:element minOccurs="0" name="InstrumentId" type="xs:string" />
735
+ <xs:element name="Role" type="tns:TransactionalRole" />
736
+ <xs:element minOccurs="0" name="Name" type="xs:string" />
737
+ <xs:element minOccurs="0" name="Reference" type="xs:string" />
738
+ <xs:element minOccurs="0" name="Description" type="xs:string" />
739
+ <xs:element minOccurs="0" name="FeesPaid" type="tns:Amount" />
740
+ </xs:sequence>
741
+ </xs:complexType>
742
+
743
+ <xs:complexType name="Transaction">
744
+ <xs:sequence>
745
+ <xs:element name="TransactionId" type="xs:string" />
746
+ <xs:element name="CallerTransactionDate" type="xs:dateTime" />
747
+ <xs:element name="DateReceived" type="xs:dateTime" />
748
+ <xs:element minOccurs="0" name="DateCompleted" type="xs:dateTime" />
749
+ <xs:element name="TransactionAmount" type="tns:Amount" />
750
+ <xs:element name="FPSOperation" type="tns:FPSOperation" />
751
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
752
+ <xs:element minOccurs="0" name="StatusMessage" type="xs:string" />
753
+ <xs:element minOccurs="0" name="StatusCode" type="xs:string" />
754
+ <xs:element minOccurs="0" name="OriginalTransactionId"
755
+ type="xs:string" />
756
+ <xs:element maxOccurs="unbounded" name="TransactionPart"
757
+ type="tns:TransactionPart" />
758
+ <xs:element name="PaymentMethod" type="tns:PaymentMethod" />
759
+ <xs:element minOccurs="0" name="SenderName" type="xs:string" />
760
+ <xs:element name="CallerName" type="xs:string" />
761
+ <xs:element minOccurs="0" name="RecipientName" type="xs:string" />
762
+ <xs:element name="FPSFees" type="tns:Amount" />
763
+ <xs:element name="Balance" type="tns:Amount" />
764
+ <xs:element minOccurs="0" name="SenderTokenId" type="xs:string" />
765
+ <xs:element minOccurs="0" name="RecipientTokenId" type="xs:string" />
766
+ </xs:sequence>
767
+ </xs:complexType>
768
+
769
+ <xs:complexType name="AvailableBalances">
770
+ <xs:sequence>
771
+ <xs:element name="DisburseBalance" type="tns:Amount" />
772
+ <xs:element name="RefundBalance" type="tns:Amount" />
773
+ </xs:sequence>
774
+ </xs:complexType>
775
+
776
+ <xs:complexType name="AccountBalance">
777
+ <xs:sequence>
778
+ <xs:element name="TotalBalance" type="tns:Amount" />
779
+ <xs:element name="PendingInBalance" type="tns:Amount" />
780
+ <xs:element name="PendingOutBalance" type="tns:Amount" />
781
+ <xs:element name="AvailableBalances" type="tns:AvailableBalances" />
782
+ </xs:sequence>
783
+ </xs:complexType>
784
+
785
+ <xs:complexType name="DebtBalance">
786
+ <xs:sequence>
787
+ <xs:element name="AvailableBalance" type="tns:Amount" />
788
+ <xs:element name="PendingOutBalance" type="tns:Amount"
789
+ minOccurs="0" />
790
+ </xs:sequence>
791
+ </xs:complexType>
792
+
793
+ <xs:complexType name="OutstandingDebtBalance">
794
+ <xs:sequence>
795
+ <xs:element name="OutstandingBalance" type="tns:Amount" />
796
+ <xs:element name="PendingOutBalance" type="tns:Amount"
797
+ minOccurs="0" />
798
+ </xs:sequence>
799
+ </xs:complexType>
800
+
801
+ <xs:simpleType name="TokenStatus">
802
+ <xs:restriction base="xs:string">
803
+ <xs:enumeration value="Active" />
804
+ <xs:enumeration value="Inactive" />
805
+ </xs:restriction>
806
+ </xs:simpleType>
807
+
808
+ <xs:simpleType name="TokenType">
809
+ <xs:restriction base="xs:string">
810
+ <xs:enumeration value="SingleUse" />
811
+ <xs:enumeration value="MultiUse" />
812
+ <xs:enumeration value="Recurring" />
813
+ <xs:enumeration value="Unrestricted" />
814
+ </xs:restriction>
815
+ </xs:simpleType>
816
+
817
+ <xs:complexType name="Token">
818
+ <xs:sequence>
819
+ <xs:element name="TokenId" type="xs:string" />
820
+ <xs:element name="FriendlyName" type="xs:string" />
821
+ <xs:element name="TokenStatus" type="tns:TokenStatus" />
822
+ <xs:element name="DateInstalled" type="xs:dateTime" />
823
+ <xs:element name="CallerReference" type="xs:string" />
824
+ <xs:element name="TokenType" type="tns:TokenType" />
825
+ <xs:element name="OldTokenId" type="xs:string" minOccurs="0" />
826
+ <xs:element name="PaymentReason" type="xs:string"
827
+ minOccurs="0" />
828
+ </xs:sequence>
829
+ </xs:complexType>
830
+
831
+ <xs:complexType name="PrepaidBalance">
832
+ <xs:sequence>
833
+ <xs:element name="AvailableBalance" type="tns:Amount" />
834
+ <xs:element name="PendingInBalance" type="tns:Amount"
835
+ minOccurs="0" />
836
+ </xs:sequence>
837
+ </xs:complexType>
838
+
839
+ <xs:complexType name="TokenUsageLimit">
840
+ <xs:sequence>
841
+ <xs:element name="Count" type="xs:integer" minOccurs="0" />
842
+ <xs:element name="Amount" type="tns:Amount" minOccurs="0" />
843
+ <xs:element name="LastResetCount" type="xs:integer"
844
+ minOccurs="0" />
845
+ <xs:element name="LastResetAmount" type="tns:Amount"
846
+ minOccurs="0" />
847
+ <xs:element name="LastResetTimestamp" type="xs:dateTime"
848
+ minOccurs="0" />
849
+ </xs:sequence>
850
+ </xs:complexType>
851
+
852
+ <xs:complexType name="OutstandingPrepaidLiability">
853
+ <xs:sequence>
854
+ <xs:element name="OutstandingBalance" type="tns:Amount" />
855
+ <xs:element name="PendingInBalance" type="tns:Amount"
856
+ minOccurs="0" />
857
+ </xs:sequence>
858
+ </xs:complexType>
859
+
860
+ <xs:complexType name="RelatedTransaction">
861
+ <xs:sequence>
862
+ <xs:element name="TransactionId" type="xs:string" />
863
+ <xs:element name="RelationType" type="tns:RelationType"
864
+ minOccurs="0" />
865
+ </xs:sequence>
866
+ </xs:complexType>
867
+
868
+ <xs:complexType name="StatusHistory">
869
+ <xs:sequence>
870
+ <xs:element name="Date" type="xs:dateTime" />
871
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
872
+ <xs:element name="StatusCode" type="xs:string" minOccurs="0" />
873
+ <xs:element name="Amount" type="tns:Amount" />
874
+ </xs:sequence>
875
+ </xs:complexType>
876
+
877
+ <xs:complexType name="TransactionDetail">
878
+ <xs:sequence>
879
+ <xs:element name="TransactionId" type="xs:string" />
880
+ <xs:element name="CallerReference" type="xs:string" />
881
+ <xs:element name="CallerDescription" type="xs:string"
882
+ minOccurs="0" />
883
+ <xs:element name="SenderDescription" type="xs:string"
884
+ minOccurs="0" />
885
+ <xs:element name="DateReceived" type="xs:dateTime" />
886
+ <xs:element name="DateCompleted" type="xs:dateTime"
887
+ minOccurs="0" />
888
+ <xs:element name="TransactionAmount" type="tns:Amount" />
889
+ <xs:element name="FPSFees" type="tns:Amount" />
890
+ <xs:element name="MarketplaceFees" type="tns:Amount"
891
+ minOccurs="0" />
892
+ <xs:element name="FPSFeesPaidBy" type="tns:TransactionalRole" />
893
+ <xs:element name="SenderTokenId" type="xs:string"
894
+ minOccurs="0" />
895
+ <xs:element name="RecipientTokenId" type="xs:string"
896
+ minOccurs="0" />
897
+ <xs:element name="PrepaidInstrumentId" type="xs:string"
898
+ minOccurs="0" />
899
+ <xs:element name="CreditInstrumentId" type="xs:string"
900
+ minOccurs="0" />
901
+ <xs:element name="FPSOperation" type="tns:FPSOperation" />
902
+ <xs:element name="PaymentMethod" type="tns:PaymentMethod" />
903
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
904
+ <xs:element name="StatusCode" type="xs:string" minOccurs="0" />
905
+ <xs:element name="StatusMessage" type="xs:string"
906
+ minOccurs="0" />
907
+ <xs:element name="SenderName" type="xs:string" minOccurs="0" />
908
+ <xs:element name="SenderEmail" type="xs:string" minOccurs="0" />
909
+ <xs:element name="CallerName" type="xs:string" />
910
+ <xs:element name="RecipientName" type="xs:string"
911
+ minOccurs="0" />
912
+ <xs:element name="RecipientEmail" type="xs:string"
913
+ minOccurs="0" />
914
+ <xs:element name="RelatedTransaction" type="tns:RelatedTransaction"
915
+ maxOccurs="unbounded" minOccurs="0" />
916
+ <xs:element name="StatusHistory" type="tns:StatusHistory"
917
+ maxOccurs="unbounded" />
918
+ </xs:sequence>
919
+ </xs:complexType>
920
+
921
+ <xs:simpleType name="MarketplaceRefundPolicy">
922
+ <xs:restriction base="xs:string">
923
+ <xs:enumeration value="MasterTxnOnly" />
924
+ <xs:enumeration value="MarketplaceTxnOnly" />
925
+ <xs:enumeration value="MasterAndMarketplaceTxn" />
926
+ </xs:restriction>
927
+ </xs:simpleType>
928
+
929
+ <xs:simpleType name="VerificationStatus">
930
+ <xs:restriction base="xs:string">
931
+ <xs:enumeration value="Success" />
932
+ <xs:enumeration value="Failure" />
933
+ </xs:restriction>
934
+ </xs:simpleType>
935
+
936
+ <!-- Cancel Result Data -->
937
+ <xs:element name="CancelResult">
938
+ <xs:complexType>
939
+ <xs:sequence>
940
+ <xs:element name="TransactionId" type="xs:string"
941
+ minOccurs="0" />
942
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus"
943
+ minOccurs="0" />
944
+ </xs:sequence>
945
+ </xs:complexType>
946
+ </xs:element>
947
+
948
+ <!-- CancelSubscriptionAndRefund Result Data -->
949
+ <xs:element name="CancelSubscriptionAndRefundResult">
950
+ <xs:complexType>
951
+ <xs:sequence>
952
+ <xs:element name="RefundTransactionId" type="xs:string" />
953
+ </xs:sequence>
954
+ </xs:complexType>
955
+ </xs:element>
956
+
957
+ <!-- FundPrepaid Result Data -->
958
+ <xs:element name="FundPrepaidResult">
959
+ <xs:complexType>
960
+ <xs:sequence>
961
+ <xs:element name="TransactionId" type="xs:string" />
962
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
963
+ </xs:sequence>
964
+ </xs:complexType>
965
+ </xs:element>
966
+
967
+ <!-- GetAccountActivity Result Data -->
968
+ <xs:element name="GetAccountActivityResult">
969
+ <xs:complexType>
970
+ <xs:sequence>
971
+ <xs:element name="BatchSize" type="xs:integer" minOccurs="0" />
972
+ <xs:element name="Transaction" type="tns:Transaction"
973
+ maxOccurs="unbounded" minOccurs="0" />
974
+ <xs:element name="StartTimeForNextTransaction" type="xs:dateTime"
975
+ minOccurs="0" />
976
+ </xs:sequence>
977
+ </xs:complexType>
978
+ </xs:element>
979
+
980
+ <!-- GetAccountBalance Result Data -->
981
+ <xs:element name="GetAccountBalanceResult">
982
+ <xs:complexType>
983
+ <xs:sequence>
984
+ <xs:element name="AccountBalance" type="tns:AccountBalance"
985
+ minOccurs="0" />
986
+ </xs:sequence>
987
+ </xs:complexType>
988
+ </xs:element>
989
+
990
+ <!-- GetDebtBalance Result Data -->
991
+ <xs:element name="GetDebtBalanceResult">
992
+ <xs:complexType>
993
+ <xs:sequence>
994
+ <xs:element name="DebtBalance" type="tns:DebtBalance"
995
+ minOccurs="0" />
996
+ </xs:sequence>
997
+ </xs:complexType>
998
+ </xs:element>
999
+
1000
+ <!-- GetOutstandingDebtBalance Result Data -->
1001
+ <xs:element name="GetOutstandingDebtBalanceResult">
1002
+ <xs:complexType>
1003
+ <xs:sequence>
1004
+ <xs:element name="OutstandingDebt" type="tns:OutstandingDebtBalance"
1005
+ minOccurs="0" />
1006
+ </xs:sequence>
1007
+ </xs:complexType>
1008
+ </xs:element>
1009
+
1010
+ <!-- GetPrepaidBalance Result Data -->
1011
+ <xs:element name="GetPrepaidBalanceResult">
1012
+ <xs:complexType>
1013
+ <xs:sequence>
1014
+ <xs:element name="PrepaidBalance" type="tns:PrepaidBalance"
1015
+ minOccurs="0" />
1016
+ </xs:sequence>
1017
+ </xs:complexType>
1018
+ </xs:element>
1019
+
1020
+ <!-- GetTokenByCaller Result Data -->
1021
+ <xs:element name="GetTokenByCallerResult">
1022
+ <xs:complexType>
1023
+ <xs:sequence>
1024
+ <xs:element name="Token" type="tns:Token" minOccurs="0" />
1025
+ </xs:sequence>
1026
+ </xs:complexType>
1027
+ </xs:element>
1028
+
1029
+ <!-- GetTokenUsage Result Data -->
1030
+ <xs:element name="GetTokenUsageResult">
1031
+ <xs:complexType>
1032
+ <xs:sequence>
1033
+ <xs:element name="TokenUsageLimits" type="tns:TokenUsageLimit"
1034
+ maxOccurs="3" minOccurs="0" />
1035
+ </xs:sequence>
1036
+ </xs:complexType>
1037
+ </xs:element>
1038
+
1039
+ <!-- GetTokens Result Data -->
1040
+ <xs:element name="GetTokensResult">
1041
+ <xs:complexType>
1042
+ <xs:sequence>
1043
+ <xs:element name="Token" type="tns:Token" maxOccurs="unbounded"
1044
+ minOccurs="0" />
1045
+ </xs:sequence>
1046
+ </xs:complexType>
1047
+ </xs:element>
1048
+
1049
+ <!-- GetTotalPrepaidLiability Result Data -->
1050
+ <xs:element name="GetTotalPrepaidLiabilityResult">
1051
+ <xs:complexType>
1052
+ <xs:sequence>
1053
+ <xs:element name="OutstandingPrepaidLiability" type="tns:OutstandingPrepaidLiability"
1054
+ minOccurs="0" />
1055
+ </xs:sequence>
1056
+ </xs:complexType>
1057
+ </xs:element>
1058
+
1059
+ <!-- GetTransaction Result Data -->
1060
+ <xs:element name="GetTransactionResult">
1061
+ <xs:complexType>
1062
+ <xs:sequence>
1063
+ <xs:element name="Transaction" type="tns:TransactionDetail"
1064
+ minOccurs="0" />
1065
+ </xs:sequence>
1066
+ </xs:complexType>
1067
+ </xs:element>
1068
+
1069
+ <!-- GetTransactionStatus Result Data -->
1070
+ <xs:element name="GetTransactionStatusResult">
1071
+ <xs:complexType>
1072
+ <xs:sequence>
1073
+ <xs:element name="TransactionId" type="xs:string" />
1074
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1075
+ <xs:element name="CallerReference" type="xs:string" />
1076
+ <xs:element name="StatusCode" type="xs:string" minOccurs="0" />
1077
+ <xs:element name="StatusMessage" type="xs:string"
1078
+ minOccurs="0" />
1079
+ </xs:sequence>
1080
+ </xs:complexType>
1081
+ </xs:element>
1082
+
1083
+
1084
+ <!-- GetPaymentInstruction Result Data -->
1085
+ <xs:element name="GetPaymentInstructionResult">
1086
+ <xs:complexType>
1087
+ <xs:sequence>
1088
+ <xs:element name="Token" type="tns:Token" />
1089
+ <xs:element name="PaymentInstruction" type="xs:string" />
1090
+ <xs:element name="CallerReference" type="xs:string" />
1091
+ <xs:element name="TokenFriendlyName" type="xs:string"
1092
+ minOccurs="0" />
1093
+ </xs:sequence>
1094
+ </xs:complexType>
1095
+ </xs:element>
1096
+
1097
+ <!-- InstallPaymentInstruction Result Data -->
1098
+ <xs:element name="InstallPaymentInstructionResult">
1099
+ <xs:complexType>
1100
+ <xs:sequence>
1101
+ <xs:element name="TokenId" type="xs:string" />
1102
+ </xs:sequence>
1103
+ </xs:complexType>
1104
+ </xs:element>
1105
+
1106
+ <!-- Pay Result Data -->
1107
+ <xs:element name="PayResult">
1108
+ <xs:complexType>
1109
+ <xs:sequence>
1110
+ <xs:element name="TransactionId" type="xs:string" />
1111
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1112
+ </xs:sequence>
1113
+ </xs:complexType>
1114
+ </xs:element>
1115
+
1116
+ <!-- Refund Result Data -->
1117
+ <xs:element name="RefundResult">
1118
+ <xs:complexType>
1119
+ <xs:sequence>
1120
+ <xs:element name="TransactionId" type="xs:string" />
1121
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1122
+ </xs:sequence>
1123
+ </xs:complexType>
1124
+ </xs:element>
1125
+
1126
+ <!-- Reserve Result Data -->
1127
+ <xs:element name="ReserveResult">
1128
+ <xs:complexType>
1129
+ <xs:sequence>
1130
+ <xs:element name="TransactionId" type="xs:string" />
1131
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1132
+ </xs:sequence>
1133
+ </xs:complexType>
1134
+ </xs:element>
1135
+
1136
+ <!-- Settle Result Data -->
1137
+ <xs:element name="SettleResult">
1138
+ <xs:complexType>
1139
+ <xs:sequence>
1140
+ <xs:element name="TransactionId" type="xs:string" />
1141
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1142
+ </xs:sequence>
1143
+ </xs:complexType>
1144
+ </xs:element>
1145
+
1146
+ <!-- SettleDebt Result Data -->
1147
+ <xs:element name="SettleDebtResult">
1148
+ <xs:complexType>
1149
+ <xs:sequence>
1150
+ <xs:element name="TransactionId" type="xs:string" />
1151
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1152
+ </xs:sequence>
1153
+ </xs:complexType>
1154
+ </xs:element>
1155
+
1156
+ <!-- WriteOffDebt Result Data -->
1157
+ <xs:element name="WriteOffDebtResult">
1158
+ <xs:complexType>
1159
+ <xs:sequence>
1160
+ <xs:element name="TransactionId" type="xs:string" />
1161
+ <xs:element name="TransactionStatus" type="tns:TransactionStatus" />
1162
+ </xs:sequence>
1163
+ </xs:complexType>
1164
+ </xs:element>
1165
+
1166
+ <!-- VerifySignature Result Data -->
1167
+ <xs:element name="VerifySignatureResult">
1168
+ <xs:complexType>
1169
+ <xs:sequence>
1170
+ <xs:element name="VerificationStatus" type="tns:VerificationStatus"
1171
+ minOccurs="0" />
1172
+ </xs:sequence>
1173
+ </xs:complexType>
1174
+ </xs:element>
1175
+
1176
+ <!-- ******************************** AWS Types *********************************** -->
1177
+
1178
+ <xs:element name="ResponseMetadata">
1179
+ <xs:complexType>
1180
+ <xs:sequence>
1181
+ <xs:element name="RequestId" type="xs:string" />
1182
+ </xs:sequence>
1183
+ </xs:complexType>
1184
+ </xs:element>
1185
+
1186
+ <!-- // REST Error Response // -->
1187
+ <xs:element name="ErrorResponse">
1188
+ <xs:complexType>
1189
+ <xs:sequence>
1190
+ <xs:element ref="tns:Error" maxOccurs="unbounded"/>
1191
+ <xs:element name="RequestId" type="xs:string"/>
1192
+ </xs:sequence>
1193
+ </xs:complexType>
1194
+ </xs:element>
1195
+ <xs:element name="Error">
1196
+ <xs:complexType>
1197
+ <xs:sequence>
1198
+ <xs:element name="Type">
1199
+ <xs:simpleType>
1200
+ <xs:restriction base="xs:string">
1201
+ <xs:enumeration value="Receiver"/>
1202
+ <xs:enumeration value="Sender"/>
1203
+ </xs:restriction>
1204
+ </xs:simpleType>
1205
+ </xs:element>
1206
+ <xs:element name="Code" type="xs:string"/>
1207
+ <xs:element name="Message" type="xs:string"/>
1208
+ <xs:element name="Detail" minOccurs="0">
1209
+ <xs:complexType>
1210
+ <xs:sequence>
1211
+ <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
1212
+ </xs:sequence>
1213
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
1214
+ </xs:complexType>
1215
+ </xs:element>
1216
+ </xs:sequence>
1217
+ </xs:complexType>
1218
+ </xs:element>
1219
+
1220
+ </xs:schema>
1221
+
1222
+ </wsdl:types>
1223
+
1224
+
1225
+ <!-- ******************************** Messages ********************************* -->
1226
+
1227
+ <wsdl:message name="CancelTokenRequestMsg">
1228
+ <wsdl:part name="body" element="tns:CancelToken"/>
1229
+ </wsdl:message>
1230
+ <wsdl:message name="CancelTokenResponseMsg">
1231
+ <wsdl:part name="body" element="tns:CancelTokenResponse"/>
1232
+ </wsdl:message>
1233
+
1234
+
1235
+ <wsdl:message name="CancelRequestMsg">
1236
+ <wsdl:part name="body" element="tns:Cancel"/>
1237
+ </wsdl:message>
1238
+ <wsdl:message name="CancelResponseMsg">
1239
+ <wsdl:part name="body" element="tns:CancelResponse"/>
1240
+ </wsdl:message>
1241
+
1242
+
1243
+ <wsdl:message name="FundPrepaidRequestMsg">
1244
+ <wsdl:part name="body" element="tns:FundPrepaid"/>
1245
+ </wsdl:message>
1246
+ <wsdl:message name="FundPrepaidResponseMsg">
1247
+ <wsdl:part name="body" element="tns:FundPrepaidResponse"/>
1248
+ </wsdl:message>
1249
+
1250
+
1251
+ <wsdl:message name="GetAccountActivityRequestMsg">
1252
+ <wsdl:part name="body" element="tns:GetAccountActivity"/>
1253
+ </wsdl:message>
1254
+ <wsdl:message name="GetAccountActivityResponseMsg">
1255
+ <wsdl:part name="body" element="tns:GetAccountActivityResponse"/>
1256
+ </wsdl:message>
1257
+
1258
+
1259
+ <wsdl:message name="GetAccountBalanceRequestMsg">
1260
+ <wsdl:part name="body" element="tns:GetAccountBalance"/>
1261
+ </wsdl:message>
1262
+ <wsdl:message name="GetAccountBalanceResponseMsg">
1263
+ <wsdl:part name="body" element="tns:GetAccountBalanceResponse"/>
1264
+ </wsdl:message>
1265
+
1266
+
1267
+ <wsdl:message name="GetDebtBalanceRequestMsg">
1268
+ <wsdl:part name="body" element="tns:GetDebtBalance"/>
1269
+ </wsdl:message>
1270
+ <wsdl:message name="GetDebtBalanceResponseMsg">
1271
+ <wsdl:part name="body" element="tns:GetDebtBalanceResponse"/>
1272
+ </wsdl:message>
1273
+
1274
+
1275
+ <wsdl:message name="GetOutstandingDebtBalanceRequestMsg">
1276
+ <wsdl:part name="body" element="tns:GetOutstandingDebtBalance"/>
1277
+ </wsdl:message>
1278
+ <wsdl:message name="GetOutstandingDebtBalanceResponseMsg">
1279
+ <wsdl:part name="body" element="tns:GetOutstandingDebtBalanceResponse"/>
1280
+ </wsdl:message>
1281
+
1282
+
1283
+ <wsdl:message name="GetPrepaidBalanceRequestMsg">
1284
+ <wsdl:part name="body" element="tns:GetPrepaidBalance"/>
1285
+ </wsdl:message>
1286
+ <wsdl:message name="GetPrepaidBalanceResponseMsg">
1287
+ <wsdl:part name="body" element="tns:GetPrepaidBalanceResponse"/>
1288
+ </wsdl:message>
1289
+
1290
+
1291
+ <wsdl:message name="GetTokenByCallerRequestMsg">
1292
+ <wsdl:part name="body" element="tns:GetTokenByCaller"/>
1293
+ </wsdl:message>
1294
+ <wsdl:message name="GetTokenByCallerResponseMsg">
1295
+ <wsdl:part name="body" element="tns:GetTokenByCallerResponse"/>
1296
+ </wsdl:message>
1297
+
1298
+ <wsdl:message name="CancelSubscriptionAndRefundRequestMsg">
1299
+ <wsdl:part name="body" element="tns:CancelSubscriptionAndRefund"/>
1300
+ </wsdl:message>
1301
+ <wsdl:message name="CancelSubscriptionAndRefundResponseMsg">
1302
+ <wsdl:part name="body" element="tns:CancelSubscriptionAndRefundResponse"/>
1303
+ </wsdl:message>
1304
+
1305
+ <wsdl:message name="GetTokenUsageRequestMsg">
1306
+ <wsdl:part name="body" element="tns:GetTokenUsage"/>
1307
+ </wsdl:message>
1308
+ <wsdl:message name="GetTokenUsageResponseMsg">
1309
+ <wsdl:part name="body" element="tns:GetTokenUsageResponse"/>
1310
+ </wsdl:message>
1311
+
1312
+
1313
+ <wsdl:message name="GetTokensRequestMsg">
1314
+ <wsdl:part name="body" element="tns:GetTokens"/>
1315
+ </wsdl:message>
1316
+ <wsdl:message name="GetTokensResponseMsg">
1317
+ <wsdl:part name="body" element="tns:GetTokensResponse"/>
1318
+ </wsdl:message>
1319
+
1320
+
1321
+ <wsdl:message name="GetTotalPrepaidLiabilityRequestMsg">
1322
+ <wsdl:part name="body" element="tns:GetTotalPrepaidLiability"/>
1323
+ </wsdl:message>
1324
+ <wsdl:message name="GetTotalPrepaidLiabilityResponseMsg">
1325
+ <wsdl:part name="body" element="tns:GetTotalPrepaidLiabilityResponse"/>
1326
+ </wsdl:message>
1327
+
1328
+
1329
+ <wsdl:message name="GetTransactionRequestMsg">
1330
+ <wsdl:part name="body" element="tns:GetTransaction"/>
1331
+ </wsdl:message>
1332
+ <wsdl:message name="GetTransactionResponseMsg">
1333
+ <wsdl:part name="body" element="tns:GetTransactionResponse"/>
1334
+ </wsdl:message>
1335
+
1336
+
1337
+ <wsdl:message name="GetTransactionStatusRequestMsg">
1338
+ <wsdl:part name="body" element="tns:GetTransactionStatus"/>
1339
+ </wsdl:message>
1340
+ <wsdl:message name="GetTransactionStatusResponseMsg">
1341
+ <wsdl:part name="body" element="tns:GetTransactionStatusResponse"/>
1342
+ </wsdl:message>
1343
+
1344
+
1345
+ <wsdl:message name="GetPaymentInstructionRequestMsg">
1346
+ <wsdl:part name="body" element="tns:GetPaymentInstruction"/>
1347
+ </wsdl:message>
1348
+ <wsdl:message name="GetPaymentInstructionResponseMsg">
1349
+ <wsdl:part name="body" element="tns:GetPaymentInstructionResponse"/>
1350
+ </wsdl:message>
1351
+
1352
+
1353
+ <wsdl:message name="InstallPaymentInstructionRequestMsg">
1354
+ <wsdl:part name="body" element="tns:InstallPaymentInstruction"/>
1355
+ </wsdl:message>
1356
+ <wsdl:message name="InstallPaymentInstructionResponseMsg">
1357
+ <wsdl:part name="body" element="tns:InstallPaymentInstructionResponse"/>
1358
+ </wsdl:message>
1359
+
1360
+
1361
+ <wsdl:message name="PayRequestMsg">
1362
+ <wsdl:part name="body" element="tns:Pay"/>
1363
+ </wsdl:message>
1364
+ <wsdl:message name="PayResponseMsg">
1365
+ <wsdl:part name="body" element="tns:PayResponse"/>
1366
+ </wsdl:message>
1367
+
1368
+
1369
+ <wsdl:message name="RefundRequestMsg">
1370
+ <wsdl:part name="body" element="tns:Refund"/>
1371
+ </wsdl:message>
1372
+ <wsdl:message name="RefundResponseMsg">
1373
+ <wsdl:part name="body" element="tns:RefundResponse"/>
1374
+ </wsdl:message>
1375
+
1376
+
1377
+ <wsdl:message name="ReserveRequestMsg">
1378
+ <wsdl:part name="body" element="tns:Reserve"/>
1379
+ </wsdl:message>
1380
+ <wsdl:message name="ReserveResponseMsg">
1381
+ <wsdl:part name="body" element="tns:ReserveResponse"/>
1382
+ </wsdl:message>
1383
+
1384
+
1385
+ <wsdl:message name="SettleRequestMsg">
1386
+ <wsdl:part name="body" element="tns:Settle"/>
1387
+ </wsdl:message>
1388
+ <wsdl:message name="SettleResponseMsg">
1389
+ <wsdl:part name="body" element="tns:SettleResponse"/>
1390
+ </wsdl:message>
1391
+
1392
+
1393
+ <wsdl:message name="SettleDebtRequestMsg">
1394
+ <wsdl:part name="body" element="tns:SettleDebt"/>
1395
+ </wsdl:message>
1396
+ <wsdl:message name="SettleDebtResponseMsg">
1397
+ <wsdl:part name="body" element="tns:SettleDebtResponse"/>
1398
+ </wsdl:message>
1399
+
1400
+
1401
+ <wsdl:message name="WriteOffDebtRequestMsg">
1402
+ <wsdl:part name="body" element="tns:WriteOffDebt"/>
1403
+ </wsdl:message>
1404
+ <wsdl:message name="WriteOffDebtResponseMsg">
1405
+ <wsdl:part name="body" element="tns:WriteOffDebtResponse"/>
1406
+ </wsdl:message>
1407
+
1408
+
1409
+ <wsdl:message name="GetRecipientVerificationStatusRequestMsg">
1410
+ <wsdl:part name="body" element="tns:GetRecipientVerificationStatus"/>
1411
+ </wsdl:message>
1412
+ <wsdl:message name="GetRecipientVerificationStatusResponseMsg">
1413
+ <wsdl:part name="body" element="tns:GetRecipientVerificationStatusResponse"/>
1414
+ </wsdl:message>
1415
+
1416
+
1417
+ <wsdl:message name="VerifySignatureRequestMsg">
1418
+ <wsdl:part name="body" element="tns:VerifySignature"/>
1419
+ </wsdl:message>
1420
+ <wsdl:message name="VerifySignatureResponseMsg">
1421
+ <wsdl:part name="body" element="tns:VerifySignatureResponse"/>
1422
+ </wsdl:message>
1423
+
1424
+ <!-- ********************************* Ports *********************************** -->
1425
+
1426
+ <wsdl:portType name="AmazonFPSPortType">
1427
+
1428
+ <wsdl:operation name="CancelToken">
1429
+ <wsdl:documentation>
1430
+ Cancels any token installed by the calling application on its own account.
1431
+ </wsdl:documentation>
1432
+ <wsdl:input message="tns:CancelTokenRequestMsg" wsa:Action="urn:CancelToken"/>
1433
+ <wsdl:output message="tns:CancelTokenResponseMsg" wsa:Action="urn:CancelToken:Response"/>
1434
+ </wsdl:operation>
1435
+
1436
+ <wsdl:operation name="Cancel">
1437
+ <wsdl:documentation>
1438
+ Cancels an ongoing transaction and puts it in cancelled state.
1439
+ </wsdl:documentation>
1440
+ <wsdl:input message="tns:CancelRequestMsg" wsa:Action="urn:Cancel"/>
1441
+ <wsdl:output message="tns:CancelResponseMsg" wsa:Action="urn:Cancel:Response"/>
1442
+ </wsdl:operation>
1443
+
1444
+ <wsdl:operation name="FundPrepaid">
1445
+ <wsdl:documentation>
1446
+ Funds the prepaid balance on the given prepaid instrument.
1447
+ </wsdl:documentation>
1448
+ <wsdl:input message="tns:FundPrepaidRequestMsg" wsa:Action="urn:FundPrepaid"/>
1449
+ <wsdl:output message="tns:FundPrepaidResponseMsg" wsa:Action="urn:FundPrepaid:Response"/>
1450
+ </wsdl:operation>
1451
+
1452
+ <wsdl:operation name="GetAccountActivity">
1453
+ <wsdl:documentation>
1454
+ Returns transactions for a given date range.
1455
+ </wsdl:documentation>
1456
+ <wsdl:input message="tns:GetAccountActivityRequestMsg" wsa:Action="urn:GetAccountActivity"/>
1457
+ <wsdl:output message="tns:GetAccountActivityResponseMsg" wsa:Action="urn:GetAccountActivity:Response"/>
1458
+ </wsdl:operation>
1459
+
1460
+ <wsdl:operation name="GetAccountBalance">
1461
+ <wsdl:documentation>
1462
+ Returns the account balance for an account in real time.
1463
+ </wsdl:documentation>
1464
+ <wsdl:input message="tns:GetAccountBalanceRequestMsg" wsa:Action="urn:GetAccountBalance"/>
1465
+ <wsdl:output message="tns:GetAccountBalanceResponseMsg" wsa:Action="urn:GetAccountBalance:Response"/>
1466
+ </wsdl:operation>
1467
+
1468
+ <wsdl:operation name="GetDebtBalance">
1469
+ <wsdl:documentation>
1470
+ Returns the balance corresponding to the given credit instrument.
1471
+ </wsdl:documentation>
1472
+ <wsdl:input message="tns:GetDebtBalanceRequestMsg" wsa:Action="urn:GetDebtBalance"/>
1473
+ <wsdl:output message="tns:GetDebtBalanceResponseMsg" wsa:Action="urn:GetDebtBalance:Response"/>
1474
+ </wsdl:operation>
1475
+
1476
+ <wsdl:operation name="GetOutstandingDebtBalance">
1477
+ <wsdl:documentation>
1478
+ Returns the total outstanding balance for all the credit instruments for the given creditor account.
1479
+ </wsdl:documentation>
1480
+ <wsdl:input message="tns:GetOutstandingDebtBalanceRequestMsg" wsa:Action="urn:GetOutstandingDebtBalance"/>
1481
+ <wsdl:output message="tns:GetOutstandingDebtBalanceResponseMsg" wsa:Action="urn:GetOutstandingDebtBalance:Response"/>
1482
+ </wsdl:operation>
1483
+
1484
+ <wsdl:operation name="GetPrepaidBalance">
1485
+ <wsdl:documentation>
1486
+ Returns the balance available on the given prepaid instrument.
1487
+ </wsdl:documentation>
1488
+ <wsdl:input message="tns:GetPrepaidBalanceRequestMsg" wsa:Action="urn:GetPrepaidBalance"/>
1489
+ <wsdl:output message="tns:GetPrepaidBalanceResponseMsg" wsa:Action="urn:GetPrepaidBalance:Response"/>
1490
+ </wsdl:operation>
1491
+
1492
+ <wsdl:operation name="GetTokenByCaller">
1493
+ <wsdl:documentation>
1494
+ Returns the details of a particular token installed by this calling application using the subway co-branded UI.
1495
+ </wsdl:documentation>
1496
+ <wsdl:input message="tns:GetTokenByCallerRequestMsg" wsa:Action="urn:GetTokenByCaller"/>
1497
+ <wsdl:output message="tns:GetTokenByCallerResponseMsg" wsa:Action="urn:GetTokenByCaller:Response"/>
1498
+ </wsdl:operation>
1499
+
1500
+ <wsdl:operation name="CancelSubscriptionAndRefund">
1501
+ <wsdl:documentation>
1502
+ Cancels a subscription.
1503
+ </wsdl:documentation>
1504
+ <wsdl:input message="tns:CancelSubscriptionAndRefundRequestMsg" wsa:Action="urn:CancelSubscriptionAndRefund"/>
1505
+ <wsdl:output message="tns:CancelSubscriptionAndRefundResponseMsg" wsa:Action="urn:CancelSubscriptionAndRefund:Response"/>
1506
+ </wsdl:operation>
1507
+
1508
+ <wsdl:operation name="GetTokenUsage">
1509
+ <wsdl:documentation>
1510
+ Returns the usage of a token.
1511
+ </wsdl:documentation>
1512
+ <wsdl:input message="tns:GetTokenUsageRequestMsg" wsa:Action="urn:GetTokenUsage"/>
1513
+ <wsdl:output message="tns:GetTokenUsageResponseMsg" wsa:Action="urn:GetTokenUsage:Response"/>
1514
+ </wsdl:operation>
1515
+
1516
+ <wsdl:operation name="GetTokens">
1517
+ <wsdl:documentation>
1518
+ Returns a list of tokens installed on the given account.
1519
+ </wsdl:documentation>
1520
+ <wsdl:input message="tns:GetTokensRequestMsg" wsa:Action="urn:GetTokens"/>
1521
+ <wsdl:output message="tns:GetTokensResponseMsg" wsa:Action="urn:GetTokens:Response"/>
1522
+ </wsdl:operation>
1523
+
1524
+ <wsdl:operation name="GetTotalPrepaidLiability">
1525
+ <wsdl:documentation>
1526
+ Returns the total liability held by the given account corresponding to all the prepaid instruments owned by the account.
1527
+ </wsdl:documentation>
1528
+ <wsdl:input message="tns:GetTotalPrepaidLiabilityRequestMsg" wsa:Action="urn:GetTotalPrepaidLiability"/>
1529
+ <wsdl:output message="tns:GetTotalPrepaidLiabilityResponseMsg" wsa:Action="urn:GetTotalPrepaidLiability:Response"/>
1530
+ </wsdl:operation>
1531
+
1532
+ <wsdl:operation name="GetTransaction">
1533
+ <wsdl:documentation>
1534
+ Returns all details of a transaction.
1535
+ </wsdl:documentation>
1536
+ <wsdl:input message="tns:GetTransactionRequestMsg" wsa:Action="urn:GetTransaction"/>
1537
+ <wsdl:output message="tns:GetTransactionResponseMsg" wsa:Action="urn:GetTransaction:Response"/>
1538
+ </wsdl:operation>
1539
+
1540
+ <wsdl:operation name="GetTransactionStatus">
1541
+ <wsdl:documentation>
1542
+ Gets the latest status of a transaction.
1543
+ </wsdl:documentation>
1544
+ <wsdl:input message="tns:GetTransactionStatusRequestMsg" wsa:Action="urn:GetTransactionStatus"/>
1545
+ <wsdl:output message="tns:GetTransactionStatusResponseMsg" wsa:Action="urn:GetTransactionStatus:Response"/>
1546
+ </wsdl:operation>
1547
+
1548
+ <wsdl:operation name="GetPaymentInstruction">
1549
+ <wsdl:documentation>
1550
+ Gets the payment instruction of a token.
1551
+ </wsdl:documentation>
1552
+ <wsdl:input message="tns:GetPaymentInstructionRequestMsg" wsa:Action="urn:GetPaymentInstruction"/>
1553
+ <wsdl:output message="tns:GetPaymentInstructionResponseMsg" wsa:Action="urn:GetPaymentInstruction:Response"/>
1554
+ </wsdl:operation>
1555
+
1556
+ <wsdl:operation name="InstallPaymentInstruction">
1557
+ <wsdl:documentation>
1558
+ Installs a payment instruction for caller.
1559
+ </wsdl:documentation>
1560
+ <wsdl:input message="tns:InstallPaymentInstructionRequestMsg" wsa:Action="urn:InstallPaymentInstruction"/>
1561
+ <wsdl:output message="tns:InstallPaymentInstructionResponseMsg" wsa:Action="urn:InstallPaymentInstruction:Response"/>
1562
+ </wsdl:operation>
1563
+
1564
+ <wsdl:operation name="Pay">
1565
+ <wsdl:documentation>
1566
+ Allows calling applications to move money from a sender to a recipient.
1567
+ </wsdl:documentation>
1568
+ <wsdl:input message="tns:PayRequestMsg" wsa:Action="urn:Pay"/>
1569
+ <wsdl:output message="tns:PayResponseMsg" wsa:Action="urn:Pay:Response"/>
1570
+ </wsdl:operation>
1571
+
1572
+ <wsdl:operation name="Refund">
1573
+ <wsdl:documentation>
1574
+ Refunds a previously completed transaction.
1575
+ </wsdl:documentation>
1576
+ <wsdl:input message="tns:RefundRequestMsg" wsa:Action="urn:Refund"/>
1577
+ <wsdl:output message="tns:RefundResponseMsg" wsa:Action="urn:Refund:Response"/>
1578
+ </wsdl:operation>
1579
+
1580
+ <wsdl:operation name="Reserve">
1581
+ <wsdl:documentation>
1582
+ Reserve API is part of the Reserve and Settle API conjunction that serve the purpose of a pay where the authorization and settlement have a timing difference.
1583
+ </wsdl:documentation>
1584
+ <wsdl:input message="tns:ReserveRequestMsg" wsa:Action="urn:Reserve"/>
1585
+ <wsdl:output message="tns:ReserveResponseMsg" wsa:Action="urn:Reserve:Response"/>
1586
+ </wsdl:operation>
1587
+
1588
+ <wsdl:operation name="Settle">
1589
+ <wsdl:documentation>
1590
+ The Settle API is used in conjunction with the Reserve API and is used to settle previously reserved transaction.
1591
+ </wsdl:documentation>
1592
+ <wsdl:input message="tns:SettleRequestMsg" wsa:Action="urn:Settle"/>
1593
+ <wsdl:output message="tns:SettleResponseMsg" wsa:Action="urn:Settle:Response"/>
1594
+ </wsdl:operation>
1595
+
1596
+ <wsdl:operation name="SettleDebt">
1597
+ <wsdl:documentation>
1598
+ Allows a caller to initiate a transaction that atomically transfers money from a sender’s payment instrument to the recipient, while decreasing corresponding debt balance.
1599
+ </wsdl:documentation>
1600
+ <wsdl:input message="tns:SettleDebtRequestMsg" wsa:Action="urn:SettleDebt"/>
1601
+ <wsdl:output message="tns:SettleDebtResponseMsg" wsa:Action="urn:SettleDebt:Response"/>
1602
+ </wsdl:operation>
1603
+
1604
+ <wsdl:operation name="WriteOffDebt">
1605
+ <wsdl:documentation>
1606
+ Allows a creditor to write off the debt balance accumulated partially or fully at any time.
1607
+ </wsdl:documentation>
1608
+ <wsdl:input message="tns:WriteOffDebtRequestMsg" wsa:Action="urn:WriteOffDebt"/>
1609
+ <wsdl:output message="tns:WriteOffDebtResponseMsg" wsa:Action="urn:WriteOffDebt:Response"/>
1610
+ </wsdl:operation>
1611
+
1612
+ <wsdl:operation name="GetRecipientVerificationStatus">
1613
+ <wsdl:documentation>
1614
+ Returns the recipient status.
1615
+ </wsdl:documentation>
1616
+ <wsdl:input message="tns:GetRecipientVerificationStatusRequestMsg" wsa:Action="urn:GetRecipientVerificationStatus"/>
1617
+ <wsdl:output message="tns:GetRecipientVerificationStatusResponseMsg" wsa:Action="urn:GetRecipientVerificationStatus:Response"/>
1618
+ </wsdl:operation>
1619
+
1620
+ <wsdl:operation name="VerifySignature">
1621
+ <wsdl:documentation>
1622
+ Verify the signature that FPS sent in IPN or callback urls.
1623
+ </wsdl:documentation>
1624
+ <wsdl:input message="tns:VerifySignatureRequestMsg" wsa:Action="urn:VerifySignature"/>
1625
+ <wsdl:output message="tns:VerifySignatureResponseMsg" wsa:Action="urn:VerifySignature:Response"/>
1626
+ </wsdl:operation>
1627
+
1628
+ </wsdl:portType>
1629
+
1630
+
1631
+ <!-- ******************************** Bindings ********************************** -->
1632
+
1633
+ <wsdl:binding name="AmazonFPSBinding" type="tns:AmazonFPSPortType">
1634
+
1635
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
1636
+
1637
+ <wsdl:operation name="CancelToken">
1638
+ <soap:operation soapAction="CancelToken"/>
1639
+ <wsdl:input>
1640
+ <soap:body use="literal"/>
1641
+ </wsdl:input>
1642
+ <wsdl:output>
1643
+ <soap:body use="literal"/>
1644
+ </wsdl:output>
1645
+ </wsdl:operation>
1646
+
1647
+
1648
+ <wsdl:operation name="Cancel">
1649
+ <soap:operation soapAction="Cancel"/>
1650
+ <wsdl:input>
1651
+ <soap:body use="literal"/>
1652
+ </wsdl:input>
1653
+ <wsdl:output>
1654
+ <soap:body use="literal"/>
1655
+ </wsdl:output>
1656
+ </wsdl:operation>
1657
+
1658
+
1659
+ <wsdl:operation name="FundPrepaid">
1660
+ <soap:operation soapAction="FundPrepaid"/>
1661
+ <wsdl:input>
1662
+ <soap:body use="literal"/>
1663
+ </wsdl:input>
1664
+ <wsdl:output>
1665
+ <soap:body use="literal"/>
1666
+ </wsdl:output>
1667
+ </wsdl:operation>
1668
+
1669
+
1670
+ <wsdl:operation name="GetAccountActivity">
1671
+ <soap:operation soapAction="GetAccountActivity"/>
1672
+ <wsdl:input>
1673
+ <soap:body use="literal"/>
1674
+ </wsdl:input>
1675
+ <wsdl:output>
1676
+ <soap:body use="literal"/>
1677
+ </wsdl:output>
1678
+ </wsdl:operation>
1679
+
1680
+
1681
+ <wsdl:operation name="GetAccountBalance">
1682
+ <soap:operation soapAction="GetAccountBalance"/>
1683
+ <wsdl:input>
1684
+ <soap:body use="literal"/>
1685
+ </wsdl:input>
1686
+ <wsdl:output>
1687
+ <soap:body use="literal"/>
1688
+ </wsdl:output>
1689
+ </wsdl:operation>
1690
+
1691
+
1692
+ <wsdl:operation name="GetDebtBalance">
1693
+ <soap:operation soapAction="GetDebtBalance"/>
1694
+ <wsdl:input>
1695
+ <soap:body use="literal"/>
1696
+ </wsdl:input>
1697
+ <wsdl:output>
1698
+ <soap:body use="literal"/>
1699
+ </wsdl:output>
1700
+ </wsdl:operation>
1701
+
1702
+
1703
+ <wsdl:operation name="GetOutstandingDebtBalance">
1704
+ <soap:operation soapAction="GetOutstandingDebtBalance"/>
1705
+ <wsdl:input>
1706
+ <soap:body use="literal"/>
1707
+ </wsdl:input>
1708
+ <wsdl:output>
1709
+ <soap:body use="literal"/>
1710
+ </wsdl:output>
1711
+ </wsdl:operation>
1712
+
1713
+
1714
+ <wsdl:operation name="GetPrepaidBalance">
1715
+ <soap:operation soapAction="GetPrepaidBalance"/>
1716
+ <wsdl:input>
1717
+ <soap:body use="literal"/>
1718
+ </wsdl:input>
1719
+ <wsdl:output>
1720
+ <soap:body use="literal"/>
1721
+ </wsdl:output>
1722
+ </wsdl:operation>
1723
+
1724
+
1725
+ <wsdl:operation name="GetTokenByCaller">
1726
+ <soap:operation soapAction="GetTokenByCaller"/>
1727
+ <wsdl:input>
1728
+ <soap:body use="literal"/>
1729
+ </wsdl:input>
1730
+ <wsdl:output>
1731
+ <soap:body use="literal"/>
1732
+ </wsdl:output>
1733
+ </wsdl:operation>
1734
+
1735
+ <wsdl:operation name="CancelSubscriptionAndRefund">
1736
+ <soap:operation soapAction="urn:CancelSubscriptionAndRefund"/>
1737
+ <wsdl:input>
1738
+ <soap:body use="literal"/>
1739
+ </wsdl:input>
1740
+ <wsdl:output>
1741
+ <soap:body use="literal"/>
1742
+ </wsdl:output>
1743
+ </wsdl:operation>
1744
+
1745
+ <wsdl:operation name="GetTokenUsage">
1746
+ <soap:operation soapAction="GetTokenUsage"/>
1747
+ <wsdl:input>
1748
+ <soap:body use="literal"/>
1749
+ </wsdl:input>
1750
+ <wsdl:output>
1751
+ <soap:body use="literal"/>
1752
+ </wsdl:output>
1753
+ </wsdl:operation>
1754
+
1755
+
1756
+ <wsdl:operation name="GetTokens">
1757
+ <soap:operation soapAction="GetTokens"/>
1758
+ <wsdl:input>
1759
+ <soap:body use="literal"/>
1760
+ </wsdl:input>
1761
+ <wsdl:output>
1762
+ <soap:body use="literal"/>
1763
+ </wsdl:output>
1764
+ </wsdl:operation>
1765
+
1766
+
1767
+ <wsdl:operation name="GetTotalPrepaidLiability">
1768
+ <soap:operation soapAction="GetTotalPrepaidLiability"/>
1769
+ <wsdl:input>
1770
+ <soap:body use="literal"/>
1771
+ </wsdl:input>
1772
+ <wsdl:output>
1773
+ <soap:body use="literal"/>
1774
+ </wsdl:output>
1775
+ </wsdl:operation>
1776
+
1777
+
1778
+ <wsdl:operation name="GetTransaction">
1779
+ <soap:operation soapAction="GetTransaction"/>
1780
+ <wsdl:input>
1781
+ <soap:body use="literal"/>
1782
+ </wsdl:input>
1783
+ <wsdl:output>
1784
+ <soap:body use="literal"/>
1785
+ </wsdl:output>
1786
+ </wsdl:operation>
1787
+
1788
+
1789
+ <wsdl:operation name="GetTransactionStatus">
1790
+ <soap:operation soapAction="GetTransactionStatus"/>
1791
+ <wsdl:input>
1792
+ <soap:body use="literal"/>
1793
+ </wsdl:input>
1794
+ <wsdl:output>
1795
+ <soap:body use="literal"/>
1796
+ </wsdl:output>
1797
+ </wsdl:operation>
1798
+
1799
+
1800
+ <wsdl:operation name="GetPaymentInstruction">
1801
+ <soap:operation soapAction="urn:GetPaymentInstruction"/>
1802
+ <wsdl:input>
1803
+ <soap:body use="literal"/>
1804
+ </wsdl:input>
1805
+ <wsdl:output>
1806
+ <soap:body use="literal"/>
1807
+ </wsdl:output>
1808
+ </wsdl:operation>
1809
+
1810
+
1811
+ <wsdl:operation name="InstallPaymentInstruction">
1812
+ <soap:operation soapAction="urn:InstallPaymentInstruction"/>
1813
+ <wsdl:input>
1814
+ <soap:body use="literal"/>
1815
+ </wsdl:input>
1816
+ <wsdl:output>
1817
+ <soap:body use="literal"/>
1818
+ </wsdl:output>
1819
+ </wsdl:operation>
1820
+
1821
+
1822
+ <wsdl:operation name="Pay">
1823
+ <soap:operation soapAction="Pay"/>
1824
+ <wsdl:input>
1825
+ <soap:body use="literal"/>
1826
+ </wsdl:input>
1827
+ <wsdl:output>
1828
+ <soap:body use="literal"/>
1829
+ </wsdl:output>
1830
+ </wsdl:operation>
1831
+
1832
+
1833
+ <wsdl:operation name="Refund">
1834
+ <soap:operation soapAction="Refund"/>
1835
+ <wsdl:input>
1836
+ <soap:body use="literal"/>
1837
+ </wsdl:input>
1838
+ <wsdl:output>
1839
+ <soap:body use="literal"/>
1840
+ </wsdl:output>
1841
+ </wsdl:operation>
1842
+
1843
+
1844
+ <wsdl:operation name="Reserve">
1845
+ <soap:operation soapAction="Reserve"/>
1846
+ <wsdl:input>
1847
+ <soap:body use="literal"/>
1848
+ </wsdl:input>
1849
+ <wsdl:output>
1850
+ <soap:body use="literal"/>
1851
+ </wsdl:output>
1852
+ </wsdl:operation>
1853
+
1854
+
1855
+ <wsdl:operation name="Settle">
1856
+ <soap:operation soapAction="Settle"/>
1857
+ <wsdl:input>
1858
+ <soap:body use="literal"/>
1859
+ </wsdl:input>
1860
+ <wsdl:output>
1861
+ <soap:body use="literal"/>
1862
+ </wsdl:output>
1863
+ </wsdl:operation>
1864
+
1865
+
1866
+ <wsdl:operation name="SettleDebt">
1867
+ <soap:operation soapAction="SettleDebt"/>
1868
+ <wsdl:input>
1869
+ <soap:body use="literal"/>
1870
+ </wsdl:input>
1871
+ <wsdl:output>
1872
+ <soap:body use="literal"/>
1873
+ </wsdl:output>
1874
+ </wsdl:operation>
1875
+
1876
+
1877
+ <wsdl:operation name="WriteOffDebt">
1878
+ <soap:operation soapAction="WriteOffDebt"/>
1879
+ <wsdl:input>
1880
+ <soap:body use="literal"/>
1881
+ </wsdl:input>
1882
+ <wsdl:output>
1883
+ <soap:body use="literal"/>
1884
+ </wsdl:output>
1885
+ </wsdl:operation>
1886
+
1887
+
1888
+ <wsdl:operation name="GetRecipientVerificationStatus">
1889
+ <soap:operation soapAction="GetRecipientVerificationStatus"/>
1890
+ <wsdl:input>
1891
+ <soap:body use="literal"/>
1892
+ </wsdl:input>
1893
+ <wsdl:output>
1894
+ <soap:body use="literal"/>
1895
+ </wsdl:output>
1896
+ </wsdl:operation>
1897
+
1898
+ <wsdl:operation name="VerifySignature">
1899
+ <soap:operation soapAction="VerifySignature"/>
1900
+ <wsdl:input>
1901
+ <soap:body use="literal"/>
1902
+ </wsdl:input>
1903
+ <wsdl:output>
1904
+ <soap:body use="literal"/>
1905
+ </wsdl:output>
1906
+ </wsdl:operation>
1907
+ </wsdl:binding>
1908
+
1909
+ <!-- ******************************** Service ********************************** -->
1910
+
1911
+ <wsdl:service name="AmazonFPS">
1912
+ <wsdl:documentation>
1913
+ Amazon Flexible Payments Service
1914
+ </wsdl:documentation>
1915
+ <wsdl:port name="AmazonFPSPort" binding="tns:AmazonFPSBinding">
1916
+ <soap:address location="https://fps.amazonaws.com"/>
1917
+ </wsdl:port>
1918
+ </wsdl:service>
1919
+
1920
+ </wsdl:definitions>