spree_packeta 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.
@@ -0,0 +1,1819 @@
1
+ <?xml version="1.0"?>
2
+ <definitions name="packetery"
3
+ targetNamespace="http://www.zasilkovna.cz/api/soap.wsdl"
4
+ xmlns:tns="http://www.zasilkovna.cz/api/soap.wsdl"
5
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0"
8
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
9
+
10
+ <types>
11
+ <xsd:schema jaxb:version="2.0" elementFormDefault="qualified" targetNamespace="http://www.zasilkovna.cz/api/soap.wsdl">
12
+ <xsd:annotation>
13
+ <xsd:appinfo>
14
+ <jaxb:globalBindings>
15
+ <jaxb:javaType name="java.util.Calendar" xmlType="xsd:dateTime" parseMethod="javax.xml.bind.DatatypeConverter.parseDateTime" printMethod="javax.xml.bind.DatatypeConverter.printDateTime" />
16
+ </jaxb:globalBindings>
17
+ </xsd:appinfo>
18
+ </xsd:annotation>
19
+
20
+ <xsd:simpleType name="string2">
21
+ <xsd:restriction base="xsd:string">
22
+ <xsd:length value="2" />
23
+ </xsd:restriction>
24
+ </xsd:simpleType>
25
+ <xsd:simpleType name="string16">
26
+ <xsd:restriction base="xsd:string">
27
+ <xsd:maxLength value="16" />
28
+ </xsd:restriction>
29
+ </xsd:simpleType>
30
+ <xsd:simpleType name="string24">
31
+ <xsd:restriction base="xsd:string">
32
+ <xsd:maxLength value="24" />
33
+ </xsd:restriction>
34
+ </xsd:simpleType>
35
+ <xsd:simpleType name="string32">
36
+ <xsd:restriction base="xsd:string">
37
+ <xsd:maxLength value="32" />
38
+ </xsd:restriction>
39
+ </xsd:simpleType>
40
+ <xsd:simpleType name="string64">
41
+ <xsd:restriction base="xsd:string">
42
+ <xsd:maxLength value="64" />
43
+ </xsd:restriction>
44
+ </xsd:simpleType>
45
+ <xsd:simpleType name="string256">
46
+ <xsd:restriction base="xsd:string">
47
+ <xsd:maxLength value="256" />
48
+ </xsd:restriction>
49
+ </xsd:simpleType>
50
+ <xsd:simpleType name="email">
51
+ <xsd:restriction base="xsd:string">
52
+ <xsd:pattern value="|.*@.*\..*" />
53
+ </xsd:restriction>
54
+ </xsd:simpleType>
55
+ <xsd:simpleType name="phone">
56
+ <xsd:restriction base="xsd:string">
57
+ <xsd:maxLength value="20" />
58
+ </xsd:restriction>
59
+ </xsd:simpleType>
60
+ <xsd:simpleType name="money">
61
+ <xsd:restriction base="xsd:decimal">
62
+ <xsd:fractionDigits value="2" />
63
+ </xsd:restriction>
64
+ </xsd:simpleType>
65
+ <xsd:simpleType name="weight">
66
+ <xsd:restriction base="xsd:decimal">
67
+ <xsd:fractionDigits value="3" />
68
+ </xsd:restriction>
69
+ </xsd:simpleType>
70
+ <xsd:simpleType name="zip">
71
+ <xsd:restriction base="xsd:string">
72
+ <xsd:maxLength value="255" />
73
+ </xsd:restriction>
74
+ </xsd:simpleType>
75
+ <xsd:simpleType name="currency">
76
+ <xsd:restriction base="xsd:string">
77
+ <xsd:length value="3" />
78
+ </xsd:restriction>
79
+ </xsd:simpleType>
80
+ <xsd:simpleType name="apiKey">
81
+ <xsd:restriction base="xsd:string">
82
+ <xsd:length value="16" />
83
+ </xsd:restriction>
84
+ </xsd:simpleType>
85
+ <xsd:simpleType name="ead">
86
+ <xsd:restriction base="xsd:string">
87
+ <xsd:enumeration value="own"/>
88
+ <xsd:enumeration value="create"/>
89
+ <xsd:enumeration value="carrier"/>
90
+ </xsd:restriction>
91
+ </xsd:simpleType>
92
+ <xsd:complexType name="ExternalStatusRecord">
93
+ <xsd:sequence>
94
+ <xsd:element name="dateTime" type="xsd:dateTime" />
95
+ <xsd:element name="carrierClass" type="xsd:string" />
96
+ <xsd:element name="statusCode" type="xsd:string" />
97
+ <xsd:element name="externalStatusName" type="xsd:string" />
98
+ <xsd:element name="externalNote" type="xsd:string" nillable="true" />
99
+ <xsd:element name="externalTrackingCode" type="xsd:string" nillable="true" />
100
+ </xsd:sequence>
101
+ </xsd:complexType>
102
+
103
+ <xsd:complexType name="StatusRecord">
104
+ <xsd:sequence>
105
+ <xsd:element name="dateTime" type="xsd:dateTime" />
106
+ <xsd:element name="statusCode" type="xsd:unsignedInt" />
107
+ <xsd:element name="codeText" type="xsd:string" />
108
+ <xsd:element name="statusText" type="xsd:string" />
109
+ <xsd:element name="branchId" type="xsd:unsignedInt" />
110
+ <xsd:element name="destinationBranchId" type="xsd:unsignedInt" />
111
+ <xsd:element name="externalTrackingCode" type="xsd:string" nillable="true" />
112
+ </xsd:sequence>
113
+ </xsd:complexType>
114
+ <xsd:complexType name="CurrentStatusRecord">
115
+ <xsd:complexContent>
116
+ <xsd:extension base="tns:StatusRecord">
117
+ <xsd:sequence>
118
+ <xsd:element name="isReturning" type="xsd:boolean" />
119
+ <xsd:element name="storedUntil" type="xsd:date" nillable="true" />
120
+ <xsd:element name="carrierId" type="xsd:string" nillable="true" />
121
+ <xsd:element name="carrierName" type="xsd:string" nillable="true" />
122
+ </xsd:sequence>
123
+ </xsd:extension>
124
+ </xsd:complexContent>
125
+ </xsd:complexType>
126
+ <xsd:complexType name="DispatchOrder">
127
+ <xsd:sequence>
128
+ <xsd:element name="goods" type="xsd:string" />
129
+ <xsd:element name="pdf" type="xsd:base64Binary" />
130
+ </xsd:sequence>
131
+ </xsd:complexType>
132
+ <xsd:complexType name="DispatchOrder2">
133
+ <xsd:sequence>
134
+ <xsd:element name="goods" type="xsd:string" />
135
+ <xsd:element name="pdf" type="xsd:base64Binary" />
136
+ </xsd:sequence>
137
+ </xsd:complexType>
138
+ <xsd:complexType name="DispatchOrder2Item">
139
+ <xsd:sequence>
140
+ <xsd:element name="code" type="xsd:string" />
141
+ <xsd:element name="name" type="xsd:base64Binary" />
142
+ <xsd:element name="unit_price" type="xsd:base64Binary" />
143
+ <xsd:element name="pieces" type="xsd:base64Binary" />
144
+ <xsd:element name="price" type="xsd:base64Binary" />
145
+ <xsd:element name="vat" type="xsd:base64Binary" />
146
+ <xsd:element name="price_vat" type="xsd:base64Binary" />
147
+ </xsd:sequence>
148
+ </xsd:complexType>
149
+
150
+ <xsd:complexType name="PacketConsignerAttributes">
151
+ <xsd:sequence>
152
+ <xsd:element name="id" type="xsd:unsignedLong"/>
153
+ <xsd:element name="consignerEmail" type="tns:email" />
154
+ <xsd:element name="consignerPhone" type="tns:phone" minOccurs="0" />
155
+ <xsd:element name="consignerCountry" type="tns:string2" minOccurs="0" />
156
+ </xsd:sequence>
157
+ </xsd:complexType>
158
+
159
+ <xsd:complexType name="PacketAttributes">
160
+ <xsd:all>
161
+ <xsd:element name="id" type="xsd:unsignedLong" nillable="true" />
162
+ <xsd:element name="affiliateId" type="tns:string16" nillable="true" />
163
+ <xsd:element name="number" type="tns:string24" />
164
+ <xsd:element name="name" type="tns:string32" />
165
+ <xsd:element name="surname" type="tns:string32" />
166
+ <xsd:element name="company" type="tns:string32" nillable="true" />
167
+ <xsd:element name="email" type="tns:email" nillable="true" />
168
+ <xsd:element name="phone" type="tns:phone" nillable="true" />
169
+ <xsd:element name="addressId" type="xsd:unsignedInt" />
170
+ <xsd:element name="cod" type="tns:money" default="0" nillable="true" />
171
+ <xsd:element name="currency" type="tns:currency" nillable="true" />
172
+ <xsd:element name="value" type="tns:money" />
173
+ <xsd:element name="weight" type="tns:weight" />
174
+ <xsd:element name="eshop" type="tns:string64" nillable="true" />
175
+ <xsd:element name="adultContent" type="xsd:unsignedInt" default="0" nillable="true" />
176
+ <xsd:element name="deliverOn" type="xsd:date" nillable="true" />
177
+ <xsd:element name="note" type="xsd:string" nillable="true" />
178
+ <xsd:element name="street" type="tns:string64" nillable="true" />
179
+ <xsd:element name="houseNumber" type="tns:string16" nillable="true" />
180
+ <xsd:element name="city" type="tns:string32" nillable="true" />
181
+ <xsd:element name="province" type="tns:string32" nillable="true" />
182
+ <xsd:element name="zip" type="tns:zip" nillable="true" />
183
+ <xsd:element name="dispatchOrder" type="tns:DispatchOrder" nillable="true" />
184
+ <xsd:element name="customerBarcode" type="tns:string32" nillable="true" />
185
+ <xsd:element name="carrierPickupPoint" type="tns:string64" nillable="true" />
186
+ <xsd:element name="carrierService" type="xsd:string" nillable="true" />
187
+ <xsd:element name="customsDeclaration" type="tns:CustomsDeclaration" nillable="true" />
188
+ <xsd:element name="size" type="tns:Size" nillable="true" />
189
+ <xsd:element name="attributes" type="tns:AttributeCollection" minOccurs="0" />
190
+ <xsd:element name="items" type="tns:ItemCollection" minOccurs="0" />
191
+ <xsd:element name="security" type="tns:Security" minOccurs="0" />
192
+ <xsd:element name="services" type="tns:Services" minOccurs="0" />
193
+ </xsd:all>
194
+ </xsd:complexType>
195
+ <xsd:complexType name="PacketsAttributes">
196
+ <xsd:sequence>
197
+ <xsd:element name="attributes" minOccurs="1" maxOccurs="unbounded" type="tns:PacketAttributes" />
198
+ </xsd:sequence>
199
+ </xsd:complexType>
200
+ <xsd:complexType name="UpdatePacketAttributes">
201
+ <xsd:all>
202
+ <xsd:element name="cod" type="tns:money" minOccurs="0" />
203
+ </xsd:all>
204
+ </xsd:complexType>
205
+ <xsd:complexType name="PacketB2BAttributes">
206
+ <xsd:all>
207
+ <xsd:element name="addressId" type="xsd:integer" />
208
+ <xsd:element name="count" type="xsd:integer" default="1" nillable="true" />
209
+ <xsd:element name="isReturn" type="xsd:boolean" default="false" nillable="true" />
210
+ </xsd:all>
211
+ </xsd:complexType>
212
+ <xsd:complexType name="ClaimAttributes">
213
+ <xsd:all>
214
+ <xsd:element name="id" type="xsd:unsignedLong" nillable="true" />
215
+ <xsd:element name="number" type="tns:string24" />
216
+ <xsd:element name="email" type="tns:email" nillable="true" />
217
+ <xsd:element name="phone" type="tns:phone" nillable="true" />
218
+ <xsd:element name="value" type="tns:money" />
219
+ <xsd:element name="currency" type="tns:currency" />
220
+ <xsd:element name="eshop" type="tns:string64" nillable="true" />
221
+ <xsd:element name="sendLabelToEmail" type="xsd:boolean" nillable="true" />
222
+ </xsd:all>
223
+ </xsd:complexType>
224
+ <xsd:complexType name="ClaimWithPasswordAttributes">
225
+ <xsd:all>
226
+ <xsd:element name="id" type="xsd:unsignedLong" nillable="true"/>
227
+ <xsd:element name="number" type="tns:string24" />
228
+ <xsd:element name="email" type="tns:email"/>
229
+ <xsd:element name="phone" type="tns:phone" />
230
+ <xsd:element name="value" type="tns:money" />
231
+ <xsd:element name="currency" type="tns:currency" />
232
+ <xsd:element name="eshop" type="tns:string64" />
233
+ <xsd:element name="consignCountry" type="tns:string2" />
234
+ <xsd:element name="sendEmailToCustomer" type="xsd:boolean" nillable="true" />
235
+ </xsd:all>
236
+ </xsd:complexType>
237
+ <xsd:complexType name="CustomsDeclarationItems">
238
+ <xsd:sequence>
239
+ <xsd:element name="item" minOccurs="1" maxOccurs="unbounded" type="tns:CustomsDeclarationItem" />
240
+ </xsd:sequence>
241
+ </xsd:complexType>
242
+ <xsd:complexType name="CustomsDeclaration">
243
+ <xsd:all>
244
+ <xsd:element name="ead" type="tns:ead"/>
245
+ <xsd:element name="deliveryCost" type="tns:money"/>
246
+ <xsd:element name="isDocument" type="xsd:boolean" minOccurs="0"/>
247
+ <xsd:element name="invoiceNumber" type="tns:string16" minOccurs="0"/>
248
+ <xsd:element name="invoiceIssueDate" type="xsd:date" minOccurs="0"/>
249
+ <xsd:element name="mrn" type="tns:string32" minOccurs="0"/>
250
+ <xsd:element name="eadFile" type="xsd:unsignedInt" minOccurs="0"/>
251
+ <xsd:element name="invoiceFile" type="xsd:unsignedInt" minOccurs="0"/>
252
+ <xsd:element name="items" type="tns:CustomsDeclarationItems" />
253
+ </xsd:all>
254
+ </xsd:complexType>
255
+ <xsd:complexType name="CustomsDeclarationItem">
256
+ <xsd:all>
257
+ <xsd:element name="customsCode" type="xsd:unsignedLong"/>
258
+ <xsd:element name="value" type="tns:money"/>
259
+ <xsd:element name="productNameEn" type="tns:string32"/>
260
+ <xsd:element name="productName" type="tns:string32" minOccurs="0"/>
261
+ <xsd:element name="unitsCount" type="xsd:unsignedInt" default="0"/>
262
+ <xsd:element name="countryOfOrigin" type="tns:string16"/>
263
+ <xsd:element name="weight" type="xsd:unsignedInt" />
264
+ <xsd:element name="isFoodBook" type="xsd:boolean" minOccurs="0" default="0"/>
265
+ <xsd:element name="isVoc" type="xsd:boolean" minOccurs="0" default="0"/>
266
+ <xsd:element name="vocWeight" type="xsd:unsignedLong" minOccurs="0" default="0"/>
267
+ <xsd:element name="ean" type="xsd:unsignedInt" minOccurs="0" default="0"/>
268
+ <xsd:element name="isPreciousMetal" type="xsd:boolean" minOccurs="0" default="0"/>
269
+ <xsd:element name="isSalt" type="xsd:boolean" minOccurs="0" default="0"/>
270
+ </xsd:all>
271
+ </xsd:complexType>
272
+ <xsd:complexType name="ItemCollection">
273
+ <xsd:sequence>
274
+ <xsd:element name="item" minOccurs="0" maxOccurs="unbounded" type="tns:Item" />
275
+ </xsd:sequence>
276
+ </xsd:complexType>
277
+ <xsd:complexType name="Item">
278
+ <xsd:all>
279
+ <xsd:element name="attributes" type="tns:AttributeCollection" minOccurs="0" />
280
+ </xsd:all>
281
+ </xsd:complexType>
282
+ <xsd:complexType name="AttributeCollection">
283
+ <xsd:sequence>
284
+ <xsd:element name="attribute" minOccurs="0" maxOccurs="unbounded" type="tns:Attribute" />
285
+ </xsd:sequence>
286
+ </xsd:complexType>
287
+ <xsd:complexType name="Attribute">
288
+ <xsd:all>
289
+ <xsd:element name="key" type="tns:string32"/>
290
+ <xsd:element name="value" type="tns:string256" />
291
+ </xsd:all>
292
+ </xsd:complexType>
293
+ <xsd:complexType name="Security">
294
+ <xsd:all>
295
+ <xsd:element name="allowPublicTracking" minOccurs="0" type="xsd:boolean" default="0"/>
296
+ <xsd:element name="allowTrackingForUsers" minOccurs="0" type="tns:AllowTrackingForUsers" />
297
+ </xsd:all>
298
+ </xsd:complexType>
299
+ <xsd:complexType name="AllowTrackingForUsers">
300
+ <xsd:sequence>
301
+ <xsd:element name="apiKeys">
302
+ <xsd:complexType>
303
+ <xsd:sequence>
304
+ <xsd:element maxOccurs="unbounded" name="apiKey" type="tns:apiKey"/>
305
+ </xsd:sequence>
306
+ </xsd:complexType>
307
+ </xsd:element>
308
+ </xsd:sequence>
309
+ </xsd:complexType>
310
+ <xsd:complexType name="Services">
311
+ <xsd:all>
312
+ <xsd:element name="firstMileCarrier" minOccurs="0" type="tns:FirstMileCarrierService"/>
313
+ <xsd:element name="lastMileCarrier" minOccurs="0" type="tns:LastMileCarrierService"/>
314
+ <xsd:element name="returnDestination" minOccurs="0" type="tns:ReturnDestinationService"/>
315
+ </xsd:all>
316
+ </xsd:complexType>
317
+ <xsd:complexType name="FirstMileCarrierService">
318
+ <xsd:all>
319
+ <xsd:element name="addressId" type="xsd:unsignedInt"/>
320
+ <xsd:element name="foreignId" minOccurs="0" type="tns:string64"/>
321
+ <xsd:element name="barcode" minOccurs="0" type="tns:string64"/>
322
+ <xsd:element name="trackingCode" minOccurs="0" type="tns:string64"/>
323
+ </xsd:all>
324
+ </xsd:complexType>
325
+ <xsd:complexType name="LastMileCarrierService">
326
+ <xsd:all>
327
+ <xsd:element name="addressId" type="xsd:unsignedInt"/>
328
+ <xsd:element name="foreignId" minOccurs="0" type="tns:string64"/>
329
+ <xsd:element name="barcode" minOccurs="0" type="tns:string64"/>
330
+ <xsd:element name="trackingCode" minOccurs="0" type="tns:string64"/>
331
+ </xsd:all>
332
+ </xsd:complexType>
333
+ <xsd:complexType name="ReturnDestinationService">
334
+ <xsd:choice>
335
+ <xsd:group ref="tns:ReturnDestinationServiceToAddress" />
336
+ <xsd:group ref="tns:ReturnDestinationServiceToClient" />
337
+ </xsd:choice>
338
+ </xsd:complexType>
339
+ <xsd:group name="ReturnDestinationServiceToAddress">
340
+ <xsd:sequence>
341
+ <xsd:element name="addressId" type="xsd:unsignedInt"/>
342
+ <xsd:element name="carrierPickupPoint" type="tns:string64" nillable="true" minOccurs="0" />
343
+ <xsd:element name="returnAddress" type="tns:ReturnDestinationServiceAddress" minOccurs="0" />
344
+ </xsd:sequence>
345
+ </xsd:group>
346
+ <xsd:complexType name="ReturnDestinationServiceAddress">
347
+ <xsd:sequence>
348
+ <xsd:group ref="tns:ReturnDestinationServiceAddressAddress" minOccurs="0" />
349
+ <xsd:group ref="tns:ReturnDestinationServiceAddressContact" />
350
+ </xsd:sequence>
351
+ </xsd:complexType>
352
+ <xsd:group name="ReturnDestinationServiceAddressAddress">
353
+ <xsd:sequence>
354
+ <xsd:element name="name" type="xsd:string" />
355
+ <xsd:element name="surname" type="xsd:string" />
356
+ <xsd:element name="street" type="xsd:string" />
357
+ <xsd:element name="houseNumber" type="xsd:string"/>
358
+ <xsd:element name="city" type="xsd:string" />
359
+ <xsd:element name="zip" type="tns:zip" />
360
+ </xsd:sequence>
361
+ </xsd:group>
362
+ <xsd:group name="ReturnDestinationServiceAddressContact">
363
+ <xsd:sequence>
364
+ <xsd:element name="phone" type="tns:phone" minOccurs="0" />
365
+ <xsd:element name="email" type="tns:email" minOccurs="0" />
366
+ </xsd:sequence>
367
+ </xsd:group>
368
+ <xsd:group name="ReturnDestinationServiceToClient">
369
+ <xsd:sequence>
370
+ <xsd:element name="client" type="tns:ReturnDestinationServiceClient" />
371
+ </xsd:sequence>
372
+ </xsd:group>
373
+ <xsd:complexType name="ReturnDestinationServiceClient">
374
+ <xsd:sequence>
375
+ <xsd:element name="apiKey" type="tns:apiKey" />
376
+ <xsd:element name="eshop" type="xsd:string" />
377
+ </xsd:sequence>
378
+ </xsd:complexType>
379
+ <xsd:complexType name="Size">
380
+ <xsd:sequence>
381
+ <xsd:element name="length" type="xsd:unsignedInt"/>
382
+ <xsd:element name="width" type="xsd:unsignedInt"/>
383
+ <xsd:element name="height" type="xsd:unsignedInt"/>
384
+ </xsd:sequence>
385
+ </xsd:complexType>
386
+ <xsd:complexType name="PacketIdDetail">
387
+ <xsd:sequence>
388
+ <xsd:element name="id" type="xsd:unsignedLong" />
389
+ <xsd:element name="barcode" type="xsd:string" />
390
+ <xsd:element name="barcodeText" type="xsd:string" />
391
+ </xsd:sequence>
392
+ </xsd:complexType>
393
+ <xsd:complexType name="PacketDetail">
394
+ <xsd:sequence>
395
+ <xsd:element name="id" type="xsd:unsignedLong" />
396
+ <xsd:element name="barcode" type="xsd:string" />
397
+ <xsd:element name="barcodeText" type="xsd:string" />
398
+ <xsd:element name="password" type="xsd:string" />
399
+ </xsd:sequence>
400
+ </xsd:complexType>
401
+ <xsd:complexType name="CreatePacketResult">
402
+ <xsd:sequence>
403
+ <xsd:element name="createdPacket" type="tns:PacketIdDetail" nillable="true" />
404
+ <xsd:element name="fault" type="xsd:string" nillable="true" />
405
+ <xsd:element name="packetAttributesFault" type="tns:PacketAttributesFault" minOccurs="0" />
406
+ <xsd:element name="dispatchOrderUnknownCodeFault" type="tns:DispatchOrderUnknownCodeFault" minOccurs="0" />
407
+ </xsd:sequence>
408
+ </xsd:complexType>
409
+ <xsd:complexType name="CreatePacketsResults">
410
+ <xsd:sequence>
411
+ <xsd:element name="packet" minOccurs="0" maxOccurs="unbounded" type="tns:CreatePacketResult" />
412
+ </xsd:sequence>
413
+ </xsd:complexType>
414
+ <xsd:complexType name="CreatePacketsB2BResults">
415
+ <xsd:sequence>
416
+ <xsd:element name="packet" minOccurs="0" maxOccurs="unbounded" type="tns:CreatePacketResult" />
417
+ </xsd:sequence>
418
+ </xsd:complexType>
419
+ <xsd:complexType name="SenderGetReturnRoutingResult">
420
+ <xsd:sequence>
421
+ <xsd:element name="routingSegment" minOccurs="1" maxOccurs="unbounded" type="xsd:string" />
422
+ </xsd:sequence>
423
+ </xsd:complexType>
424
+ <xsd:complexType name="PacketIds">
425
+ <xsd:sequence>
426
+ <xsd:element name="id" minOccurs="1" maxOccurs="unbounded" type="xsd:unsignedLong" />
427
+ </xsd:sequence>
428
+ </xsd:complexType>
429
+ <xsd:complexType name="PacketIdsWithCourierNumbers">
430
+ <xsd:sequence>
431
+ <xsd:element name="packetIdWithCourierNumber" minOccurs="1" maxOccurs="unbounded" type="tns:PacketIdWithCourierNumber" />
432
+ </xsd:sequence>
433
+ </xsd:complexType>
434
+ <xsd:complexType name="PacketIdWithCourierNumber">
435
+ <xsd:all>
436
+ <xsd:element name="packetId" type="xsd:unsignedLong" />
437
+ <xsd:element name="courierNumber" type="xsd:string" />
438
+ </xsd:all>
439
+ </xsd:complexType>
440
+ <xsd:complexType name="ShipmentIdDetail">
441
+ <xsd:all>
442
+ <xsd:element name="id" type="xsd:unsignedInt" />
443
+ <xsd:element name="checksum" type="xsd:string" />
444
+ <xsd:element name="barcode" type="xsd:string" />
445
+ <xsd:element name="barcodeText" type="xsd:string" />
446
+ </xsd:all>
447
+ </xsd:complexType>
448
+ <xsd:complexType name="PacketCollection">
449
+ <xsd:sequence>
450
+ <xsd:element name="packet" minOccurs="0" maxOccurs="unbounded" type="tns:PacketIdDetail" />
451
+ </xsd:sequence>
452
+ </xsd:complexType>
453
+ <xsd:complexType name="ShipmentPacketsResult">
454
+ <xsd:all>
455
+ <xsd:element name="packets" type="tns:PacketCollection" />
456
+ </xsd:all>
457
+ </xsd:complexType>
458
+ <xsd:complexType name="StatusRecords">
459
+ <xsd:sequence>
460
+ <xsd:element name="record" minOccurs="1" maxOccurs="unbounded" type="tns:StatusRecord" />
461
+ </xsd:sequence>
462
+ </xsd:complexType>
463
+
464
+ <xsd:complexType name="ExternalStatusRecords">
465
+ <xsd:sequence>
466
+ <xsd:element name="record" minOccurs="1" maxOccurs="unbounded" type="tns:ExternalStatusRecord" />
467
+ </xsd:sequence>
468
+ </xsd:complexType>
469
+
470
+ <xsd:complexType name="Contact">
471
+ <xsd:sequence>
472
+ <xsd:element name="name" type="xsd:string" minOccurs="0" />
473
+ <xsd:element name="surname" type="xsd:string" />
474
+ <xsd:element name="company" type="xsd:string" minOccurs="0" />
475
+ <xsd:element name="street" type="xsd:string" />
476
+ <xsd:element name="houseNumber" type="xsd:string" />
477
+ <xsd:element name="city" type="xsd:string" />
478
+ <xsd:element name="zip" type="tns:zip" />
479
+ <xsd:element name="countryCode" type="tns:string2" />
480
+ <xsd:element name="phone" type="tns:phone" minOccurs="0" />
481
+ <xsd:element name="email" type="tns:email" minOccurs="0" />
482
+ <xsd:element name="note" type="xsd:string" minOccurs="0" />
483
+ </xsd:sequence>
484
+ </xsd:complexType>
485
+ <xsd:complexType name="Address">
486
+ <xsd:sequence>
487
+ <xsd:element name="street" type="xsd:string" />
488
+ <xsd:element name="houseNumber" type="xsd:string" />
489
+ <xsd:element name="city" type="xsd:string" />
490
+ <xsd:element name="zip" type="tns:zip" />
491
+ <xsd:element name="countryCode" type="tns:string2" />
492
+ </xsd:sequence>
493
+ </xsd:complexType>
494
+
495
+ <xsd:complexType name="PacketConsignerDetail">
496
+ <xsd:sequence>
497
+ <xsd:element name="id" type="xsd:unsignedLong" />
498
+ <xsd:element name="password" type="xsd:string" />
499
+ <xsd:element name="consignerEmail" type="tns:email" />
500
+ <xsd:element name="consignerPhone" type="tns:phone" nillable="true" />
501
+ <xsd:element name="consignerCountry" type="tns:string2" nillable="true" />
502
+ </xsd:sequence>
503
+ </xsd:complexType>
504
+
505
+ <xsd:complexType name="getConsignmentPasswordResult">
506
+ <xsd:sequence>
507
+ <xsd:element name="packetConsignerDetail" type="tns:PacketConsignerDetail" nillable="true" />
508
+ <xsd:element name="fault" type="xsd:string" nillable="true" />
509
+ <xsd:element name="IncorrectApiPasswordFault" type="tns:IncorrectApiPasswordFault" minOccurs="0" />
510
+ <xsd:element name="PacketIdFault" type="tns:PacketIdFault" minOccurs="0" />
511
+ <xsd:element name="AccessDeniedFault" type="tns:AccessDeniedFault" minOccurs="0" />
512
+ <xsd:element name="PacketAttributesFault" type="tns:PacketAttributesFault" minOccurs="0" />
513
+ </xsd:sequence>
514
+ </xsd:complexType>
515
+
516
+ <xsd:complexType name="PacketInfoResult">
517
+ <xsd:all>
518
+ <xsd:element name="branchId" type="xsd:unsignedInt" />
519
+ <xsd:element name="invoicedWeightGrams" type="xsd:unsignedInt" nillable="true" />
520
+ <xsd:element name="courierInfo" type="tns:CourierInfo" />
521
+ <xsd:element name="services" type="tns:Services" />
522
+ <xsd:element name="number" type="xsd:string" />
523
+ </xsd:all>
524
+ </xsd:complexType>
525
+
526
+ <xsd:complexType name="CourierPickupOptionsResult">
527
+ <xsd:all>
528
+ <xsd:element name="availablePickups" type="tns:AvailablePickup"/>
529
+ </xsd:all>
530
+ </xsd:complexType>
531
+
532
+ <xsd:complexType name="AvailablePickup">
533
+ <xsd:sequence>
534
+ <xsd:element name="availablePickup" type="tns:PickupDate" minOccurs="0" maxOccurs="unbounded"/>
535
+ </xsd:sequence>
536
+ </xsd:complexType>
537
+
538
+ <xsd:complexType name="CreateCourierPickupResult">
539
+ <xsd:all>
540
+ <xsd:element name="pickupId" type="xsd:string"/>
541
+ <xsd:element name="externalId" type="xsd:string"/>
542
+ </xsd:all>
543
+ </xsd:complexType>
544
+
545
+ <xsd:complexType name="CancelCourierPickupResult">
546
+ <xsd:all>
547
+ </xsd:all>
548
+ </xsd:complexType>
549
+
550
+ <xsd:complexType name="CourierInfo">
551
+ <xsd:sequence>
552
+ <xsd:element name="courierInfoItem" type="tns:CourierInfoItem" minOccurs="0" maxOccurs="unbounded" />
553
+ </xsd:sequence>
554
+ </xsd:complexType>
555
+
556
+ <xsd:complexType name="CourierInfoItem">
557
+ <xsd:all>
558
+ <xsd:element name="courierId" type="xsd:unsignedInt" />
559
+ <xsd:element name="courierName" type="xsd:string" />
560
+ <xsd:element name="courierNumbers" type="tns:CourierNumbers" />
561
+ <xsd:element name="courierBarcodes" type="tns:CourierBarcodes" />
562
+ <xsd:element name="courierTrackingNumbers" type="tns:CourierTrackingNumbers" />
563
+ <xsd:element name="courierTrackingUrls" type="tns:CourierTrackingUrls" />
564
+ </xsd:all>
565
+ </xsd:complexType>
566
+
567
+ <xsd:complexType name="CourierNumbers">
568
+ <xsd:sequence>
569
+ <xsd:element name="courierNumber" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
570
+ </xsd:sequence>
571
+ </xsd:complexType>
572
+
573
+ <xsd:complexType name="CourierBarcodes">
574
+ <xsd:sequence>
575
+ <xsd:element name="courierBarcode" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
576
+ </xsd:sequence>
577
+ </xsd:complexType>
578
+
579
+ <xsd:complexType name="CourierTrackingNumbers">
580
+ <xsd:sequence>
581
+ <xsd:element name="courierTrackingNumber" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
582
+ </xsd:sequence>
583
+ </xsd:complexType>
584
+
585
+ <xsd:complexType name="CourierTrackingUrls">
586
+ <xsd:sequence>
587
+ <xsd:element name="courierTrackingUrl" type="tns:CourierTrackingUrl" minOccurs="0" maxOccurs="unbounded" />
588
+ </xsd:sequence>
589
+ </xsd:complexType>
590
+
591
+ <xsd:complexType name="CourierTrackingUrl">
592
+ <xsd:all>
593
+ <xsd:element name="lang" type="xsd:string" />
594
+ <xsd:element name="url" type="xsd:string" />
595
+ </xsd:all>
596
+ </xsd:complexType>
597
+
598
+ <xsd:complexType name="AttributeFault">
599
+ <xsd:all>
600
+ <xsd:element name="name" type="xsd:string" />
601
+ <xsd:element name="fault" type="xsd:string" />
602
+ <xsd:element name="field" type="xsd:string" minOccurs="0" nillable="true" />
603
+ </xsd:all>
604
+ </xsd:complexType>
605
+
606
+ <xsd:complexType name="PacketAttributesFault">
607
+ <xsd:all>
608
+ <xsd:element name="attributes">
609
+ <xsd:complexType>
610
+ <xsd:sequence>
611
+ <xsd:element name="fault" type="tns:AttributeFault" minOccurs="1" maxOccurs="unbounded" />
612
+ </xsd:sequence>
613
+ </xsd:complexType>
614
+ </xsd:element>
615
+ </xsd:all>
616
+ </xsd:complexType>
617
+ <xsd:element type="tns:PacketAttributesFault" name="PacketAttributesFault" />
618
+
619
+ <xsd:complexType name="PacketIdFault" />
620
+ <xsd:complexType name="PacketIdsFault">
621
+ <xsd:all>
622
+ <xsd:element name="ids">
623
+ <xsd:complexType>
624
+ <xsd:sequence>
625
+ <xsd:element name="packetId" type="xsd:unsignedLong" minOccurs="1" maxOccurs="unbounded" />
626
+ </xsd:sequence>
627
+ </xsd:complexType>
628
+ </xsd:element>
629
+ </xsd:all>
630
+ </xsd:complexType>
631
+ <xsd:element name="PacketIdFault" type="tns:PacketIdFault" />
632
+ <xsd:element name="PacketIdsFault" type="tns:PacketIdsFault" />
633
+
634
+ <xsd:complexType name="CancelNotAllowedFault" />
635
+ <xsd:element name="CancelNotAllowedFault" type="tns:CancelNotAllowedFault" />
636
+
637
+ <xsd:complexType name="NoPacketIdsFault" />
638
+ <xsd:element name="NoPacketIdsFault" type="tns:NoPacketIdsFault" />
639
+
640
+ <xsd:complexType name="CustomBarcodeNotAllowedFault" />
641
+ <xsd:element name="CustomBarcodeNotAllowedFault" type="tns:CustomBarcodeNotAllowedFault" />
642
+
643
+ <xsd:complexType name="ShipmentNotFoundFault" />
644
+ <xsd:element name="ShipmentNotFoundFault" type="tns:ShipmentNotFoundFault" />
645
+
646
+ <xsd:complexType name="DateOutOfRangeFault" />
647
+ <xsd:element name="DateOutOfRangeFault" type="tns:DateOutOfRangeFault" />
648
+
649
+ <xsd:complexType name="UnknownLabelFormatFault" />
650
+ <xsd:element name="UnknownLabelFormatFault" type="tns:UnknownLabelFormatFault" />
651
+
652
+ <xsd:complexType name="IncorrectApiPasswordFault" />
653
+ <xsd:element name="IncorrectApiPasswordFault" type="tns:IncorrectApiPasswordFault" />
654
+
655
+ <xsd:complexType name="SenderNotExists" />
656
+ <xsd:element name="SenderNotExists" type="tns:SenderNotExists" />
657
+
658
+ <xsd:complexType name="ArgumentsFault" />
659
+ <xsd:element name="ArgumentsFault" type="tns:ArgumentsFault" />
660
+
661
+ <xsd:complexType name="InvalidEmailAddressFault" />
662
+ <xsd:element name="InvalidEmailAddressFault" type="tns:InvalidEmailAddressFault" />
663
+
664
+ <xsd:complexType name="InvalidPhoneNumberFault" />
665
+ <xsd:element name="InvalidPhoneNumberFault" type="tns:InvalidPhoneNumberFault" />
666
+
667
+ <xsd:complexType name="DispatchOrderNotAllowedFault" />
668
+ <xsd:element name="DispatchOrderNotAllowedFault" type="tns:DispatchOrderNotAllowedFault" />
669
+
670
+ <xsd:complexType name="DispatchOrderInvalidPdfFault" />
671
+ <xsd:element name="DispatchOrderInvalidPdfFault" type="tns:DispatchOrderInvalidPdfFault" />
672
+
673
+ <xsd:complexType name="TooLateToUpdateCodFault" />
674
+ <xsd:element name="TooLateToUpdateCodFault" type="tns:TooLateToUpdateCodFault" />
675
+
676
+ <xsd:complexType name="CodUpdateNotAllowedFault" />
677
+ <xsd:element name="CodUpdateNotAllowedFault" type="tns:CodUpdateNotAllowedFault" />
678
+
679
+ <xsd:complexType name="DispatchOrderUnknownCodeFault">
680
+ <xsd:all>
681
+ <xsd:element name="codes">
682
+ <xsd:complexType>
683
+ <xsd:sequence>
684
+ <xsd:element name="code" type="xsd:string" minOccurs="1" maxOccurs="unbounded" />
685
+ </xsd:sequence>
686
+ </xsd:complexType>
687
+ </xsd:element>
688
+ </xsd:all>
689
+ </xsd:complexType>
690
+ <xsd:element name="DispatchOrderUnknownCodeFault" type="tns:DispatchOrderUnknownCodeFault" />
691
+
692
+ <xsd:complexType name="NotSupportedFault" />
693
+ <xsd:element name="NotSupportedFault" type="tns:NotSupportedFault" />
694
+
695
+ <xsd:complexType name="ExternalGatewayFault" />
696
+ <xsd:element name="ExternalGatewayFault" type="tns:ExternalGatewayFault" />
697
+
698
+ <xsd:complexType name="InvalidCourierNumber" />
699
+ <xsd:element name="InvalidCourierNumber" type="tns:InvalidCourierNumber" />
700
+
701
+ <xsd:complexType name="AccessDeniedFault" />
702
+ <xsd:element name="AccessDeniedFault" type="tns:AccessDeniedFault" />
703
+
704
+ <xsd:complexType name="NoPacketCourierDataFault" />
705
+ <xsd:element name="NoPacketCourierDataFault" type="tns:NoPacketCourierDataFault" />
706
+
707
+ <xsd:complexType name="NullableDate">
708
+ <xsd:sequence>
709
+ <xsd:element name="date" type="xsd:date" nillable="true" />
710
+ </xsd:sequence>
711
+ </xsd:complexType>
712
+
713
+ <xsd:complexType name="ConsignmentPasswordResult">
714
+ <xsd:all>
715
+ <xsd:element name="id" type="xsd:unsignedLong"/>
716
+ <xsd:element name="password" type="xsd:string" />
717
+ <xsd:element name="consignerEmail" type="tns:email" />
718
+ <xsd:element name="consignerPhone" type="tns:phone" minOccurs="0" />
719
+ <xsd:element name="consignerCountry" type="tns:string2" minOccurs="0" />
720
+ </xsd:all>
721
+ </xsd:complexType>
722
+
723
+ <xsd:complexType name="packetCourierNumberV2Result">
724
+ <xsd:all>
725
+ <xsd:element name="courierNumber" type="xsd:string" />
726
+ <xsd:element name="carrierId" type="xsd:string" />
727
+ <xsd:element name="carrierName" type="xsd:string" />
728
+ </xsd:all>
729
+ </xsd:complexType>
730
+
731
+ <xsd:complexType name="StorageFileAttributes">
732
+ <xsd:all>
733
+ <xsd:element name="content" type="xsd:string" />
734
+ <xsd:element name="name" type="xsd:string" />
735
+ </xsd:all>
736
+ </xsd:complexType>
737
+ <xsd:complexType name="ListStorageFileAttributes">
738
+ <xsd:all>
739
+ <xsd:element name="fromDate" type="xsd:date" />
740
+ <xsd:element name="toDate" type="xsd:date" />
741
+ </xsd:all>
742
+ </xsd:complexType>
743
+ <xsd:complexType name="StorageFiles">
744
+ <xsd:sequence>
745
+ <xsd:element name="StorageFile" maxOccurs="unbounded" type="tns:StorageFile" />
746
+ </xsd:sequence>
747
+ </xsd:complexType>
748
+ <xsd:complexType name="StorageFile">
749
+ <xsd:all>
750
+ <xsd:element name="id" type="xsd:integer" />
751
+ <xsd:element name="name" type="xsd:string" />
752
+ <xsd:element name="created" type="xsd:dateTime" />
753
+ </xsd:all>
754
+ </xsd:complexType>
755
+ <xsd:complexType name="PickupAddressOptions">
756
+ <xsd:all>
757
+ <xsd:element name="street" type="xsd:string" />
758
+ <xsd:element name="houseNumber" type="xsd:string" />
759
+ <xsd:element name="city" type="xsd:string" />
760
+ <xsd:element name="zip" type="tns:zip" />
761
+ </xsd:all>
762
+ </xsd:complexType>
763
+ <xsd:complexType name="PickupAddress">
764
+ <xsd:all>
765
+ <xsd:element name="companyName" type="xsd:string" nillable="true"/>
766
+ <xsd:element name="personName" type="xsd:string" nillable="true"/>
767
+ <xsd:element name="personSurname" type="xsd:string" nillable="true"/>
768
+ <xsd:element name="email" type="xsd:string"/>
769
+ <xsd:element name="phone" type="xsd:string"/>
770
+ <xsd:element name="street" type="xsd:string" />
771
+ <xsd:element name="houseNumber" type="xsd:string" />
772
+ <xsd:element name="city" type="xsd:string" />
773
+ <xsd:element name="zip" type="tns:zip" />
774
+ </xsd:all>
775
+ </xsd:complexType>
776
+ <xsd:complexType name="PickupDate">
777
+ <xsd:all>
778
+ <xsd:element name="from" type="xsd:dateTime" />
779
+ <xsd:element name="to" type="xsd:dateTime" />
780
+ </xsd:all>
781
+ </xsd:complexType>
782
+ </xsd:schema>
783
+ </types>
784
+
785
+ <message name="CancelNotAllowedFault">
786
+ <part name="CancelNotAllowedFault" element="tns:CancelNotAllowedFault" />
787
+ </message>
788
+ <message name="IncorrectApiPasswordFault">
789
+ <part name="IncorrectApiPasswordFault" element="tns:IncorrectApiPasswordFault" />
790
+ </message>
791
+ <message name="SenderNotExists">
792
+ <part name="SenderNotExists" element="tns:SenderNotExists" />
793
+ </message>
794
+ <message name="PacketAttributesFault">
795
+ <part name="PacketAttributesFault" element="tns:PacketAttributesFault" />
796
+ </message>
797
+ <message name="PacketIdFault">
798
+ <part name="PacketIdFault" element="tns:PacketIdFault" />
799
+ </message>
800
+ <message name="TooLateToUpdateCodFault">
801
+ <part name="TooLateToUpdateCodFault" element="tns:TooLateToUpdateCodFault" />
802
+ </message>
803
+ <message name="CodUpdateNotAllowedFault">
804
+ <part name="CodUpdateNotAllowedFault" element="tns:CodUpdateNotAllowedFault" />
805
+ </message>
806
+ <message name="PacketIdsFault">
807
+ <part name="PacketIdsFault" element="tns:PacketIdsFault" />
808
+ </message>
809
+ <message name="NoPacketIdsFault">
810
+ <part name="NoPacketIdsFault" element="tns:NoPacketIdsFault" />
811
+ </message>
812
+ <message name="NoPacketCourierDataFault">
813
+ <part name="NoPacketCourierDataFault" element="tns:NoPacketCourierDataFault" />
814
+ </message>
815
+ <message name="CustomBarcodeNotAllowedFault">
816
+ <part name="CustomBarcodeNotAllowedFault" element="tns:CustomBarcodeNotAllowedFault" />
817
+ </message>
818
+ <message name="ShipmentNotFoundFault">
819
+ <part name="ShipmentNotFoundFault" element="tns:ShipmentNotFoundFault" />
820
+ </message>
821
+ <message name="DateOutOfRangeFault">
822
+ <part name="DateOutOfRangeFault" element="tns:DateOutOfRangeFault" />
823
+ </message>
824
+ <message name="UnknownLabelFormatFault">
825
+ <part name="UnknownLabelFormatFault" element="tns:UnknownLabelFormatFault" />
826
+ </message>
827
+ <message name="DispatchOrderNotAllowedFault">
828
+ <part name="DispatchOrderNotAllowedFault" element="tns:DispatchOrderNotAllowedFault" />
829
+ </message>
830
+ <message name="DispatchOrderInvalidPdfFault">
831
+ <part name="DispatchOrderInvalidPdfFault" element="tns:DispatchOrderInvalidPdfFault" />
832
+ </message>
833
+ <message name="DispatchOrderUnknownCodeFault">
834
+ <part name="DispatchOrderUnknownCodeFault" element="tns:DispatchOrderUnknownCodeFault" />
835
+ </message>
836
+ <message name="ArgumentsFault">
837
+ <part name="ArgumentsFault" element="tns:ArgumentsFault" />
838
+ </message>
839
+ <message name="NotSupportedFault">
840
+ <part name="NotSupportedFault" element="tns:NotSupportedFault" />
841
+ </message>
842
+ <message name="ExternalGatewayFault">
843
+ <part name="ExternalGatewayFault" element="tns:ExternalGatewayFault" />
844
+ </message>
845
+ <message name="InvalidCourierNumber">
846
+ <part name="InvalidCourierNumber" element="tns:InvalidCourierNumber" />
847
+ </message>
848
+ <message name="InvalidEmailAddressFault">
849
+ <part name="InvalidEmailAddressFault" element="tns:InvalidEmailAddressFault" />
850
+ </message>
851
+ <message name="InvalidPhoneNumberFault">
852
+ <part name="InvalidPhoneNumberFault" element="tns:InvalidPhoneNumberFault" />
853
+ </message>
854
+ <message name="AccessDeniedFault">
855
+ <part name="AccessDeniedFault" element="tns:AccessDeniedFault" />
856
+ </message>
857
+
858
+ <message name="packetAttributesValid">
859
+ <part name="apiPassword" type="xsd:string" />
860
+ <part name="attributes" type="tns:PacketAttributes" />
861
+ </message>
862
+ <message name="packetAttributesValidResponse" />
863
+
864
+ <message name="packetClaimAttributesValid">
865
+ <part name="apiPassword" type="xsd:string" />
866
+ <part name="claimAttributes" type="tns:ClaimAttributes" />
867
+ </message>
868
+ <message name="packetClaimAttributesValidResponse" />
869
+
870
+ <message name="createPacket">
871
+ <part name="apiPassword" type="xsd:string" />
872
+ <part name="attributes" type="tns:PacketAttributes" />
873
+ </message>
874
+ <message name="createPacketResponse">
875
+ <part name="createPacketResult" type="tns:PacketIdDetail" />
876
+ </message>
877
+
878
+ <message name="cancelPacket">
879
+ <part name="apiPassword" type="xsd:string" />
880
+ <part name="packetId" type="xsd:unsignedLong" />
881
+ </message>
882
+ <message name="cancelPacketResponse" />
883
+
884
+ <message name="createPackets">
885
+ <part name="apiPassword" type="xsd:string" />
886
+ <part name="packets" type="tns:PacketsAttributes" />
887
+ <part name="transaction" type="xsd:boolean" />
888
+ </message>
889
+ <message name="createPacketsResponse">
890
+ <part name="createPacketsResult" type="tns:CreatePacketsResults" />
891
+ </message>
892
+ <message name="createPacketsB2B">
893
+ <part name="apiPassword" type="xsd:string" />
894
+ <part name="packetB2BAttributes" type="tns:PacketB2BAttributes" />
895
+ </message>
896
+ <message name="createPacketsB2BResponse">
897
+ <part name="createPacketsB2BResults" type="tns:CreatePacketsB2BResults" />
898
+ </message>
899
+
900
+ <message name="createPacketClaim">
901
+ <part name="apiPassword" type="xsd:string" />
902
+ <part name="claimAttributes" type="tns:ClaimAttributes" />
903
+ </message>
904
+ <message name="createPacketClaimResponse">
905
+ <part name="createPacketClaimResult" type="tns:PacketIdDetail" />
906
+ </message>
907
+
908
+ <message name="createPacketClaimWithPassword">
909
+ <part name="apiPassword" type="xsd:string" />
910
+ <part name="claimWithPasswordAttributes" type="tns:ClaimWithPasswordAttributes" />
911
+ </message>
912
+ <message name="createPacketClaimWithPasswordResponse">
913
+ <part name="createPacketClaimWithPasswordResult" type="tns:PacketDetail" />
914
+ </message>
915
+
916
+ <message name="createShipment">
917
+ <part name="apiPassword" type="xsd:string" />
918
+ <part name="packetIds" type="tns:PacketIds" />
919
+ <part name="customBarcode" type="xsd:string" />
920
+ </message>
921
+ <message name="createShipmentResponse">
922
+ <part name="createShipmentResult" type="tns:ShipmentIdDetail" />
923
+ </message>
924
+
925
+ <message name="shipmentPackets">
926
+ <part name="apiPassword" type="xsd:string" />
927
+ <part name="shipmentId" type="xsd:string" />
928
+ </message>
929
+ <message name="shipmentPacketsResponse">
930
+ <part name="shipmentPacketsResult" type="tns:ShipmentPacketsResult" />
931
+ </message>
932
+
933
+ <message name="packetStatus">
934
+ <part name="apiPassword" type="xsd:string" />
935
+ <part name="packetId" type="xsd:unsignedLong" />
936
+ </message>
937
+ <message name="packetStatusResponse">
938
+ <part name="packetStatusResult" type="tns:CurrentStatusRecord" />
939
+ </message>
940
+
941
+ <message name="packetTracking">
942
+ <part name="apiPassword" type="xsd:string" />
943
+ <part name="packetId" type="xsd:unsignedLong" />
944
+ </message>
945
+ <message name="packetTrackingResponse">
946
+ <part name="packetTrackingResult" type="tns:StatusRecords" />
947
+ </message>
948
+
949
+ <message name="packetCourierTracking">
950
+ <part name="apiPassword" type="xsd:string" />
951
+ <part name="packetId" type="xsd:unsignedLong" />
952
+ </message>
953
+ <message name="packetCourierTrackingResponse">
954
+ <part name="packetCourierTrackingResult" type="tns:ExternalStatusRecords" />
955
+ </message>
956
+
957
+ <message name="packetGetStoredUntil">
958
+ <part name="apiPassword" type="xsd:string" />
959
+ <part name="packetId" type="xsd:unsignedLong" />
960
+ </message>
961
+ <message name="packetGetStoredUntilResponse">
962
+ <part name="packetGetStoredUntilResult" type="tns:NullableDate" />
963
+ </message>
964
+
965
+ <message name="packetSetStoredUntil">
966
+ <part name="apiPassword" type="xsd:string" />
967
+ <part name="packetId" type="xsd:unsignedLong" />
968
+ <part name="date" type="xsd:date" />
969
+ </message>
970
+ <message name="packetSetStoredUntilResponse" />
971
+
972
+ <message name="barcodePng">
973
+ <part name="apiPassword" type="xsd:string" />
974
+ <part name="barcode" type="xsd:string"/>
975
+ </message>
976
+ <message name="barcodePngResponse">
977
+ <part name="barcodePngResponseResult" type="xsd:base64Binary"/>
978
+ </message>
979
+
980
+ <message name="packetLabelPdf">
981
+ <part name="apiPassword" type="xsd:string" />
982
+ <part name="packetId" type="xsd:unsignedLong"/>
983
+ <part name="format" type="xsd:string"/>
984
+ <part name="offset" type="xsd:unsignedInt"/>
985
+ </message>
986
+ <message name="packetLabelPdfResponse">
987
+ <part name="packetLabelPdfResult" type="xsd:base64Binary"/>
988
+ </message>
989
+
990
+ <message name="packetsLabelsPdf">
991
+ <part name="apiPassword" type="xsd:string" />
992
+ <part name="packetIds" type="tns:PacketIds"/>
993
+ <part name="format" type="xsd:string"/>
994
+ <part name="offset" type="xsd:unsignedInt"/>
995
+ </message>
996
+ <message name="packetsLabelsPdfResponse">
997
+ <part name="packetsLabelsPdfResult" type="xsd:base64Binary"/>
998
+ </message>
999
+
1000
+ <message name="packetLabelZpl">
1001
+ <part name="apiPassword" type="xsd:string" />
1002
+ <part name="packetId" type="xsd:unsignedLong"/>
1003
+ <part name="dpi" type="xsd:unsignedInt"/>
1004
+ </message>
1005
+ <message name="packetLabelZplResponse">
1006
+ <part name="packetLabelZplResult" type="xsd:string"/>
1007
+ </message>
1008
+
1009
+ <message name="setCountryStatus">
1010
+ <part name="apiPassword" type="xsd:string" />
1011
+ <part name="country" type="tns:string2"/>
1012
+ <part name="status" type="xsd:string"/>
1013
+ </message>
1014
+ <message name="setCountryStatusResponse" />
1015
+
1016
+ <message name="setBranchStatus">
1017
+ <part name="apiPassword" type="xsd:string" />
1018
+ <part name="id" type="xsd:unsignedInt"/>
1019
+ <part name="status" type="xsd:string"/>
1020
+ </message>
1021
+ <message name="setBranchStatusResponse" />
1022
+
1023
+ <message name="packetCourierNumber">
1024
+ <part name="apiPassword" type="xsd:string" />
1025
+ <part name="packetId" type="xsd:unsignedLong" />
1026
+ </message>
1027
+ <message name="packetCourierNumberResponse">
1028
+ <part name="packetCourierNumberResult" type="xsd:string" />
1029
+ </message>
1030
+
1031
+ <message name="packetCourierNumberV2">
1032
+ <part name="apiPassword" type="xsd:string" />
1033
+ <part name="packetId" type="xsd:unsignedLong" />
1034
+ </message>
1035
+ <message name="packetCourierNumberV2Response">
1036
+ <part name="packetCourierNumberV2Result" type="tns:packetCourierNumberV2Result" />
1037
+ </message>
1038
+
1039
+ <message name="packetCourierBarcode">
1040
+ <part name="apiPassword" type="xsd:string" />
1041
+ <part name="packetId" type="xsd:unsignedLong" />
1042
+ <part name="courierNumber" type="xsd:string" />
1043
+ </message>
1044
+ <message name="packetCourierBarcodeResponse">
1045
+ <part name="packetCourierBarcodeResult" type="xsd:string" />
1046
+ </message>
1047
+
1048
+ <message name="packetCourierLabelPng">
1049
+ <part name="apiPassword" type="xsd:string" />
1050
+ <part name="packetId" type="xsd:unsignedLong" />
1051
+ <part name="courierNumber" type="xsd:string" />
1052
+ </message>
1053
+ <message name="packetCourierLabelPngResponse">
1054
+ <part name="packetCourierLabelPngResult" type="xsd:base64Binary" />
1055
+ </message>
1056
+
1057
+ <message name="packetCourierLabelPdf">
1058
+ <part name="apiPassword" type="xsd:string" />
1059
+ <part name="packetId" type="xsd:unsignedLong" />
1060
+ <part name="courierNumber" type="xsd:string" />
1061
+ </message>
1062
+ <message name="packetCourierLabelPdfResponse">
1063
+ <part name="packetCourierLabelPdfResult" type="xsd:base64Binary" />
1064
+ </message>
1065
+
1066
+ <message name="packetsCourierLabelsPdf">
1067
+ <part name="apiPassword" type="xsd:string" />
1068
+ <part name="packetIdsWithCourierNumbers" type="tns:PacketIdsWithCourierNumbers" />
1069
+ <part name="offset" type="xsd:unsignedInt"/>
1070
+ <part name="format" type="xsd:string"/>
1071
+ </message>
1072
+ <message name="packetsCourierLabelsPdfResponse">
1073
+ <part name="packetsCourierLabelsPdfResult" type="xsd:base64Binary" />
1074
+ </message>
1075
+
1076
+ <message name="packetCourierLabelZpl">
1077
+ <part name="apiPassword" type="xsd:string" />
1078
+ <part name="packetId" type="xsd:unsignedLong" />
1079
+ <part name="courierNumber" type="xsd:string" />
1080
+ <part name="dpi" type="xsd:unsignedInt" />
1081
+ </message>
1082
+ <message name="packetCourierLabelZplResponse">
1083
+ <part name="packetCourierLabelZplResult" type="xsd:string" />
1084
+ </message>
1085
+
1086
+ <message name="packetCourierConfirm">
1087
+ <part name="apiPassword" type="xsd:string" />
1088
+ <part name="packetId" type="xsd:unsignedLong" />
1089
+ <part name="courierNumber" type="xsd:string" />
1090
+ </message>
1091
+ <message name="packetCourierConfirmResponse" />
1092
+
1093
+ <message name="senderGetReturnString">
1094
+ <part name="apiPassword" type="xsd:string" />
1095
+ <part name="sender" type="tns:string64" />
1096
+ </message>
1097
+ <message name="senderGetReturnStringResponse">
1098
+ <part name="senderGetReturnStringResult" type="xsd:string" />
1099
+ </message>
1100
+
1101
+ <message name="senderGetReturnRouting">
1102
+ <part name="apiPassword" type="xsd:string" />
1103
+ <part name="sender" type="tns:string64" />
1104
+ </message>
1105
+ <message name="senderGetReturnRoutingResponse">
1106
+ <part name="senderGetReturnRoutingResult" type="tns:SenderGetReturnRoutingResult" />
1107
+ </message>
1108
+
1109
+ <message name="adviseBranch">
1110
+ <part name="apiPassword" type="xsd:string" />
1111
+ <part name="email" type="tns:email" />
1112
+ <part name="phone" type="tns:phone" />
1113
+ <part name="addressId" type="xsd:unsignedInt" />
1114
+ </message>
1115
+ <message name="adviseBranchResponse" />
1116
+
1117
+ <message name="packetCod">
1118
+ <part name="apiPassword" type="xsd:string" />
1119
+ <part name="packetId" type="xsd:unsignedLong" />
1120
+ </message>
1121
+ <message name="packetCodResponse">
1122
+ <part name="packetCodResult" type="tns:money" />
1123
+ </message>
1124
+
1125
+ <message name="updatePacket">
1126
+ <part name="apiPassword" type="xsd:string" />
1127
+ <part name="packetId" type="xsd:unsignedLong" />
1128
+ <part name="updateAttributes" type="tns:UpdatePacketAttributes" />
1129
+ </message>
1130
+ <message name="updatePacketResponse" />
1131
+
1132
+ <message name="getConsignmentPassword">
1133
+ <part name="apiPassword" type="xsd:string" />
1134
+ <part name="packetConsignerAttributes" type="tns:PacketConsignerAttributes" />
1135
+ </message>
1136
+ <message name="getConsignmentPasswordResponse">
1137
+ <part name="getConsignmentPasswordResult" type="tns:ConsignmentPasswordResult" />
1138
+ </message>
1139
+ <message name="createStorageFileRequest">
1140
+ <part name="apiPassword" type="xsd:string" />
1141
+ <part name="storageFileAttributes" type="tns:StorageFileAttributes" />
1142
+ </message>
1143
+ <message name="createStorageFileResponse">
1144
+ <part name="storageFile" type="tns:StorageFile" />
1145
+ </message>
1146
+ <message name="listStorageFileRequest">
1147
+ <part name="apiPassword" type="xsd:string" />
1148
+ <part name="listStorageFileAttributes" type="tns:ListStorageFileAttributes" />
1149
+ </message>
1150
+ <message name="listStorageFileResponse">
1151
+ <part name="storageFiles" type="tns:StorageFiles" />
1152
+ </message>
1153
+ <message name="packetInfo">
1154
+ <part name="apiPassword" type="xsd:string" />
1155
+ <part name="packetId" type="xsd:unsignedLong" />
1156
+ </message>
1157
+ <message name="packetInfoResponse">
1158
+ <part name="packetInfoResult" type="tns:PacketInfoResult" />
1159
+ </message>
1160
+ <message name="courierPickupOptions">
1161
+ <part name="apiPassword" type="xsd:string" />
1162
+ <part name="eshop" type="tns:string64" />
1163
+ <part name="addressId" type="xsd:unsignedInt" />
1164
+ <part name="pickupAddress" type="tns:PickupAddressOptions" />
1165
+ <part name="pickupDate" type="tns:PickupDate" />
1166
+ </message>
1167
+ <message name="courierPickupOptionsResponse">
1168
+ <part name="courierPickupOptionsResult" type="tns:CourierPickupOptionsResult" />
1169
+ </message>
1170
+ <message name="createCourierPickup">
1171
+ <part name="apiPassword" type="xsd:string" />
1172
+ <part name="eshop" type="tns:string64" />
1173
+ <part name="addressId" type="xsd:unsignedInt" />
1174
+ <part name="pickupAddress" type="tns:PickupAddress" />
1175
+ <part name="pickupDate" type="tns:PickupDate" />
1176
+ <part name="packetIds" type="tns:PacketIds" />
1177
+ <part name="note" type="xsd:string" />
1178
+ </message>
1179
+ <message name="createCourierPickupResponse">
1180
+ <part name="createCourierPickupResult" type="tns:CreateCourierPickupResult" />
1181
+ </message>
1182
+ <message name="cancelCourierPickup">
1183
+ <part name="apiPassword" type="xsd:string" />
1184
+ <part name="pickupId" type="xsd:string" />
1185
+ </message>
1186
+ <message name="cancelCourierPickupResponse">
1187
+ <part name="cancelCourierPickupResult" type="tns:CancelCourierPickupResult" />
1188
+ </message>
1189
+
1190
+ <portType name="Packetery">
1191
+ <operation name="packetAttributesValid">
1192
+ <input message="tns:packetAttributesValid" />
1193
+ <output message="tns:packetAttributesValidResponse" />
1194
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1195
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1196
+ <fault message="tns:DispatchOrderNotAllowedFault" name="DispatchOrderNotAllowedFault" />
1197
+ <fault message="tns:DispatchOrderInvalidPdfFault" name="DispatchOrderInvalidPdfFault" />
1198
+ <fault message="tns:DispatchOrderUnknownCodeFault" name="DispatchOrderUnknownCodeFault" />
1199
+ </operation>
1200
+ <operation name="packetClaimAttributesValid">
1201
+ <input message="tns:packetClaimAttributesValid" />
1202
+ <output message="tns:packetClaimAttributesValidResponse" />
1203
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1204
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1205
+ </operation>
1206
+ <operation name="createPacket">
1207
+ <input message="tns:createPacket" />
1208
+ <output message="tns:createPacketResponse" />
1209
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1210
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1211
+ <fault message="tns:DispatchOrderNotAllowedFault" name="DispatchOrderNotAllowedFault" />
1212
+ <fault message="tns:DispatchOrderInvalidPdfFault" name="DispatchOrderInvalidPdfFault" />
1213
+ <fault message="tns:DispatchOrderUnknownCodeFault" name="DispatchOrderUnknownCodeFault" />
1214
+ </operation>
1215
+ <operation name="cancelPacket">
1216
+ <input message="tns:cancelPacket" />
1217
+ <output message="tns:cancelPacketResponse" />
1218
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1219
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1220
+ <fault message="tns:CancelNotAllowedFault" name="CancelNotAllowedFault" />
1221
+ </operation>
1222
+ <operation name="createPackets">
1223
+ <input message="tns:createPackets" />
1224
+ <output message="tns:createPacketsResponse" />
1225
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1226
+ </operation>
1227
+ <operation name="createPacketsB2B">
1228
+ <input message="tns:createPacketsB2B" />
1229
+ <output message="tns:createPacketsB2BResponse" />
1230
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1231
+ <fault message="tns:AccessDeniedFault" name="AccessDeniedFault" />
1232
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1233
+ </operation>
1234
+ <operation name="createPacketClaim">
1235
+ <input message="tns:createPacketClaim" />
1236
+ <output message="tns:createPacketClaimResponse" />
1237
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1238
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1239
+ </operation>
1240
+ <operation name="createPacketClaimWithPassword">
1241
+ <input message="tns:createPacketClaimWithPassword" />
1242
+ <output message="tns:createPacketClaimWithPasswordResponse" />
1243
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1244
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1245
+ </operation>
1246
+ <operation name="createShipment">
1247
+ <input message="tns:createShipment"/>
1248
+ <output message="tns:createShipmentResponse"/>
1249
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1250
+ <fault message="tns:PacketIdsFault" name="PacketIdsFault" />
1251
+ <fault message="tns:NoPacketIdsFault" name="NoPacketIdsFault" />
1252
+ <fault message="tns:CustomBarcodeNotAllowedFault" name="CustomBarcodeNotAllowedFault" />
1253
+ <fault message="tns:ArgumentsFault" name="ArgumentsFault" />
1254
+ </operation>
1255
+ <operation name="shipmentPackets">
1256
+ <input message="tns:shipmentPackets"/>
1257
+ <output message="tns:shipmentPacketsResponse"/>
1258
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1259
+ <fault message="tns:ShipmentNotFoundFault" name="ShipmentNotFoundFault" />
1260
+ </operation>
1261
+ <operation name="packetStatus">
1262
+ <input message="tns:packetStatus"/>
1263
+ <output message="tns:packetStatusResponse"/>
1264
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1265
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1266
+ </operation>
1267
+ <operation name="packetTracking">
1268
+ <input message="tns:packetTracking"/>
1269
+ <output message="tns:packetTrackingResponse"/>
1270
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1271
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1272
+ </operation>
1273
+ <operation name="packetCourierTracking">
1274
+ <input message="tns:packetCourierTracking"/>
1275
+ <output message="tns:packetCourierTrackingResponse"/>
1276
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1277
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1278
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1279
+ <fault message="tns:NoPacketCourierDataFault" name="NoPacketCourierDataFault" />
1280
+ </operation>
1281
+ <operation name="packetGetStoredUntil">
1282
+ <input message="tns:packetGetStoredUntil"/>
1283
+ <output message="tns:packetGetStoredUntilResponse"/>
1284
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1285
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1286
+ </operation>
1287
+ <operation name="packetSetStoredUntil">
1288
+ <input message="tns:packetSetStoredUntil"/>
1289
+ <output message="tns:packetSetStoredUntilResponse"/>
1290
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1291
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1292
+ <fault message="tns:DateOutOfRangeFault" name="DateOutOfRangeFault" />
1293
+ </operation>
1294
+ <operation name="barcodePng">
1295
+ <input message="tns:barcodePng"/>
1296
+ <output message="tns:barcodePngResponse"/>
1297
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1298
+ </operation>
1299
+ <operation name="packetLabelPdf">
1300
+ <input message="tns:packetLabelPdf"/>
1301
+ <output message="tns:packetLabelPdfResponse"/>
1302
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1303
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1304
+ <fault message="tns:UnknownLabelFormatFault" name="UnknownLabelFormatFault" />
1305
+ </operation>
1306
+ <operation name="packetsLabelsPdf">
1307
+ <input message="tns:packetsLabelsPdf"/>
1308
+ <output message="tns:packetsLabelsPdfResponse"/>
1309
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1310
+ <fault message="tns:NoPacketIdsFault" name="NoPacketIdsFault" />
1311
+ <fault message="tns:PacketIdsFault" name="PacketIdsFault" />
1312
+ <fault message="tns:UnknownLabelFormatFault" name="UnknownLabelFormatFault" />
1313
+ </operation>
1314
+ <operation name="packetLabelZpl">
1315
+ <input message="tns:packetLabelZpl"/>
1316
+ <output message="tns:packetLabelZplResponse"/>
1317
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1318
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1319
+ <fault message="tns:UnknownLabelFormatFault" name="UnknownLabelFormatFault" />
1320
+ </operation>
1321
+ <operation name="setCountryStatus">
1322
+ <input message="tns:setCountryStatus"/>
1323
+ <output message="tns:setCountryStatusResponse"/>
1324
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1325
+ <fault message="tns:ArgumentsFault" name="ArgumentsFault" />
1326
+ </operation>
1327
+ <operation name="setBranchStatus">
1328
+ <input message="tns:setBranchStatus"/>
1329
+ <output message="tns:setBranchStatusResponse"/>
1330
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1331
+ <fault message="tns:ArgumentsFault" name="ArgumentsFault" />
1332
+ </operation>
1333
+ <operation name="packetCourierNumber">
1334
+ <input message="tns:packetCourierNumber"/>
1335
+ <output message="tns:packetCourierNumberResponse"/>
1336
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1337
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1338
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1339
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1340
+ </operation>
1341
+ <operation name="packetCourierNumberV2">
1342
+ <input message="tns:packetCourierNumberV2"/>
1343
+ <output message="tns:packetCourierNumberV2Response"/>
1344
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1345
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1346
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1347
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1348
+ </operation>
1349
+ <operation name="packetCourierBarcode">
1350
+ <input message="tns:packetCourierBarcode"/>
1351
+ <output message="tns:packetCourierBarcodeResponse"/>
1352
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1353
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1354
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1355
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1356
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1357
+ </operation>
1358
+ <operation name="packetCourierLabelPng">
1359
+ <input message="tns:packetCourierLabelPng"/>
1360
+ <output message="tns:packetCourierLabelPngResponse"/>
1361
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1362
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1363
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1364
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1365
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1366
+ </operation>
1367
+ <operation name="packetCourierLabelPdf">
1368
+ <input message="tns:packetCourierLabelPdf"/>
1369
+ <output message="tns:packetCourierLabelPdfResponse"/>
1370
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1371
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1372
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1373
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1374
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1375
+ </operation>
1376
+ <operation name="packetsCourierLabelsPdf">
1377
+ <input message="tns:packetsCourierLabelsPdf"/>
1378
+ <output message="tns:packetsCourierLabelsPdfResponse"/>
1379
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1380
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1381
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1382
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1383
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1384
+ <fault message="tns:NoPacketIdsFault" name="NoPacketIdsFault" />
1385
+ <fault message="tns:UnknownLabelFormatFault" name="UnknownLabelFormatFault" />
1386
+ </operation>
1387
+ <operation name="packetCourierLabelZpl">
1388
+ <input message="tns:packetCourierLabelZpl"/>
1389
+ <output message="tns:packetCourierLabelZplResponse"/>
1390
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1391
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1392
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1393
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1394
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1395
+ </operation>
1396
+ <operation name="packetCourierConfirm">
1397
+ <input message="tns:packetCourierConfirm"/>
1398
+ <output message="tns:packetCourierConfirmResponse"/>
1399
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1400
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1401
+ <fault message="tns:NotSupportedFault" name="NotSupportedFault" />
1402
+ <fault message="tns:ExternalGatewayFault" name="ExternalGatewayFault" />
1403
+ <fault message="tns:InvalidCourierNumber" name="InvalidCourierNumber" />
1404
+ </operation>
1405
+ <operation name="senderGetReturnString">
1406
+ <input message="tns:senderGetReturnString"/>
1407
+ <output message="tns:senderGetReturnStringResponse"/>
1408
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1409
+ <fault message="tns:SenderNotExists" name="SenderNotExists" />
1410
+ </operation>
1411
+ <operation name="senderGetReturnRouting">
1412
+ <input message="tns:senderGetReturnRouting"/>
1413
+ <output message="tns:senderGetReturnRoutingResponse"/>
1414
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1415
+ <fault message="tns:SenderNotExists" name="SenderNotExists" />
1416
+ </operation>
1417
+ <operation name="adviseBranch">
1418
+ <input message="tns:adviseBranch"/>
1419
+ <output message="tns:adviseBranchResponse"/>
1420
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1421
+ <fault message="tns:InvalidEmailAddressFault" name="InvalidEmailAddressFault" />
1422
+ <fault message="tns:InvalidPhoneNumberFault" name="InvalidPhoneNumberFault" />
1423
+ </operation>
1424
+ <operation name="packetCod">
1425
+ <input message="tns:packetCod"/>
1426
+ <output message="tns:packetCodResponse"/>
1427
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1428
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1429
+ </operation>
1430
+ <operation name="updatePacket">
1431
+ <input message="tns:updatePacket" />
1432
+ <output message="tns:updatePacketResponse" />
1433
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1434
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1435
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1436
+ <fault message="tns:TooLateToUpdateCodFault" name="TooLateToUpdateCodFault" />
1437
+ <fault message="tns:CodUpdateNotAllowedFault" name="CodUpdateNotAllowedFault" />
1438
+ </operation>
1439
+ <operation name="getConsignmentPassword">
1440
+ <input message="tns:getConsignmentPassword" />
1441
+ <output message="tns:getConsignmentPasswordResponse" />
1442
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1443
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1444
+ <fault message="tns:AccessDeniedFault" name="AccessDeniedFault" />
1445
+ <fault message="tns:PacketAttributesFault" name="PacketAttributesFault" />
1446
+ </operation>
1447
+ <operation name="createStorageFile">
1448
+ <input message="tns:createStorageFileRequest" />
1449
+ <output message="tns:createStorageFileResponse" />
1450
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1451
+ </operation>
1452
+ <operation name="listStorageFile">
1453
+ <input message="tns:listStorageFileRequest" />
1454
+ <output message="tns:listStorageFileResponse" />
1455
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1456
+ </operation>
1457
+ <operation name="packetInfo">
1458
+ <input message="tns:packetInfo" />
1459
+ <output message="tns:packetInfoResponse" />
1460
+ <fault message="tns:PacketIdFault" name="PacketIdFault" />
1461
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1462
+ <fault message="tns:NoPacketCourierDataFault" name="NoPacketCourierDataFault" />
1463
+ </operation>
1464
+ <operation name="courierPickupOptions">
1465
+ <input message="tns:courierPickupOptions" />
1466
+ <output message="tns:courierPickupOptionsResponse" />
1467
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1468
+ </operation>
1469
+ <operation name="createCourierPickup">
1470
+ <input message="tns:createCourierPickup" />
1471
+ <output message="tns:createCourierPickupResponse" />
1472
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1473
+ </operation>
1474
+ <operation name="cancelCourierPickup">
1475
+ <input message="tns:cancelCourierPickup" />
1476
+ <output message="tns:cancelCourierPickupResponse" />
1477
+ <fault message="tns:IncorrectApiPasswordFault" name="IncorrectApiPasswordFault" />
1478
+ </operation>
1479
+ </portType>
1480
+
1481
+ <binding name="PacketeryBinding" type="tns:Packetery">
1482
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1483
+ <operation name="packetAttributesValid">
1484
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetAttributesValid"/>
1485
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1486
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1487
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1488
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1489
+ <fault name="DispatchOrderNotAllowedFault"><soap:fault name="DispatchOrderNotAllowedFault" use="literal"/></fault>
1490
+ <fault name="DispatchOrderInvalidPdfFault"><soap:fault name="DispatchOrderInvalidPdfFault" use="literal"/></fault>
1491
+ <fault name="DispatchOrderUnknownCodeFault"><soap:fault name="DispatchOrderUnknownCodeFault" use="literal"/></fault>
1492
+ </operation>
1493
+ <operation name="packetClaimAttributesValid">
1494
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetClaimAttributesValid"/>
1495
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1496
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1497
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1498
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1499
+ </operation>
1500
+ <operation name="createPacket">
1501
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createPacket"/>
1502
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1503
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1504
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1505
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1506
+ <fault name="DispatchOrderNotAllowedFault"><soap:fault name="DispatchOrderNotAllowedFault" use="literal"/></fault>
1507
+ <fault name="DispatchOrderInvalidPdfFault"><soap:fault name="DispatchOrderInvalidPdfFault" use="literal"/></fault>
1508
+ <fault name="DispatchOrderUnknownCodeFault"><soap:fault name="DispatchOrderUnknownCodeFault" use="literal"/></fault>
1509
+ </operation>
1510
+ <operation name="cancelPacket">
1511
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/cancelPacket" />
1512
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1513
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1514
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1515
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1516
+ <fault name="CancelNotAllowedFault"><soap:fault name="CancelNotAllowedFault" use="literal"/></fault>
1517
+ </operation>
1518
+ <operation name="createPackets">
1519
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createPackets"/>
1520
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1521
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1522
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1523
+ </operation>
1524
+ <operation name="createPacketsB2B">
1525
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createPacketsB2B"/>
1526
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1527
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1528
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1529
+ <fault name="AccessDeniedFault"><soap:fault name="AccessDeniedFault" use="literal"/></fault>
1530
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1531
+ </operation>
1532
+ <operation name="createPacketClaim">
1533
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createPacketClaim"/>
1534
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1535
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1536
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1537
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1538
+ </operation>
1539
+ <operation name="createPacketClaimWithPassword">
1540
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createPacketClaimWithPassword"/>
1541
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1542
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1543
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1544
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1545
+ </operation>
1546
+ <operation name="createShipment">
1547
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createShipment"/>
1548
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1549
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1550
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1551
+ <fault name="PacketIdsFault"><soap:fault name="PacketIdsFault" use="literal"/></fault>
1552
+ <fault name="NoPacketIdsFault"><soap:fault name="NoPacketIdsFault" use="literal"/></fault>
1553
+ <fault name="CustomBarcodeNotAllowedFault"><soap:fault name="CustomBarcodeNotAllowedFault" use="literal"/></fault>
1554
+ </operation>
1555
+ <operation name="shipmentPackets">
1556
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/shipmentPackets"/>
1557
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1558
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1559
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1560
+ <fault name="ShipmentNotFoundFault"><soap:fault name="ShipmentNotFoundFault" use="literal"/></fault>
1561
+ </operation>
1562
+ <operation name="packetStatus">
1563
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetStatus"/>
1564
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1565
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1566
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1567
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1568
+ </operation>
1569
+ <operation name="packetTracking">
1570
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetTracking"/>
1571
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1572
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1573
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1574
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1575
+ </operation>
1576
+ <operation name="packetCourierTracking">
1577
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierTracking"/>
1578
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1579
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1580
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1581
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1582
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1583
+ <fault name="NoPacketCourierDataFault"><soap:fault name="NoPacketCourierDataFault" use="literal"/></fault>
1584
+ </operation>
1585
+ <operation name="packetGetStoredUntil">
1586
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetGetStoredUntil"/>
1587
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1588
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1589
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1590
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1591
+ </operation>
1592
+ <operation name="packetSetStoredUntil">
1593
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetSetStoredUntil"/>
1594
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1595
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1596
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1597
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1598
+ <fault name="DateOutOfRangeFault"><soap:fault name="DateOutOfRangeFault" use="literal"/></fault>
1599
+ </operation>
1600
+ <operation name="barcodePng">
1601
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/barcodePng"/>
1602
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1603
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1604
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1605
+ </operation>
1606
+ <operation name="packetLabelPdf">
1607
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetLabelPdf"/>
1608
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1609
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1610
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1611
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1612
+ <fault name="UnknownLabelFormatFault"><soap:fault name="UnknownLabelFormatFault" use="literal"/></fault>
1613
+ </operation>
1614
+ <operation name="packetsLabelsPdf">
1615
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetsLabelsPdf"/>
1616
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1617
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1618
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1619
+ <fault name="PacketIdsFault"><soap:fault name="PacketIdsFault" use="literal"/></fault>
1620
+ <fault name="NoPacketIdsFault"><soap:fault name="NoPacketIdsFault" use="literal"/></fault>
1621
+ <fault name="UnknownLabelFormatFault"><soap:fault name="UnknownLabelFormatFault" use="literal"/></fault>
1622
+ </operation>
1623
+ <operation name="packetLabelZpl">
1624
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetLabelZpl"/>
1625
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1626
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1627
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1628
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1629
+ <fault name="UnknownLabelFormatFault"><soap:fault name="UnknownLabelFormatFault" use="literal"/></fault>
1630
+ </operation>
1631
+ <operation name="setCountryStatus">
1632
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/setCountryStatus"/>
1633
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1634
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1635
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1636
+ <fault name="ArgumentsFault"><soap:fault name="ArgumentsFault" use="literal"/></fault>
1637
+ </operation>
1638
+ <operation name="setBranchStatus">
1639
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/setBranchStatus"/>
1640
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1641
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1642
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1643
+ <fault name="ArgumentsFault"><soap:fault name="ArgumentsFault" use="literal"/></fault>
1644
+ </operation>
1645
+ <operation name="packetCourierNumber">
1646
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierNumber"/>
1647
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1648
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1649
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1650
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1651
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1652
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1653
+ </operation>
1654
+ <operation name="packetCourierNumberV2">
1655
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierNumberV2"/>
1656
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1657
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1658
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1659
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1660
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1661
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1662
+ </operation>
1663
+ <operation name="packetCourierBarcode">
1664
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierBarcode"/>
1665
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1666
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1667
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1668
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1669
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1670
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1671
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1672
+ </operation>
1673
+ <operation name="packetCourierLabelPng">
1674
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierLabelPng"/>
1675
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1676
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1677
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1678
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1679
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1680
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1681
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1682
+ </operation>
1683
+ <operation name="packetCourierLabelPdf">
1684
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierLabelPdf"/>
1685
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1686
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1687
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1688
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1689
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1690
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1691
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1692
+ </operation>
1693
+ <operation name="packetsCourierLabelsPdf">
1694
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetsCourierLabelsPdf"/>
1695
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1696
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1697
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1698
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1699
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1700
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1701
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1702
+ <fault name="NoPacketIdsFault"><soap:fault name="NoPacketIdsFault" use="literal"/></fault>
1703
+ <fault name="UnknownLabelFormatFault"><soap:fault name="UnknownLabelFormatFault" use="literal"/></fault>
1704
+ </operation>
1705
+ <operation name="packetCourierLabelZpl">
1706
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierLabelZpl"/>
1707
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1708
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1709
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1710
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1711
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1712
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1713
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1714
+ </operation>
1715
+ <operation name="packetCourierConfirm">
1716
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCourierConfirm"/>
1717
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1718
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1719
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1720
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1721
+ <fault name="NotSupportedFault"><soap:fault name="NotSupportedFault" use="literal"/></fault>
1722
+ <fault name="ExternalGatewayFault"><soap:fault name="ExternalGatewayFault" use="literal"/></fault>
1723
+ <fault name="InvalidCourierNumber"><soap:fault name="InvalidCourierNumber" use="literal"/></fault>
1724
+ </operation>
1725
+ <operation name="senderGetReturnString">
1726
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/senderGetReturnString"/>
1727
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1728
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1729
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1730
+ <fault name="SenderNotExists"><soap:fault name="SenderNotExists" use="literal"/></fault>
1731
+ </operation>
1732
+ <operation name="senderGetReturnRouting">
1733
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/senderGetReturnRouting"/>
1734
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1735
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1736
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1737
+ <fault name="SenderNotExists"><soap:fault name="SenderNotExists" use="literal"/></fault>
1738
+ </operation>
1739
+ <operation name="adviseBranch">
1740
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/adviseBranch"/>
1741
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1742
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1743
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1744
+ <fault name="InvalidEmailAddressFault"><soap:fault name="InvalidEmailAddressFault" use="literal"/></fault>
1745
+ <fault name="InvalidPhoneNumberFault"><soap:fault name="InvalidPhoneNumberFault" use="literal"/></fault>
1746
+ </operation>
1747
+ <operation name="packetCod">
1748
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetCod"/>
1749
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1750
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1751
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1752
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1753
+ </operation>
1754
+ <operation name="updatePacket">
1755
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/updatePacket"/>
1756
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1757
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1758
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1759
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1760
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal"/></fault>
1761
+ <fault name="TooLateToUpdateCodFault"><soap:fault name="TooLateToUpdateCodFault" use="literal"/></fault>
1762
+ <fault name="CodUpdateNotAllowedFault"><soap:fault name="CodUpdateNotAllowedFault" use="literal"/></fault>
1763
+ </operation>
1764
+ <operation name="getConsignmentPassword">
1765
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/getConsignmentPassword" />
1766
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal" /></input>
1767
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal" /></output>
1768
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal" /></fault>
1769
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal" /></fault>
1770
+ <fault name="AccessDeniedFault"><soap:fault name="AccessDeniedFault" use="literal" /></fault>
1771
+ <fault name="PacketAttributesFault"><soap:fault name="PacketAttributesFault" use="literal" /></fault>
1772
+ </operation>
1773
+ <operation name="createStorageFile">
1774
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createStorageFile"/>
1775
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal" /></input>
1776
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal" /></output>
1777
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal" /></fault>
1778
+ </operation>
1779
+ <operation name="listStorageFile">
1780
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/listStorageFile"/>
1781
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal" /></input>
1782
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal" /></output>
1783
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal" /></fault>
1784
+ </operation>
1785
+ <operation name="packetInfo">
1786
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/packetInfo"/>
1787
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1788
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1789
+ <fault name="PacketIdFault"><soap:fault name="PacketIdFault" use="literal"/></fault>
1790
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1791
+ <fault name="NoPacketCourierDataFault"><soap:fault name="NoPacketCourierDataFault" use="literal"/></fault>
1792
+ </operation>
1793
+ <operation name="courierPickupOptions">
1794
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/courierPickupOptions"/>
1795
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1796
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1797
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1798
+ </operation>
1799
+ <operation name="createCourierPickup">
1800
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/createCourierPickup"/>
1801
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1802
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1803
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1804
+ </operation>
1805
+ <operation name="cancelCourierPickup">
1806
+ <soap:operation soapAction="http://www.zasilkovna.cz/api/soap/cancelCourierPickup"/>
1807
+ <input><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl2" use="literal"/></input>
1808
+ <output><soap:body namespace="http://www.zasilkovna.cz/api/soap.wsdl" use="literal"/></output>
1809
+ <fault name="IncorrectApiPasswordFault"><soap:fault name="IncorrectApiPasswordFault" use="literal"/></fault>
1810
+ </operation>
1811
+ </binding>
1812
+
1813
+ <service name="PacketeryService">
1814
+ <documentation>This service allows to create packets and packet shipments, read information about their status and change some of their parameters.</documentation>
1815
+ <port name="PacketeryPort" binding="tns:PacketeryBinding">
1816
+ <soap:address location="http://www.zasilkovna.cz/api/soap" />
1817
+ </port>
1818
+ </service>
1819
+ </definitions>