b2b_center_api 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +8 -0
- data/b2b_center_api.gemspec +5 -3
- data/lib/b2b_center_api.rb +2 -4
- data/lib/b2b_center_api/client.rb +22 -0
- data/lib/b2b_center_api/remote_auction.rb +15 -0
- data/lib/b2b_center_api/remote_market.rb +16 -0
- data/lib/b2b_center_api/remote_tender.rb +10 -0
- data/lib/b2b_center_api/settings.rb +20 -0
- data/lib/b2b_center_api/version.rb +1 -1
- data/lib/b2b_center_api/web_service.rb +5 -0
- data/lib/b2b_center_api/web_service/remote.rb +29 -0
- data/lib/b2b_center_api/web_service/remote_auction.rb +11 -0
- data/lib/b2b_center_api/web_service/remote_market.rb +11 -0
- data/lib/b2b_center_api/web_service/remote_tender.rb +11 -0
- data/lib/b2b_center_api/web_service/response.rb +14 -0
- data/lib/b2b_center_api/web_service/type_cast.rb +31 -0
- data/lib/b2b_center_api/web_service/types.rb +2 -0
- data/lib/b2b_center_api/web_service/types/auction_participant.rb +28 -0
- data/lib/b2b_center_api/web_service/types/base.rb +40 -0
- data/lib/b2b_center_api/web_service/types/firm_info.rb +66 -0
- data/wsdl/demo.remote.xml +3539 -0
- metadata +34 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 694ccdd29ca008be6e32204bdc43d51da76d0cb3
|
4
|
+
data.tar.gz: 68838e4d378fa1b41fe998f02bbe72f50ac99d9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f58a155d2bc68c7c10f1497bdc8086ead2595c9072bd30c387bab4a6bfa662af70620b1501df97685cea545b5ff41034e923007ebba3dabd9b65f905427495d
|
7
|
+
data.tar.gz: efa817d70a9f13c340d22d6197a7036fbf6a6882db9c8b4f43e721935511caa20a50f86a5173b4c5642efe37e05f7aa7044bc7ebf1c86e303538b854f0df0b2c
|
data/.rubocop.yml
ADDED
data/b2b_center_api.gemspec
CHANGED
@@ -13,12 +13,14 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.homepage = ''
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
|
-
spec.files = `git ls-files`.split(
|
17
|
-
spec.executables = spec.files.grep(
|
18
|
-
spec.test_files = spec.files.grep(
|
16
|
+
spec.files = `git ls-files`.split($RS)
|
17
|
+
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
|
19
19
|
spec.require_paths = ['lib']
|
20
20
|
|
21
21
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
22
22
|
spec.add_development_dependency 'rake'
|
23
23
|
spec.add_development_dependency 'rspec'
|
24
|
+
|
25
|
+
spec.add_dependency 'savon', '~> 2.10.0'
|
24
26
|
end
|
data/lib/b2b_center_api.rb
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'b2b_center_api/settings'
|
2
|
+
require 'b2b_center_api/remote_auction'
|
3
|
+
require 'b2b_center_api/remote_market'
|
4
|
+
require 'b2b_center_api/remote_tender'
|
5
|
+
require 'savon'
|
6
|
+
|
7
|
+
module B2bCenterApi
|
8
|
+
# Soap Client
|
9
|
+
class Client
|
10
|
+
attr_accessor :remote_auction,
|
11
|
+
:remote_market,
|
12
|
+
:remote_tender
|
13
|
+
|
14
|
+
def initialize(options = nil)
|
15
|
+
options ||= Settings.soap_options
|
16
|
+
@client = Savon.client(options)
|
17
|
+
@remote_auction = RemoteAuction.new(@client)
|
18
|
+
@remote_market = RemoteMarket.new(@client)
|
19
|
+
@remote_tender = RemoteTender.new(@client)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'b2b_center_api/web_service'
|
2
|
+
|
3
|
+
module B2bCenterApi
|
4
|
+
class RemoteAuction
|
5
|
+
def initialize(client)
|
6
|
+
@client = client
|
7
|
+
@client_web = WebService::RemoteAuction.new(client)
|
8
|
+
end
|
9
|
+
|
10
|
+
def get_participants(auction_id)
|
11
|
+
response = @client_web.command :get_participants, auction_id: auction_id
|
12
|
+
WebService::Types::AuctionParticipant.from_response(response, @client)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'b2b_center_api/web_service'
|
2
|
+
|
3
|
+
module B2bCenterApi
|
4
|
+
# Методы класса RemoteMarket
|
5
|
+
class RemoteMarket
|
6
|
+
def initialize(client)
|
7
|
+
@client = client
|
8
|
+
@client_web = WebService::RemoteMarket.new(client)
|
9
|
+
end
|
10
|
+
|
11
|
+
def get_firm_info(firm_id)
|
12
|
+
response = @client_web.command :get_firm_info, firm_id: firm_id
|
13
|
+
WebService::Types::FirmInfo.from_response(response, @client)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module B2bCenterApi
|
2
|
+
# A 'global' config.
|
3
|
+
class Settings
|
4
|
+
@soap_options = {}
|
5
|
+
@auth_options = {}
|
6
|
+
|
7
|
+
# Configure through hash
|
8
|
+
def self.soap_configure(opts = {})
|
9
|
+
opts.each { |k, v| @soap_options[k.to_sym] = v }
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.auth_configure(opts = {})
|
13
|
+
opts.each { |k, v| @auth_options[k.to_sym] = v }
|
14
|
+
end
|
15
|
+
|
16
|
+
class << self
|
17
|
+
attr_reader :soap_options, :auth_options
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'b2b_center_api/settings'
|
2
|
+
require 'b2b_center_api/web_service/response'
|
3
|
+
|
4
|
+
module B2bCenterApi
|
5
|
+
module WebService
|
6
|
+
class Remote
|
7
|
+
def command(name, params)
|
8
|
+
auth = B2bCenterApi::Settings.auth_options
|
9
|
+
params = auth.merge(params)
|
10
|
+
res = @client.call(method_fullname(name), message: params)
|
11
|
+
Response.new(res)
|
12
|
+
end
|
13
|
+
|
14
|
+
def initialize(client)
|
15
|
+
@client = client
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def method_fullname(name)
|
21
|
+
format('%s_%s', soap_method_prefix, name).to_sym
|
22
|
+
end
|
23
|
+
|
24
|
+
# def clean_params(options)
|
25
|
+
# options
|
26
|
+
# end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module B2bCenterApi
|
2
|
+
module WebService
|
3
|
+
class Response
|
4
|
+
attr_reader :body, :ret, :status, :result
|
5
|
+
|
6
|
+
def initialize(response)
|
7
|
+
@body = response.body
|
8
|
+
@ret = @body.values[0][:return]
|
9
|
+
@status = @ret[:status]
|
10
|
+
@result = @ret.values[1]
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'time'
|
2
|
+
require 'date'
|
3
|
+
|
4
|
+
module B2bCenterApi
|
5
|
+
module WebService
|
6
|
+
module TypeCast
|
7
|
+
module ClassMethods
|
8
|
+
def convert(obj, obj_type)
|
9
|
+
return obj if obj.nil?
|
10
|
+
case obj_type
|
11
|
+
when :string then obj
|
12
|
+
when :integer then obj.to_s
|
13
|
+
when :date then Date.parse(obj)
|
14
|
+
when :time then Time.parse(obj)
|
15
|
+
when :boolean then to_boolean(obj)
|
16
|
+
else obj
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def to_boolean(obj)
|
21
|
+
return obj if obj.nil?
|
22
|
+
obj == '1' ? true : false
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.included(base)
|
27
|
+
base.extend(ClassMethods)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'b2b_center_api/web_service/types/base'
|
2
|
+
|
3
|
+
module B2bCenterApi
|
4
|
+
module WebService
|
5
|
+
module Types
|
6
|
+
class AuctionParticipant < Base
|
7
|
+
attr_accessor :firm_id, :offers_nums
|
8
|
+
|
9
|
+
def self.from_response(response, client)
|
10
|
+
r = response.result
|
11
|
+
mas = r[:participant].map do |p|
|
12
|
+
ap = AuctionParticipant.new
|
13
|
+
ap.soap_client = client
|
14
|
+
ap.firm_id = convert(p[:firm_id], :integer)
|
15
|
+
ap.offers_nums = convert(p[:offers_nums][:string], :integer)
|
16
|
+
ap
|
17
|
+
end
|
18
|
+
|
19
|
+
mas
|
20
|
+
end
|
21
|
+
|
22
|
+
def firm
|
23
|
+
remote_market.get_firm_info(firm_id)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'b2b_center_api/web_service/type_cast'
|
2
|
+
require 'b2b_center_api/remote_auction'
|
3
|
+
require 'b2b_center_api/remote_market'
|
4
|
+
require 'b2b_center_api/remote_tender'
|
5
|
+
|
6
|
+
module B2bCenterApi
|
7
|
+
module WebService
|
8
|
+
module Types
|
9
|
+
class Base
|
10
|
+
include B2bCenterApi::WebService::TypeCast
|
11
|
+
|
12
|
+
attr_writer :soap_client
|
13
|
+
|
14
|
+
NO_INSPECT_ATTRS = [:@soap_client]
|
15
|
+
|
16
|
+
def inspect
|
17
|
+
vars = instance_variables
|
18
|
+
NO_INSPECT_ATTRS.each { |a| vars.delete(a) }
|
19
|
+
vars = vars.map { |v| "#{v}=#{instance_variable_get(v).inspect}" }
|
20
|
+
vars = vars.join(', ')
|
21
|
+
"<#{self.class}: #{vars}>"
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def remote_auction
|
27
|
+
B2bCenterApi::RemoteAuction.new(@soap_client)
|
28
|
+
end
|
29
|
+
|
30
|
+
def remote_market
|
31
|
+
B2bCenterApi::RemoteMarket.new(@soap_client)
|
32
|
+
end
|
33
|
+
|
34
|
+
def remote_tender
|
35
|
+
B2bCenterApi::RemoteTender.new(@soap_client)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'b2b_center_api/web_service/types/base'
|
2
|
+
|
3
|
+
module B2bCenterApi
|
4
|
+
module WebService
|
5
|
+
module Types
|
6
|
+
class FirmInfo < Base
|
7
|
+
attr_accessor :date_lastedit,
|
8
|
+
:org_name,
|
9
|
+
:org_name_short,
|
10
|
+
:code_okpo,
|
11
|
+
:bank_name,
|
12
|
+
:bank_inn,
|
13
|
+
:ogrn,
|
14
|
+
:ogrn_given,
|
15
|
+
:ogrn_date_given,
|
16
|
+
:bank_kpp,
|
17
|
+
:bank_bik,
|
18
|
+
:bank_r_account,
|
19
|
+
:bank_c_account,
|
20
|
+
:bank_comments,
|
21
|
+
:jury_address,
|
22
|
+
:post_address,
|
23
|
+
:fact_address,
|
24
|
+
:site_url,
|
25
|
+
:certification,
|
26
|
+
:org_details,
|
27
|
+
:bank_details,
|
28
|
+
:country,
|
29
|
+
# :bosses,
|
30
|
+
:is_smb
|
31
|
+
|
32
|
+
def self.from_response(response, client)
|
33
|
+
r = response.result
|
34
|
+
fi = FirmInfo.new
|
35
|
+
fi.soap_client = client
|
36
|
+
fi.date_lastedit = convert(r[:date_lastedit], :time)
|
37
|
+
fi.org_name = convert(r[:org_name], :string)
|
38
|
+
fi.org_name_short = convert(r[:org_name_short], :string)
|
39
|
+
fi.code_okpo = convert(r[:code_okpo], :string)
|
40
|
+
fi.bank_name = convert(r[:bank_name], :string)
|
41
|
+
fi.bank_inn = convert(r[:bank_inn], :string)
|
42
|
+
fi.ogrn = convert(r[:ogrn], :string)
|
43
|
+
fi.ogrn_given = convert(r[:ogrn_given], :string)
|
44
|
+
fi.ogrn_date_given = convert(r[:ogrn_date_given], :string)
|
45
|
+
fi.bank_kpp = convert(r[:bank_kpp], :string)
|
46
|
+
fi.bank_bik = convert(r[:bank_bik], :string)
|
47
|
+
fi.bank_r_account = convert(r[:bank_r_account], :string)
|
48
|
+
fi.bank_c_account = convert(r[:bank_c_account], :string)
|
49
|
+
fi.bank_comments = convert(r[:bank_comments], :string)
|
50
|
+
fi.jury_address = convert(r[:jury_address], :string)
|
51
|
+
fi.post_address = convert(r[:post_address], :string)
|
52
|
+
fi.fact_address = convert(r[:fact_address], :string)
|
53
|
+
fi.site_url = convert(r[:site_url], :string)
|
54
|
+
fi.certification = convert(r[:certification], :string)
|
55
|
+
fi.org_details = convert(r[:org_details], :string)
|
56
|
+
fi.bank_details = convert(r[:bank_details], :string)
|
57
|
+
fi.country = convert(r[:country], :integer)
|
58
|
+
# fi.bosses = convert(r[:bosses], :string)
|
59
|
+
fi.is_smb = convert(r[:is_smb], :boolean)
|
60
|
+
|
61
|
+
fi
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,3539 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:ws" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:ws">
|
3
|
+
<types>
|
4
|
+
<xsd:schema elementFormDefault="qualified" targetNamespace="urn:ws"
|
5
|
+
>
|
6
|
+
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
|
7
|
+
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
|
8
|
+
<xsd:complexType name="auth_info">
|
9
|
+
<xsd:sequence>
|
10
|
+
<xsd:element name="login" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
11
|
+
<xsd:element name="password" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
12
|
+
</xsd:sequence>
|
13
|
+
</xsd:complexType>
|
14
|
+
<xsd:complexType name="response_status">
|
15
|
+
<xsd:sequence>
|
16
|
+
<xsd:element name="error_code" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
17
|
+
<xsd:element name="error_message" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
18
|
+
<xsd:element name="message" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
19
|
+
</xsd:sequence>
|
20
|
+
</xsd:complexType>
|
21
|
+
<xsd:complexType name="ret_status">
|
22
|
+
<xsd:sequence>
|
23
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
24
|
+
</xsd:sequence>
|
25
|
+
</xsd:complexType>
|
26
|
+
<xsd:complexType name="ret_integer">
|
27
|
+
<xsd:sequence>
|
28
|
+
<xsd:element name="value" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
29
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
30
|
+
</xsd:sequence>
|
31
|
+
</xsd:complexType>
|
32
|
+
<xsd:complexType name="ret_string">
|
33
|
+
<xsd:sequence>
|
34
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
35
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
36
|
+
</xsd:sequence>
|
37
|
+
</xsd:complexType>
|
38
|
+
<xsd:complexType name="ret_date">
|
39
|
+
<xsd:sequence>
|
40
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
41
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
42
|
+
</xsd:sequence>
|
43
|
+
</xsd:complexType>
|
44
|
+
<xsd:complexType name="ret_datetime">
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
47
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
48
|
+
</xsd:sequence>
|
49
|
+
</xsd:complexType>
|
50
|
+
<xsd:complexType name="service_row">
|
51
|
+
<xsd:sequence>
|
52
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
53
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
54
|
+
</xsd:sequence>
|
55
|
+
</xsd:complexType>
|
56
|
+
<xsd:complexType name="array_of_services">
|
57
|
+
<xsd:sequence>
|
58
|
+
<xsd:element name="service" type="tns:service_row" minOccurs="0" maxOccurs="unbounded"/>
|
59
|
+
</xsd:sequence>
|
60
|
+
</xsd:complexType>
|
61
|
+
<xsd:complexType name="firm_info">
|
62
|
+
<xsd:sequence>
|
63
|
+
<xsd:element name="date_lastedit" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
64
|
+
<xsd:element name="org_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
65
|
+
<xsd:element name="org_name_short" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
66
|
+
<xsd:element name="code_okpo" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
67
|
+
<xsd:element name="bank_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
68
|
+
<xsd:element name="bank_inn" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
69
|
+
<xsd:element name="ogrn" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
70
|
+
<xsd:element name="ogrn_given" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
71
|
+
<xsd:element name="ogrn_date_given" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
72
|
+
<xsd:element name="bank_kpp" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
73
|
+
<xsd:element name="bank_bik" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
74
|
+
<xsd:element name="bank_r_account" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
75
|
+
<xsd:element name="bank_c_account" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
76
|
+
<xsd:element name="bank_comments" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
77
|
+
<xsd:element name="jury_address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
78
|
+
<xsd:element name="post_address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
79
|
+
<xsd:element name="fact_address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
80
|
+
<xsd:element name="site_url" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
81
|
+
<xsd:element name="certification" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
82
|
+
<xsd:element name="org_details" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
83
|
+
<xsd:element name="bank_details" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
84
|
+
<xsd:element name="country" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
85
|
+
<xsd:element name="bosses" type="tns:bosses_users" minOccurs="0" maxOccurs="unbounded"/>
|
86
|
+
<xsd:element name="is_smb" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
87
|
+
</xsd:sequence>
|
88
|
+
</xsd:complexType>
|
89
|
+
<xsd:complexType name="ret_firm_info">
|
90
|
+
<xsd:sequence>
|
91
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
92
|
+
<xsd:element name="firm_info" type="tns:firm_info" minOccurs="0" maxOccurs="unbounded"/>
|
93
|
+
</xsd:sequence>
|
94
|
+
</xsd:complexType>
|
95
|
+
<xsd:complexType name="department_data">
|
96
|
+
<xsd:sequence>
|
97
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
98
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
99
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
100
|
+
<xsd:element name="description" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
101
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
102
|
+
<xsd:element name="type" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
103
|
+
<xsd:element name="date_modified" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
104
|
+
</xsd:sequence>
|
105
|
+
</xsd:complexType>
|
106
|
+
<xsd:complexType name="ret_department_data">
|
107
|
+
<xsd:sequence>
|
108
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
109
|
+
<xsd:element name="department_data" type="tns:department_data" minOccurs="0" maxOccurs="1"/>
|
110
|
+
</xsd:sequence>
|
111
|
+
</xsd:complexType>
|
112
|
+
<xsd:complexType name="user_data">
|
113
|
+
<xsd:sequence>
|
114
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
115
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
116
|
+
<xsd:element name="login" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
117
|
+
<xsd:element name="password" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
118
|
+
<xsd:element name="lastname" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
119
|
+
<xsd:element name="firstname" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
120
|
+
<xsd:element name="midname" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
121
|
+
<xsd:element name="email" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
122
|
+
<xsd:element name="phone" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
123
|
+
<xsd:element name="fax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
124
|
+
<xsd:element name="document" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
125
|
+
<xsd:element name="department_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
126
|
+
<xsd:element name="position" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
127
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
128
|
+
<xsd:element name="permissions" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
129
|
+
<xsd:element name="ext_id" type="xsd:long" minOccurs="0" maxOccurs="1"/>
|
130
|
+
</xsd:sequence>
|
131
|
+
</xsd:complexType>
|
132
|
+
<xsd:complexType name="ret_user_data">
|
133
|
+
<xsd:sequence>
|
134
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
135
|
+
<xsd:element name="user_data" type="tns:user_data" minOccurs="0" maxOccurs="1"/>
|
136
|
+
</xsd:sequence>
|
137
|
+
</xsd:complexType>
|
138
|
+
<xsd:complexType name="okdp_row">
|
139
|
+
<xsd:sequence>
|
140
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
141
|
+
<xsd:element name="parent_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
142
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
143
|
+
<xsd:element name="date_modified" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
144
|
+
</xsd:sequence>
|
145
|
+
</xsd:complexType>
|
146
|
+
<xsd:complexType name="ret_okdp_rows">
|
147
|
+
<xsd:sequence>
|
148
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
149
|
+
<xsd:element name="okdp_rows" type="tns:okdp_row" minOccurs="0" maxOccurs="unbounded"/>
|
150
|
+
</xsd:sequence>
|
151
|
+
</xsd:complexType>
|
152
|
+
<xsd:complexType name="array_of_ids">
|
153
|
+
<xsd:sequence>
|
154
|
+
<xsd:element name="string" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
155
|
+
</xsd:sequence>
|
156
|
+
</xsd:complexType>
|
157
|
+
<xsd:complexType name="ret_array_of_ids">
|
158
|
+
<xsd:sequence>
|
159
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
160
|
+
<xsd:element name="ids" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
|
161
|
+
</xsd:sequence>
|
162
|
+
</xsd:complexType>
|
163
|
+
<xsd:complexType name="associative_row">
|
164
|
+
<xsd:sequence>
|
165
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
166
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
167
|
+
</xsd:sequence>
|
168
|
+
</xsd:complexType>
|
169
|
+
<xsd:complexType name="associative_array">
|
170
|
+
<xsd:sequence>
|
171
|
+
<xsd:element name="row" type="tns:associative_row" minOccurs="0" maxOccurs="unbounded"/>
|
172
|
+
</xsd:sequence>
|
173
|
+
</xsd:complexType>
|
174
|
+
<xsd:complexType name="ret_associative_array">
|
175
|
+
<xsd:sequence>
|
176
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
177
|
+
<xsd:element name="array" type="tns:associative_array" minOccurs="0" maxOccurs="1"/>
|
178
|
+
</xsd:sequence>
|
179
|
+
</xsd:complexType>
|
180
|
+
<xsd:complexType name="file">
|
181
|
+
<xsd:sequence>
|
182
|
+
<xsd:element name="title" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
183
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
184
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
185
|
+
</xsd:sequence>
|
186
|
+
</xsd:complexType>
|
187
|
+
<xsd:complexType name="array_of_files">
|
188
|
+
<xsd:sequence>
|
189
|
+
<xsd:element name="file" type="tns:file" minOccurs="0" maxOccurs="unbounded"/>
|
190
|
+
</xsd:sequence>
|
191
|
+
</xsd:complexType>
|
192
|
+
<xsd:complexType name="ret_doc">
|
193
|
+
<xsd:sequence>
|
194
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
195
|
+
<xsd:element name="doc" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
196
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
197
|
+
</xsd:sequence>
|
198
|
+
</xsd:complexType>
|
199
|
+
<xsd:complexType name="ret_file">
|
200
|
+
<xsd:sequence>
|
201
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
202
|
+
<xsd:element name="file_name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
203
|
+
</xsd:sequence>
|
204
|
+
</xsd:complexType>
|
205
|
+
<xsd:complexType name="address_data">
|
206
|
+
<xsd:sequence>
|
207
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
208
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
209
|
+
<xsd:element name="country" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
210
|
+
<xsd:element name="region" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
211
|
+
<xsd:element name="okato" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
212
|
+
<xsd:element name="address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
213
|
+
<xsd:element name="comment" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
214
|
+
<xsd:element name="lat" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
215
|
+
<xsd:element name="lng" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
216
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
217
|
+
</xsd:sequence>
|
218
|
+
</xsd:complexType>
|
219
|
+
<xsd:complexType name="ret_address_data">
|
220
|
+
<xsd:sequence>
|
221
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
222
|
+
<xsd:element name="address_data" type="tns:address_data" minOccurs="0" maxOccurs="1"/>
|
223
|
+
</xsd:sequence>
|
224
|
+
</xsd:complexType>
|
225
|
+
<xsd:complexType name="firm_request">
|
226
|
+
<xsd:sequence>
|
227
|
+
<xsd:element name="ogrn" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
228
|
+
<xsd:element name="inn" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
229
|
+
<xsd:element name="okpo" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
230
|
+
<xsd:element name="bank_kpp" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
231
|
+
</xsd:sequence>
|
232
|
+
</xsd:complexType>
|
233
|
+
<xsd:complexType name="firm_data">
|
234
|
+
<xsd:sequence>
|
235
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
236
|
+
<xsd:element name="org_name_short" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
237
|
+
<xsd:element name="org_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
238
|
+
<xsd:element name="ogrn" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
239
|
+
<xsd:element name="inn" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
240
|
+
<xsd:element name="okpo" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
241
|
+
<xsd:element name="bank_kpp" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
242
|
+
</xsd:sequence>
|
243
|
+
</xsd:complexType>
|
244
|
+
<xsd:complexType name="ret_find_firm">
|
245
|
+
<xsd:sequence>
|
246
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
247
|
+
<xsd:element name="firm_data" type="tns:firm_data" minOccurs="0" maxOccurs="1"/>
|
248
|
+
</xsd:sequence>
|
249
|
+
</xsd:complexType>
|
250
|
+
<xsd:complexType name="array_of_firm_data">
|
251
|
+
<xsd:sequence>
|
252
|
+
<xsd:element name="firm_data" type="tns:firm_data" minOccurs="0" maxOccurs="unbounded"/>
|
253
|
+
</xsd:sequence>
|
254
|
+
</xsd:complexType>
|
255
|
+
<xsd:complexType name="firm_tender">
|
256
|
+
<xsd:sequence>
|
257
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
258
|
+
<xsd:element name="organizer_firm" type="tns:firm_data" minOccurs="1" maxOccurs="1"/>
|
259
|
+
<xsd:element name="common_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
260
|
+
<xsd:element name="date_begin" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
261
|
+
<xsd:element name="date_unsealing" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
262
|
+
<xsd:element name="opened" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
263
|
+
<xsd:element name="winners_firms" type="tns:array_of_firm_data" minOccurs="1" maxOccurs="1"/>
|
264
|
+
<xsd:element name="participants_count" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
265
|
+
<xsd:element name="offers_count" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
266
|
+
<xsd:element name="date_offer" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
267
|
+
</xsd:sequence>
|
268
|
+
</xsd:complexType>
|
269
|
+
<xsd:complexType name="array_of_firm_tenders">
|
270
|
+
<xsd:sequence>
|
271
|
+
<xsd:element name="firm_tender" type="tns:firm_tender" minOccurs="0" maxOccurs="unbounded"/>
|
272
|
+
</xsd:sequence>
|
273
|
+
</xsd:complexType>
|
274
|
+
<xsd:complexType name="ret_firm_tenders">
|
275
|
+
<xsd:sequence>
|
276
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
277
|
+
<xsd:element name="firm_data" type="tns:firm_data" minOccurs="0" maxOccurs="1"/>
|
278
|
+
<xsd:element name="firm_tenders" type="tns:array_of_firm_tenders" minOccurs="0" maxOccurs="1"/>
|
279
|
+
</xsd:sequence>
|
280
|
+
</xsd:complexType>
|
281
|
+
<xsd:complexType name="ret_modified_purchases">
|
282
|
+
<xsd:sequence>
|
283
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
284
|
+
<xsd:element name="modified_purchases" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
285
|
+
</xsd:sequence>
|
286
|
+
</xsd:complexType>
|
287
|
+
<xsd:complexType name="ret_register_firm">
|
288
|
+
<xsd:sequence>
|
289
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
290
|
+
<xsd:element name="register_result" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
291
|
+
</xsd:sequence>
|
292
|
+
</xsd:complexType>
|
293
|
+
<xsd:complexType name="ret_array_explanations">
|
294
|
+
<xsd:sequence>
|
295
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
296
|
+
<xsd:element name="explanations" type="tns:explanation" minOccurs="1" maxOccurs="unbounded"/>
|
297
|
+
</xsd:sequence>
|
298
|
+
</xsd:complexType>
|
299
|
+
<xsd:complexType name="explanation">
|
300
|
+
<xsd:sequence>
|
301
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
302
|
+
<xsd:element name="question" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
303
|
+
<xsd:element name="answer" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
304
|
+
<xsd:element name="user_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
305
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
306
|
+
<xsd:element name="published" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
307
|
+
<xsd:element name="file" type="tns:file" minOccurs="0" maxOccurs="unbounded"/>
|
308
|
+
</xsd:sequence>
|
309
|
+
</xsd:complexType>
|
310
|
+
<xsd:complexType name="ret_worksheets">
|
311
|
+
<xsd:sequence>
|
312
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
313
|
+
<xsd:element name="worksheets" type="tns:worksheets" minOccurs="1" maxOccurs="1"/>
|
314
|
+
</xsd:sequence>
|
315
|
+
</xsd:complexType>
|
316
|
+
<xsd:complexType name="worksheets">
|
317
|
+
<xsd:sequence>
|
318
|
+
<xsd:element name="firm_worksheets" type="tns:firm_worksheets" minOccurs="0" maxOccurs="unbounded"/>
|
319
|
+
</xsd:sequence>
|
320
|
+
</xsd:complexType>
|
321
|
+
<xsd:complexType name="firm_worksheets">
|
322
|
+
<xsd:sequence>
|
323
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
324
|
+
<xsd:element name="worksheet_data" type="tns:worksheet_data" minOccurs="0" maxOccurs="unbounded"/>
|
325
|
+
</xsd:sequence>
|
326
|
+
</xsd:complexType>
|
327
|
+
<xsd:complexType name="worksheet_data">
|
328
|
+
<xsd:sequence>
|
329
|
+
<xsd:element name="title" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
330
|
+
<xsd:element name="values" type="tns:worksheet_data_value" minOccurs="0" maxOccurs="unbounded"/>
|
331
|
+
</xsd:sequence>
|
332
|
+
</xsd:complexType>
|
333
|
+
<xsd:complexType name="worksheet_data_value">
|
334
|
+
<xsd:sequence>
|
335
|
+
<xsd:element name="identifier" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
336
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
337
|
+
</xsd:sequence>
|
338
|
+
</xsd:complexType>
|
339
|
+
<xsd:complexType name="bosses_users">
|
340
|
+
<xsd:sequence>
|
341
|
+
<xsd:element name="lastname" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
342
|
+
<xsd:element name="firstname" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
343
|
+
<xsd:element name="midname" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
344
|
+
<xsd:element name="phone" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
345
|
+
<xsd:element name="position" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
346
|
+
</xsd:sequence>
|
347
|
+
</xsd:complexType>
|
348
|
+
<xsd:complexType name="cancel_info">
|
349
|
+
<xsd:sequence>
|
350
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
351
|
+
<xsd:element name="reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
352
|
+
</xsd:sequence>
|
353
|
+
</xsd:complexType>
|
354
|
+
<xsd:complexType name="ret_cancel_info">
|
355
|
+
<xsd:sequence>
|
356
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
357
|
+
<xsd:element name="cancel_info" type="tns:cancel_info" minOccurs="0" maxOccurs="1"/>
|
358
|
+
</xsd:sequence>
|
359
|
+
</xsd:complexType>
|
360
|
+
<xsd:complexType name="RemoteMarket.getServicesRequestType"/>
|
361
|
+
<xsd:complexType name="RemoteMarket.getServicesResponseType">
|
362
|
+
<xsd:sequence>
|
363
|
+
<xsd:element name="return" type="tns:array_of_services" minOccurs="0" maxOccurs="1"/>
|
364
|
+
</xsd:sequence>
|
365
|
+
</xsd:complexType>
|
366
|
+
<xsd:complexType name="RemoteMarket.getFirmInfoRequestType">
|
367
|
+
<xsd:sequence>
|
368
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
369
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
370
|
+
</xsd:sequence>
|
371
|
+
</xsd:complexType>
|
372
|
+
<xsd:complexType name="RemoteMarket.getFirmInfoResponseType">
|
373
|
+
<xsd:sequence>
|
374
|
+
<xsd:element name="return" type="tns:ret_firm_info" minOccurs="0" maxOccurs="1"/>
|
375
|
+
</xsd:sequence>
|
376
|
+
</xsd:complexType>
|
377
|
+
<xsd:complexType name="RemoteMarket.getFirmPropertiesRequestType">
|
378
|
+
<xsd:sequence>
|
379
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
380
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
381
|
+
<xsd:element name="prop_keys" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
382
|
+
</xsd:sequence>
|
383
|
+
</xsd:complexType>
|
384
|
+
<xsd:complexType name="RemoteMarket.getFirmPropertiesResponseType">
|
385
|
+
<xsd:sequence>
|
386
|
+
<xsd:element name="return" type="tns:ret_associative_array" minOccurs="0" maxOccurs="1"/>
|
387
|
+
</xsd:sequence>
|
388
|
+
</xsd:complexType>
|
389
|
+
<xsd:complexType name="RemoteMarket.getClassifierRowsRequestType">
|
390
|
+
<xsd:sequence>
|
391
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
392
|
+
<xsd:element name="ids" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
393
|
+
<xsd:element name="is_parent" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
394
|
+
</xsd:sequence>
|
395
|
+
</xsd:complexType>
|
396
|
+
<xsd:complexType name="RemoteMarket.getClassifierRowsResponseType">
|
397
|
+
<xsd:sequence>
|
398
|
+
<xsd:element name="return" type="tns:ret_okdp_rows" minOccurs="0" maxOccurs="1"/>
|
399
|
+
</xsd:sequence>
|
400
|
+
</xsd:complexType>
|
401
|
+
<xsd:complexType name="RemoteMarket.getModifiedClassifierRowsRequestType">
|
402
|
+
<xsd:sequence>
|
403
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
404
|
+
<xsd:element name="date_from" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
405
|
+
</xsd:sequence>
|
406
|
+
</xsd:complexType>
|
407
|
+
<xsd:complexType name="RemoteMarket.getModifiedClassifierRowsResponseType">
|
408
|
+
<xsd:sequence>
|
409
|
+
<xsd:element name="return" type="tns:ret_okdp_rows" minOccurs="0" maxOccurs="1"/>
|
410
|
+
</xsd:sequence>
|
411
|
+
</xsd:complexType>
|
412
|
+
<xsd:complexType name="RemoteMarket.updateUserRequestType">
|
413
|
+
<xsd:sequence>
|
414
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
415
|
+
<xsd:element name="data" type="tns:user_data" minOccurs="0" maxOccurs="1"/>
|
416
|
+
</xsd:sequence>
|
417
|
+
</xsd:complexType>
|
418
|
+
<xsd:complexType name="RemoteMarket.updateUserResponseType">
|
419
|
+
<xsd:sequence>
|
420
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
421
|
+
</xsd:sequence>
|
422
|
+
</xsd:complexType>
|
423
|
+
<xsd:complexType name="RemoteMarket.getUserRequestType">
|
424
|
+
<xsd:sequence>
|
425
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
426
|
+
<xsd:element name="user_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
427
|
+
</xsd:sequence>
|
428
|
+
</xsd:complexType>
|
429
|
+
<xsd:complexType name="RemoteMarket.getUserResponseType">
|
430
|
+
<xsd:sequence>
|
431
|
+
<xsd:element name="return" type="tns:ret_user_data" minOccurs="0" maxOccurs="1"/>
|
432
|
+
</xsd:sequence>
|
433
|
+
</xsd:complexType>
|
434
|
+
<xsd:complexType name="RemoteMarket.deleteUserRequestType">
|
435
|
+
<xsd:sequence>
|
436
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
437
|
+
<xsd:element name="user_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
438
|
+
</xsd:sequence>
|
439
|
+
</xsd:complexType>
|
440
|
+
<xsd:complexType name="RemoteMarket.deleteUserResponseType">
|
441
|
+
<xsd:sequence>
|
442
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
443
|
+
</xsd:sequence>
|
444
|
+
</xsd:complexType>
|
445
|
+
<xsd:complexType name="RemoteMarket.getUsersIdsRequestType">
|
446
|
+
<xsd:sequence>
|
447
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
448
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
449
|
+
</xsd:sequence>
|
450
|
+
</xsd:complexType>
|
451
|
+
<xsd:complexType name="RemoteMarket.getUsersIdsResponseType">
|
452
|
+
<xsd:sequence>
|
453
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
454
|
+
</xsd:sequence>
|
455
|
+
</xsd:complexType>
|
456
|
+
<xsd:complexType name="RemoteMarket.updateDepartmentRequestType">
|
457
|
+
<xsd:sequence>
|
458
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
459
|
+
<xsd:element name="data" type="tns:department_data" minOccurs="0" maxOccurs="1"/>
|
460
|
+
</xsd:sequence>
|
461
|
+
</xsd:complexType>
|
462
|
+
<xsd:complexType name="RemoteMarket.updateDepartmentResponseType">
|
463
|
+
<xsd:sequence>
|
464
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
465
|
+
</xsd:sequence>
|
466
|
+
</xsd:complexType>
|
467
|
+
<xsd:complexType name="RemoteMarket.getDepartmentRequestType">
|
468
|
+
<xsd:sequence>
|
469
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
470
|
+
<xsd:element name="department_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
471
|
+
</xsd:sequence>
|
472
|
+
</xsd:complexType>
|
473
|
+
<xsd:complexType name="RemoteMarket.getDepartmentResponseType">
|
474
|
+
<xsd:sequence>
|
475
|
+
<xsd:element name="return" type="tns:ret_department_data" minOccurs="0" maxOccurs="1"/>
|
476
|
+
</xsd:sequence>
|
477
|
+
</xsd:complexType>
|
478
|
+
<xsd:complexType name="RemoteMarket.deleteDepartmentRequestType">
|
479
|
+
<xsd:sequence>
|
480
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
481
|
+
<xsd:element name="department_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
482
|
+
</xsd:sequence>
|
483
|
+
</xsd:complexType>
|
484
|
+
<xsd:complexType name="RemoteMarket.deleteDepartmentResponseType">
|
485
|
+
<xsd:sequence>
|
486
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
487
|
+
</xsd:sequence>
|
488
|
+
</xsd:complexType>
|
489
|
+
<xsd:complexType name="RemoteMarket.getDepartmentsIdsRequestType">
|
490
|
+
<xsd:sequence>
|
491
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
492
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
493
|
+
</xsd:sequence>
|
494
|
+
</xsd:complexType>
|
495
|
+
<xsd:complexType name="RemoteMarket.getDepartmentsIdsResponseType">
|
496
|
+
<xsd:sequence>
|
497
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
498
|
+
</xsd:sequence>
|
499
|
+
</xsd:complexType>
|
500
|
+
<xsd:complexType name="RemoteMarket.getHierarchyFirmsRequestType">
|
501
|
+
<xsd:sequence>
|
502
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
503
|
+
</xsd:sequence>
|
504
|
+
</xsd:complexType>
|
505
|
+
<xsd:complexType name="RemoteMarket.getHierarchyFirmsResponseType">
|
506
|
+
<xsd:sequence>
|
507
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
508
|
+
</xsd:sequence>
|
509
|
+
</xsd:complexType>
|
510
|
+
<xsd:complexType name="RemoteMarket.updateAddressRequestType">
|
511
|
+
<xsd:sequence>
|
512
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
513
|
+
<xsd:element name="data" type="tns:address_data" minOccurs="0" maxOccurs="1"/>
|
514
|
+
</xsd:sequence>
|
515
|
+
</xsd:complexType>
|
516
|
+
<xsd:complexType name="RemoteMarket.updateAddressResponseType">
|
517
|
+
<xsd:sequence>
|
518
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
519
|
+
</xsd:sequence>
|
520
|
+
</xsd:complexType>
|
521
|
+
<xsd:complexType name="RemoteMarket.getAddressRequestType">
|
522
|
+
<xsd:sequence>
|
523
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
524
|
+
<xsd:element name="address_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
525
|
+
</xsd:sequence>
|
526
|
+
</xsd:complexType>
|
527
|
+
<xsd:complexType name="RemoteMarket.getAddressResponseType">
|
528
|
+
<xsd:sequence>
|
529
|
+
<xsd:element name="return" type="tns:ret_address_data" minOccurs="0" maxOccurs="1"/>
|
530
|
+
</xsd:sequence>
|
531
|
+
</xsd:complexType>
|
532
|
+
<xsd:complexType name="RemoteMarket.deleteAddressRequestType">
|
533
|
+
<xsd:sequence>
|
534
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
535
|
+
<xsd:element name="address_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
536
|
+
</xsd:sequence>
|
537
|
+
</xsd:complexType>
|
538
|
+
<xsd:complexType name="RemoteMarket.deleteAddressResponseType">
|
539
|
+
<xsd:sequence>
|
540
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
541
|
+
</xsd:sequence>
|
542
|
+
</xsd:complexType>
|
543
|
+
<xsd:complexType name="RemoteMarket.getAddressesIdsRequestType">
|
544
|
+
<xsd:sequence>
|
545
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
546
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
547
|
+
</xsd:sequence>
|
548
|
+
</xsd:complexType>
|
549
|
+
<xsd:complexType name="RemoteMarket.getAddressesIdsResponseType">
|
550
|
+
<xsd:sequence>
|
551
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
552
|
+
</xsd:sequence>
|
553
|
+
</xsd:complexType>
|
554
|
+
<xsd:complexType name="RemoteMarket.getAddressIdByOkatoRequestType">
|
555
|
+
<xsd:sequence>
|
556
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
557
|
+
<xsd:element name="country" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
558
|
+
<xsd:element name="okato" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
559
|
+
<xsd:element name="address" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
560
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
561
|
+
</xsd:sequence>
|
562
|
+
</xsd:complexType>
|
563
|
+
<xsd:complexType name="RemoteMarket.getAddressIdByOkatoResponseType">
|
564
|
+
<xsd:sequence>
|
565
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
566
|
+
</xsd:sequence>
|
567
|
+
</xsd:complexType>
|
568
|
+
<xsd:complexType name="RemoteMarket.findFirmRequestType">
|
569
|
+
<xsd:sequence>
|
570
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
571
|
+
<xsd:element name="firm_request" type="tns:firm_request" minOccurs="0" maxOccurs="1"/>
|
572
|
+
</xsd:sequence>
|
573
|
+
</xsd:complexType>
|
574
|
+
<xsd:complexType name="RemoteMarket.findFirmResponseType">
|
575
|
+
<xsd:sequence>
|
576
|
+
<xsd:element name="return" type="tns:ret_find_firm" minOccurs="0" maxOccurs="1"/>
|
577
|
+
</xsd:sequence>
|
578
|
+
</xsd:complexType>
|
579
|
+
<xsd:complexType name="RemoteMarket.findFirmTendersRequestType">
|
580
|
+
<xsd:sequence>
|
581
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
582
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
583
|
+
<xsd:element name="find_options" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
584
|
+
</xsd:sequence>
|
585
|
+
</xsd:complexType>
|
586
|
+
<xsd:complexType name="RemoteMarket.findFirmTendersResponseType">
|
587
|
+
<xsd:sequence>
|
588
|
+
<xsd:element name="return" type="tns:ret_firm_tenders" minOccurs="0" maxOccurs="1"/>
|
589
|
+
</xsd:sequence>
|
590
|
+
</xsd:complexType>
|
591
|
+
<xsd:complexType name="RemoteMarket.getFirmClassifierRequestType">
|
592
|
+
<xsd:sequence>
|
593
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
594
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
595
|
+
<xsd:element name="type" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
596
|
+
</xsd:sequence>
|
597
|
+
</xsd:complexType>
|
598
|
+
<xsd:complexType name="RemoteMarket.getFirmClassifierResponseType">
|
599
|
+
<xsd:sequence>
|
600
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
601
|
+
</xsd:sequence>
|
602
|
+
</xsd:complexType>
|
603
|
+
<xsd:complexType name="RemoteMarket.getModifiedPurchasesRequestType">
|
604
|
+
<xsd:sequence>
|
605
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
606
|
+
<xsd:element name="modified_after" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
607
|
+
<xsd:element name="skip" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
608
|
+
<xsd:element name="count" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
609
|
+
</xsd:sequence>
|
610
|
+
</xsd:complexType>
|
611
|
+
<xsd:complexType name="RemoteMarket.getModifiedPurchasesResponseType">
|
612
|
+
<xsd:sequence>
|
613
|
+
<xsd:element name="return" type="tns:ret_modified_purchases" minOccurs="0" maxOccurs="1"/>
|
614
|
+
</xsd:sequence>
|
615
|
+
</xsd:complexType>
|
616
|
+
<xsd:complexType name="RemoteMarket.getModifiedPurchases223fzRequestType">
|
617
|
+
<xsd:sequence>
|
618
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
619
|
+
<xsd:element name="iframe" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
620
|
+
<xsd:element name="modified_after" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
621
|
+
<xsd:element name="skip" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
622
|
+
<xsd:element name="count" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
623
|
+
</xsd:sequence>
|
624
|
+
</xsd:complexType>
|
625
|
+
<xsd:complexType name="RemoteMarket.getModifiedPurchases223fzResponseType">
|
626
|
+
<xsd:sequence>
|
627
|
+
<xsd:element name="return" type="tns:ret_modified_purchases" minOccurs="0" maxOccurs="1"/>
|
628
|
+
</xsd:sequence>
|
629
|
+
</xsd:complexType>
|
630
|
+
<xsd:complexType name="lot">
|
631
|
+
<xsd:sequence>
|
632
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
633
|
+
<xsd:element name="lot_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
634
|
+
<xsd:element name="classifier_ids" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
635
|
+
<xsd:element name="okved_codes" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
636
|
+
<xsd:element name="quantity" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
637
|
+
<xsd:element name="units" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
638
|
+
<xsd:element name="price_begin" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
639
|
+
<xsd:element name="price_begin_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
640
|
+
<xsd:element name="addresses_ids" type="tns:array_of_ids" minOccurs="1" maxOccurs="1"/>
|
641
|
+
<xsd:element name="customer" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
642
|
+
<xsd:element name="ext_id" type="xsd:long" minOccurs="0" maxOccurs="1"/>
|
643
|
+
</xsd:sequence>
|
644
|
+
</xsd:complexType>
|
645
|
+
<xsd:complexType name="array_of_lot">
|
646
|
+
<xsd:sequence>
|
647
|
+
<xsd:element name="lot" type="tns:lot" minOccurs="0" maxOccurs="unbounded"/>
|
648
|
+
</xsd:sequence>
|
649
|
+
</xsd:complexType>
|
650
|
+
<xsd:complexType name="tender_data">
|
651
|
+
<xsd:sequence>
|
652
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
653
|
+
<xsd:element name="open" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
654
|
+
<xsd:element name="common_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
655
|
+
<xsd:element name="lots" type="tns:array_of_lot" minOccurs="1" maxOccurs="1"/>
|
656
|
+
<xsd:element name="date_job_begin" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
657
|
+
<xsd:element name="date_job_end" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
658
|
+
<xsd:element name="date_unsealing" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
659
|
+
<xsd:element name="date_unsealing_comment" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
660
|
+
<xsd:element name="committee" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
661
|
+
<xsd:element name="participants" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
662
|
+
<xsd:element name="date_qualification" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
663
|
+
<xsd:element name="qualification_documents" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
664
|
+
<xsd:element name="tender_documents" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
665
|
+
<xsd:element name="applications_deposit" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
666
|
+
<xsd:element name="competitive_offers" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
667
|
+
<xsd:element name="unsealing" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
668
|
+
<xsd:element name="price_only" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
669
|
+
<xsd:element name="winner" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
670
|
+
<xsd:element name="initial_price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
671
|
+
<xsd:element name="protocol_currency" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
672
|
+
<xsd:element name="additional_information" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
673
|
+
<xsd:element name="haggling" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
674
|
+
<xsd:element name="sel_dep_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
675
|
+
<xsd:element name="responsible_user_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
676
|
+
<xsd:element name="guarantee" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
677
|
+
<xsd:element name="guarantee_amount" type="xsd:double" minOccurs="0" maxOccurs="1"/>
|
678
|
+
<xsd:element name="guarantee_valid_from" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
679
|
+
<xsd:element name="guarantee_valid_to" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
680
|
+
<xsd:element name="price_main" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
681
|
+
<xsd:element name="alternative_offers" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
682
|
+
<xsd:element name="url" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
683
|
+
<xsd:element name="consideration_date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
684
|
+
<xsd:element name="consideration_place" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
685
|
+
<xsd:element name="responsible_user_phone" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
686
|
+
<xsd:element name="responsible_user_email" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
687
|
+
<xsd:element name="customer_firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
688
|
+
<xsd:element name="customer_fact_address" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
689
|
+
<xsd:element name="customer_post_address" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
690
|
+
<xsd:element name="summarizing_date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
691
|
+
<xsd:element name="summarizing_place" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
692
|
+
</xsd:sequence>
|
693
|
+
</xsd:complexType>
|
694
|
+
<xsd:complexType name="ret_tender_data">
|
695
|
+
<xsd:sequence>
|
696
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
697
|
+
<xsd:element name="tender_data" type="tns:tender_data" minOccurs="0" maxOccurs="1"/>
|
698
|
+
</xsd:sequence>
|
699
|
+
</xsd:complexType>
|
700
|
+
<xsd:complexType name="tender_participant">
|
701
|
+
<xsd:sequence>
|
702
|
+
<xsd:element name="firm_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
703
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
704
|
+
<xsd:element name="date_sent" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
705
|
+
<xsd:element name="date_qoffer" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
706
|
+
<xsd:element name="date_offer" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
707
|
+
<xsd:element name="qualified" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
708
|
+
<xsd:element name="date_qualified" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
709
|
+
<xsd:element name="offers_nums" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
710
|
+
</xsd:sequence>
|
711
|
+
</xsd:complexType>
|
712
|
+
<xsd:complexType name="tender_participants">
|
713
|
+
<xsd:sequence>
|
714
|
+
<xsd:element name="participant" type="tns:tender_participant" minOccurs="0" maxOccurs="unbounded"/>
|
715
|
+
</xsd:sequence>
|
716
|
+
</xsd:complexType>
|
717
|
+
<xsd:complexType name="ret_tender_participants">
|
718
|
+
<xsd:sequence>
|
719
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
720
|
+
<xsd:element name="value" type="tns:tender_participants" minOccurs="0" maxOccurs="1"/>
|
721
|
+
</xsd:sequence>
|
722
|
+
</xsd:complexType>
|
723
|
+
<xsd:complexType name="ret_tender_offer">
|
724
|
+
<xsd:sequence>
|
725
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
726
|
+
<xsd:element name="offer" type="tns:array_of_files" minOccurs="0" maxOccurs="1"/>
|
727
|
+
<xsd:element name="lots" type="xsd:integer" minOccurs="0" maxOccurs="unbounded"/>
|
728
|
+
<xsd:element name="haggling_file_name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
729
|
+
</xsd:sequence>
|
730
|
+
</xsd:complexType>
|
731
|
+
<xsd:complexType name="tender_lot_data">
|
732
|
+
<xsd:sequence>
|
733
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
734
|
+
<xsd:element name="lot_result" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
735
|
+
<xsd:element name="lot_price" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
736
|
+
<xsd:element name="lot_subject" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
737
|
+
<xsd:element name="lot_essential" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
738
|
+
<xsd:element name="lot_reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
739
|
+
</xsd:sequence>
|
740
|
+
</xsd:complexType>
|
741
|
+
<xsd:complexType name="array_of_tender_lot_result">
|
742
|
+
<xsd:sequence>
|
743
|
+
<xsd:element name="lot_result" type="tns:tender_lot_data" minOccurs="0" maxOccurs="unbounded"/>
|
744
|
+
</xsd:sequence>
|
745
|
+
</xsd:complexType>
|
746
|
+
<xsd:complexType name="tender_offer_result">
|
747
|
+
<xsd:sequence>
|
748
|
+
<xsd:element name="reject" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
749
|
+
<xsd:element name="lot" type="tns:array_of_tender_lot_result" minOccurs="0" maxOccurs="1"/>
|
750
|
+
</xsd:sequence>
|
751
|
+
</xsd:complexType>
|
752
|
+
<xsd:complexType name="tender_lot_rank">
|
753
|
+
<xsd:sequence>
|
754
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
755
|
+
<xsd:element name="result" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
756
|
+
<xsd:element name="ranking" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
757
|
+
<xsd:element name="reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
758
|
+
<xsd:element name="committee_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
759
|
+
</xsd:sequence>
|
760
|
+
</xsd:complexType>
|
761
|
+
<xsd:complexType name="array_of_tender_lot_rank">
|
762
|
+
<xsd:sequence>
|
763
|
+
<xsd:element name="lot_rank" type="tns:tender_lot_rank" minOccurs="0" maxOccurs="unbounded"/>
|
764
|
+
</xsd:sequence>
|
765
|
+
</xsd:complexType>
|
766
|
+
<xsd:complexType name="tender_rank">
|
767
|
+
<xsd:sequence>
|
768
|
+
<xsd:element name="lot" type="tns:array_of_tender_lot_rank" minOccurs="0" maxOccurs="1"/>
|
769
|
+
</xsd:sequence>
|
770
|
+
</xsd:complexType>
|
771
|
+
<xsd:complexType name="committee_vote">
|
772
|
+
<xsd:sequence>
|
773
|
+
<xsd:element name="user_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
774
|
+
<xsd:element name="vote" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
775
|
+
<xsd:element name="speak" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
|
776
|
+
<xsd:element name="opinion" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
777
|
+
</xsd:sequence>
|
778
|
+
</xsd:complexType>
|
779
|
+
<xsd:complexType name="protocol_data">
|
780
|
+
<xsd:sequence>
|
781
|
+
<xsd:element name="number" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
782
|
+
<xsd:element name="date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
783
|
+
<xsd:element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
784
|
+
<xsd:element name="file" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
785
|
+
<xsd:element name="result" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
786
|
+
<xsd:element name="reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
787
|
+
</xsd:sequence>
|
788
|
+
</xsd:complexType>
|
789
|
+
<xsd:complexType name="ret_protocol_data">
|
790
|
+
<xsd:sequence>
|
791
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
792
|
+
<xsd:element name="protocol_data" type="tns:protocol_data" minOccurs="0" maxOccurs="1"/>
|
793
|
+
</xsd:sequence>
|
794
|
+
</xsd:complexType>
|
795
|
+
<xsd:complexType name="tender_lot_result">
|
796
|
+
<xsd:sequence>
|
797
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
798
|
+
<xsd:element name="alternate_num" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
799
|
+
<xsd:element name="result" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
800
|
+
<xsd:element name="reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
801
|
+
<xsd:element name="rank" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
802
|
+
<xsd:element name="price" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
803
|
+
<xsd:element name="price_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
804
|
+
<xsd:element name="subject" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
805
|
+
<xsd:element name="essential" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
806
|
+
<xsd:element name="haggling_price" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
807
|
+
<xsd:element name="haggling_price_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
808
|
+
<xsd:element name="final_price" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
809
|
+
<xsd:element name="final_price_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
810
|
+
</xsd:sequence>
|
811
|
+
</xsd:complexType>
|
812
|
+
<xsd:complexType name="tender_lot_results">
|
813
|
+
<xsd:sequence>
|
814
|
+
<xsd:element name="tender_lot_result" type="tns:tender_lot_result" minOccurs="0" maxOccurs="unbounded"/>
|
815
|
+
</xsd:sequence>
|
816
|
+
</xsd:complexType>
|
817
|
+
<xsd:complexType name="ret_tender_lot_results">
|
818
|
+
<xsd:sequence>
|
819
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
820
|
+
<xsd:element name="results" type="tns:tender_lot_results" minOccurs="0" maxOccurs="1"/>
|
821
|
+
</xsd:sequence>
|
822
|
+
</xsd:complexType>
|
823
|
+
<xsd:complexType name="haggling_status">
|
824
|
+
<xsd:sequence>
|
825
|
+
<xsd:element name="date_haggling" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
826
|
+
<xsd:element name="lots_ids" type="tns:array_of_ids" minOccurs="1" maxOccurs="1"/>
|
827
|
+
<xsd:element name="haggling_date" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
828
|
+
</xsd:sequence>
|
829
|
+
</xsd:complexType>
|
830
|
+
<xsd:complexType name="ret_haggling_status">
|
831
|
+
<xsd:sequence>
|
832
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
833
|
+
<xsd:element name="haggling_status" type="tns:haggling_status" minOccurs="0" maxOccurs="1"/>
|
834
|
+
</xsd:sequence>
|
835
|
+
</xsd:complexType>
|
836
|
+
<xsd:complexType name="ret_haggling_file">
|
837
|
+
<xsd:sequence>
|
838
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
839
|
+
<xsd:element name="haggling_file" type="tns:haggling_file" minOccurs="0" maxOccurs="unbounded"/>
|
840
|
+
</xsd:sequence>
|
841
|
+
</xsd:complexType>
|
842
|
+
<xsd:complexType name="haggling_file">
|
843
|
+
<xsd:sequence>
|
844
|
+
<xsd:element name="title" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
845
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
846
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
847
|
+
</xsd:sequence>
|
848
|
+
</xsd:complexType>
|
849
|
+
<xsd:complexType name="urls">
|
850
|
+
<xsd:sequence>
|
851
|
+
<xsd:element name="url" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
|
852
|
+
</xsd:sequence>
|
853
|
+
</xsd:complexType>
|
854
|
+
<xsd:complexType name="RemoteTender.createRequestType">
|
855
|
+
<xsd:sequence>
|
856
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
857
|
+
<xsd:element name="tender_data" type="tns:tender_data" minOccurs="0" maxOccurs="1"/>
|
858
|
+
</xsd:sequence>
|
859
|
+
</xsd:complexType>
|
860
|
+
<xsd:complexType name="RemoteTender.createResponseType">
|
861
|
+
<xsd:sequence>
|
862
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
863
|
+
</xsd:sequence>
|
864
|
+
</xsd:complexType>
|
865
|
+
<xsd:complexType name="RemoteTender.updateRequestType">
|
866
|
+
<xsd:sequence>
|
867
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
868
|
+
<xsd:element name="tender_data" type="tns:tender_data" minOccurs="0" maxOccurs="1"/>
|
869
|
+
</xsd:sequence>
|
870
|
+
</xsd:complexType>
|
871
|
+
<xsd:complexType name="RemoteTender.updateResponseType">
|
872
|
+
<xsd:sequence>
|
873
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
874
|
+
</xsd:sequence>
|
875
|
+
</xsd:complexType>
|
876
|
+
<xsd:complexType name="RemoteTender.getDataRequestType">
|
877
|
+
<xsd:sequence>
|
878
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
879
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
880
|
+
</xsd:sequence>
|
881
|
+
</xsd:complexType>
|
882
|
+
<xsd:complexType name="RemoteTender.getDataResponseType">
|
883
|
+
<xsd:sequence>
|
884
|
+
<xsd:element name="return" type="tns:ret_tender_data" minOccurs="0" maxOccurs="1"/>
|
885
|
+
</xsd:sequence>
|
886
|
+
</xsd:complexType>
|
887
|
+
<xsd:complexType name="RemoteTender.startRequestType">
|
888
|
+
<xsd:sequence>
|
889
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
890
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
891
|
+
</xsd:sequence>
|
892
|
+
</xsd:complexType>
|
893
|
+
<xsd:complexType name="RemoteTender.startResponseType">
|
894
|
+
<xsd:sequence>
|
895
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
896
|
+
</xsd:sequence>
|
897
|
+
</xsd:complexType>
|
898
|
+
<xsd:complexType name="RemoteTender.uploadDocRequestType">
|
899
|
+
<xsd:sequence>
|
900
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
901
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
902
|
+
<xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
903
|
+
<xsd:element name="url" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
904
|
+
</xsd:sequence>
|
905
|
+
</xsd:complexType>
|
906
|
+
<xsd:complexType name="RemoteTender.uploadDocResponseType">
|
907
|
+
<xsd:sequence>
|
908
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
909
|
+
</xsd:sequence>
|
910
|
+
</xsd:complexType>
|
911
|
+
<xsd:complexType name="RemoteTender.uploadDocsRequestType">
|
912
|
+
<xsd:sequence>
|
913
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
914
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
915
|
+
<xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
916
|
+
<xsd:element name="urls" type="tns:urls" minOccurs="0" maxOccurs="1"/>
|
917
|
+
</xsd:sequence>
|
918
|
+
</xsd:complexType>
|
919
|
+
<xsd:complexType name="RemoteTender.uploadDocsResponseType">
|
920
|
+
<xsd:sequence>
|
921
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
922
|
+
</xsd:sequence>
|
923
|
+
</xsd:complexType>
|
924
|
+
<xsd:complexType name="RemoteTender.getParticipantsRequestType">
|
925
|
+
<xsd:sequence>
|
926
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
927
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
928
|
+
</xsd:sequence>
|
929
|
+
</xsd:complexType>
|
930
|
+
<xsd:complexType name="RemoteTender.getParticipantsResponseType">
|
931
|
+
<xsd:sequence>
|
932
|
+
<xsd:element name="return" type="tns:ret_tender_participants" minOccurs="0" maxOccurs="1"/>
|
933
|
+
</xsd:sequence>
|
934
|
+
</xsd:complexType>
|
935
|
+
<xsd:complexType name="RemoteTender.getOfferRequestType">
|
936
|
+
<xsd:sequence>
|
937
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
938
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
939
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
940
|
+
<xsd:element name="offer_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
941
|
+
</xsd:sequence>
|
942
|
+
</xsd:complexType>
|
943
|
+
<xsd:complexType name="RemoteTender.getOfferResponseType">
|
944
|
+
<xsd:sequence>
|
945
|
+
<xsd:element name="return" type="tns:ret_tender_offer" minOccurs="0" maxOccurs="1"/>
|
946
|
+
</xsd:sequence>
|
947
|
+
</xsd:complexType>
|
948
|
+
<xsd:complexType name="RemoteTender.getLotResultRequestType">
|
949
|
+
<xsd:sequence>
|
950
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
951
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
952
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
953
|
+
</xsd:sequence>
|
954
|
+
</xsd:complexType>
|
955
|
+
<xsd:complexType name="RemoteTender.getLotResultResponseType">
|
956
|
+
<xsd:sequence>
|
957
|
+
<xsd:element name="return" type="tns:ret_tender_lot_results" minOccurs="0" maxOccurs="1"/>
|
958
|
+
</xsd:sequence>
|
959
|
+
</xsd:complexType>
|
960
|
+
<xsd:complexType name="RemoteTender.setUnsealingProtocolRequestType">
|
961
|
+
<xsd:sequence>
|
962
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
963
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
964
|
+
<xsd:element name="number" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
965
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
966
|
+
<xsd:element name="place" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
967
|
+
<xsd:element name="comments" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
968
|
+
</xsd:sequence>
|
969
|
+
</xsd:complexType>
|
970
|
+
<xsd:complexType name="RemoteTender.setUnsealingProtocolResponseType">
|
971
|
+
<xsd:sequence>
|
972
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
973
|
+
</xsd:sequence>
|
974
|
+
</xsd:complexType>
|
975
|
+
<xsd:complexType name="RemoteTender.setProtocolRequestType">
|
976
|
+
<xsd:sequence>
|
977
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
978
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
979
|
+
<xsd:element name="protocol" type="tns:protocol_data" minOccurs="0" maxOccurs="1"/>
|
980
|
+
</xsd:sequence>
|
981
|
+
</xsd:complexType>
|
982
|
+
<xsd:complexType name="RemoteTender.setProtocolResponseType">
|
983
|
+
<xsd:sequence>
|
984
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
985
|
+
</xsd:sequence>
|
986
|
+
</xsd:complexType>
|
987
|
+
<xsd:complexType name="RemoteTender.getProtocolRequestType">
|
988
|
+
<xsd:sequence>
|
989
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
990
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
991
|
+
</xsd:sequence>
|
992
|
+
</xsd:complexType>
|
993
|
+
<xsd:complexType name="RemoteTender.getProtocolResponseType">
|
994
|
+
<xsd:sequence>
|
995
|
+
<xsd:element name="return" type="tns:ret_protocol_data" minOccurs="0" maxOccurs="1"/>
|
996
|
+
</xsd:sequence>
|
997
|
+
</xsd:complexType>
|
998
|
+
<xsd:complexType name="RemoteTender.sendProtocolRequestType">
|
999
|
+
<xsd:sequence>
|
1000
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1001
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1002
|
+
</xsd:sequence>
|
1003
|
+
</xsd:complexType>
|
1004
|
+
<xsd:complexType name="RemoteTender.sendProtocolResponseType">
|
1005
|
+
<xsd:sequence>
|
1006
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1007
|
+
</xsd:sequence>
|
1008
|
+
</xsd:complexType>
|
1009
|
+
<xsd:complexType name="RemoteTender.deleteRequestType">
|
1010
|
+
<xsd:sequence>
|
1011
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1012
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1013
|
+
</xsd:sequence>
|
1014
|
+
</xsd:complexType>
|
1015
|
+
<xsd:complexType name="RemoteTender.deleteResponseType">
|
1016
|
+
<xsd:sequence>
|
1017
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1018
|
+
</xsd:sequence>
|
1019
|
+
</xsd:complexType>
|
1020
|
+
<xsd:complexType name="RemoteTender.getDocRequestType">
|
1021
|
+
<xsd:sequence>
|
1022
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1023
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1024
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1025
|
+
</xsd:sequence>
|
1026
|
+
</xsd:complexType>
|
1027
|
+
<xsd:complexType name="RemoteTender.getDocResponseType">
|
1028
|
+
<xsd:sequence>
|
1029
|
+
<xsd:element name="return" type="tns:ret_doc" minOccurs="0" maxOccurs="1"/>
|
1030
|
+
</xsd:sequence>
|
1031
|
+
</xsd:complexType>
|
1032
|
+
<xsd:complexType name="RemoteTender.getDocAsFileRequestType">
|
1033
|
+
<xsd:sequence>
|
1034
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1035
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1036
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1037
|
+
</xsd:sequence>
|
1038
|
+
</xsd:complexType>
|
1039
|
+
<xsd:complexType name="RemoteTender.getDocAsFileResponseType">
|
1040
|
+
<xsd:sequence>
|
1041
|
+
<xsd:element name="return" type="tns:ret_file" minOccurs="0" maxOccurs="1"/>
|
1042
|
+
</xsd:sequence>
|
1043
|
+
</xsd:complexType>
|
1044
|
+
<xsd:complexType name="RemoteTender.signRequestType">
|
1045
|
+
<xsd:sequence>
|
1046
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1047
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1048
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1049
|
+
<xsd:element name="signed_doc" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1050
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1051
|
+
</xsd:sequence>
|
1052
|
+
</xsd:complexType>
|
1053
|
+
<xsd:complexType name="RemoteTender.signResponseType">
|
1054
|
+
<xsd:sequence>
|
1055
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1056
|
+
</xsd:sequence>
|
1057
|
+
</xsd:complexType>
|
1058
|
+
<xsd:complexType name="RemoteTender.getIdsRequestType">
|
1059
|
+
<xsd:sequence>
|
1060
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1061
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1062
|
+
<xsd:element name="open" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1063
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1064
|
+
</xsd:sequence>
|
1065
|
+
</xsd:complexType>
|
1066
|
+
<xsd:complexType name="RemoteTender.getIdsResponseType">
|
1067
|
+
<xsd:sequence>
|
1068
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
1069
|
+
</xsd:sequence>
|
1070
|
+
</xsd:complexType>
|
1071
|
+
<xsd:complexType name="RemoteTender.getHagglingStatusRequestType">
|
1072
|
+
<xsd:sequence>
|
1073
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1074
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1075
|
+
</xsd:sequence>
|
1076
|
+
</xsd:complexType>
|
1077
|
+
<xsd:complexType name="RemoteTender.getHagglingStatusResponseType">
|
1078
|
+
<xsd:sequence>
|
1079
|
+
<xsd:element name="return" type="tns:ret_haggling_status" minOccurs="0" maxOccurs="1"/>
|
1080
|
+
</xsd:sequence>
|
1081
|
+
</xsd:complexType>
|
1082
|
+
<xsd:complexType name="RemoteTender.getHagglingFileRequestType">
|
1083
|
+
<xsd:sequence>
|
1084
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1085
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1086
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1087
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1088
|
+
<xsd:element name="offer_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1089
|
+
</xsd:sequence>
|
1090
|
+
</xsd:complexType>
|
1091
|
+
<xsd:complexType name="RemoteTender.getHagglingFileResponseType">
|
1092
|
+
<xsd:sequence>
|
1093
|
+
<xsd:element name="return" type="tns:ret_haggling_file" minOccurs="0" maxOccurs="1"/>
|
1094
|
+
</xsd:sequence>
|
1095
|
+
</xsd:complexType>
|
1096
|
+
<xsd:complexType name="RemoteTender.createExplanationRequestType">
|
1097
|
+
<xsd:sequence>
|
1098
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1099
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1100
|
+
<xsd:element name="explanation" type="tns:explanation" minOccurs="0" maxOccurs="1"/>
|
1101
|
+
</xsd:sequence>
|
1102
|
+
</xsd:complexType>
|
1103
|
+
<xsd:complexType name="RemoteTender.createExplanationResponseType">
|
1104
|
+
<xsd:sequence>
|
1105
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1106
|
+
</xsd:sequence>
|
1107
|
+
</xsd:complexType>
|
1108
|
+
<xsd:complexType name="RemoteTender.getListExplanationRequestType">
|
1109
|
+
<xsd:sequence>
|
1110
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1111
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1112
|
+
</xsd:sequence>
|
1113
|
+
</xsd:complexType>
|
1114
|
+
<xsd:complexType name="RemoteTender.getListExplanationResponseType">
|
1115
|
+
<xsd:sequence>
|
1116
|
+
<xsd:element name="return" type="tns:ret_array_explanations" minOccurs="0" maxOccurs="1"/>
|
1117
|
+
</xsd:sequence>
|
1118
|
+
</xsd:complexType>
|
1119
|
+
<xsd:complexType name="RemoteTender.answerExplanationRequestType">
|
1120
|
+
<xsd:sequence>
|
1121
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1122
|
+
<xsd:element name="explanation" type="tns:explanation" minOccurs="0" maxOccurs="1"/>
|
1123
|
+
</xsd:sequence>
|
1124
|
+
</xsd:complexType>
|
1125
|
+
<xsd:complexType name="RemoteTender.answerExplanationResponseType">
|
1126
|
+
<xsd:sequence>
|
1127
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1128
|
+
</xsd:sequence>
|
1129
|
+
</xsd:complexType>
|
1130
|
+
<xsd:complexType name="RemoteTender.getLotsStatusRequestType">
|
1131
|
+
<xsd:sequence>
|
1132
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1133
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1134
|
+
</xsd:sequence>
|
1135
|
+
</xsd:complexType>
|
1136
|
+
<xsd:complexType name="RemoteTender.getLotsStatusResponseType">
|
1137
|
+
<xsd:sequence>
|
1138
|
+
<xsd:element name="return" type="tns:ret_associative_array" minOccurs="0" maxOccurs="1"/>
|
1139
|
+
</xsd:sequence>
|
1140
|
+
</xsd:complexType>
|
1141
|
+
<xsd:complexType name="RemoteTender.getWorksheetsRequestType">
|
1142
|
+
<xsd:sequence>
|
1143
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1144
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1145
|
+
</xsd:sequence>
|
1146
|
+
</xsd:complexType>
|
1147
|
+
<xsd:complexType name="RemoteTender.getWorksheetsResponseType">
|
1148
|
+
<xsd:sequence>
|
1149
|
+
<xsd:element name="return" type="tns:ret_worksheets" minOccurs="0" maxOccurs="1"/>
|
1150
|
+
</xsd:sequence>
|
1151
|
+
</xsd:complexType>
|
1152
|
+
<xsd:complexType name="RemoteTender.getCancelDataRequestType">
|
1153
|
+
<xsd:sequence>
|
1154
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1155
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1156
|
+
</xsd:sequence>
|
1157
|
+
</xsd:complexType>
|
1158
|
+
<xsd:complexType name="RemoteTender.getCancelDataResponseType">
|
1159
|
+
<xsd:sequence>
|
1160
|
+
<xsd:element name="return" type="tns:ret_cancel_info" minOccurs="0" maxOccurs="1"/>
|
1161
|
+
</xsd:sequence>
|
1162
|
+
</xsd:complexType>
|
1163
|
+
<xsd:complexType name="RemoteTender.getPublicationDateRequestType">
|
1164
|
+
<xsd:sequence>
|
1165
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1166
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1167
|
+
</xsd:sequence>
|
1168
|
+
</xsd:complexType>
|
1169
|
+
<xsd:complexType name="RemoteTender.getPublicationDateResponseType">
|
1170
|
+
<xsd:sequence>
|
1171
|
+
<xsd:element name="return" type="tns:ret_datetime" minOccurs="0" maxOccurs="1"/>
|
1172
|
+
</xsd:sequence>
|
1173
|
+
</xsd:complexType>
|
1174
|
+
<xsd:complexType name="RemoteTender.getRegisteredFirmsRequestType">
|
1175
|
+
<xsd:sequence>
|
1176
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1177
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1178
|
+
</xsd:sequence>
|
1179
|
+
</xsd:complexType>
|
1180
|
+
<xsd:complexType name="RemoteTender.getRegisteredFirmsResponseType">
|
1181
|
+
<xsd:sequence>
|
1182
|
+
<xsd:element name="return" type="tns:ret_firm_info" minOccurs="0" maxOccurs="1"/>
|
1183
|
+
</xsd:sequence>
|
1184
|
+
</xsd:complexType>
|
1185
|
+
<xsd:complexType name="custom_field_select_option">
|
1186
|
+
<xsd:sequence>
|
1187
|
+
<xsd:element name="option" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1188
|
+
<xsd:element name="allow_custom_text" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1189
|
+
</xsd:sequence>
|
1190
|
+
</xsd:complexType>
|
1191
|
+
<xsd:complexType name="custom_field">
|
1192
|
+
<xsd:sequence>
|
1193
|
+
<xsd:element name="key" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1194
|
+
<xsd:element name="short_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1195
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1196
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1197
|
+
<xsd:element name="prop_type" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1198
|
+
<xsd:element name="units" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1199
|
+
<xsd:element name="non_obligatory" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1200
|
+
<xsd:element name="private" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1201
|
+
<xsd:element name="unified" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1202
|
+
<xsd:element name="select_options" type="tns:custom_field_select_option" minOccurs="0" maxOccurs="unbounded"/>
|
1203
|
+
</xsd:sequence>
|
1204
|
+
</xsd:complexType>
|
1205
|
+
<xsd:complexType name="custom_fields">
|
1206
|
+
<xsd:sequence>
|
1207
|
+
<xsd:element name="field" type="tns:custom_field" minOccurs="0" maxOccurs="unbounded"/>
|
1208
|
+
</xsd:sequence>
|
1209
|
+
</xsd:complexType>
|
1210
|
+
<xsd:complexType name="auction_position">
|
1211
|
+
<xsd:sequence>
|
1212
|
+
<xsd:element name="number" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1213
|
+
<xsd:element name="group_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1214
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1215
|
+
<xsd:element name="quantity" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
1216
|
+
<xsd:element name="units" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1217
|
+
<xsd:element name="price_unit" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1218
|
+
<xsd:element name="price_unit_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1219
|
+
<xsd:element name="price_lot" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1220
|
+
<xsd:element name="price_lot_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1221
|
+
<xsd:element name="custom_values" type="tns:associative_array" minOccurs="0" maxOccurs="1"/>
|
1222
|
+
</xsd:sequence>
|
1223
|
+
</xsd:complexType>
|
1224
|
+
<xsd:complexType name="auction_positions">
|
1225
|
+
<xsd:sequence>
|
1226
|
+
<xsd:element name="position" type="tns:auction_position" minOccurs="0" maxOccurs="unbounded"/>
|
1227
|
+
</xsd:sequence>
|
1228
|
+
</xsd:complexType>
|
1229
|
+
<xsd:complexType name="auction_positions_group">
|
1230
|
+
<xsd:sequence>
|
1231
|
+
<xsd:element name="group_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1232
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1233
|
+
</xsd:sequence>
|
1234
|
+
</xsd:complexType>
|
1235
|
+
<xsd:complexType name="auction_positions_groups">
|
1236
|
+
<xsd:sequence>
|
1237
|
+
<xsd:element name="position_group" type="tns:auction_positions_group" minOccurs="0" maxOccurs="unbounded"/>
|
1238
|
+
</xsd:sequence>
|
1239
|
+
</xsd:complexType>
|
1240
|
+
<xsd:complexType name="auction_data">
|
1241
|
+
<xsd:sequence>
|
1242
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1243
|
+
<xsd:element name="type" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1244
|
+
<xsd:element name="board_extended_type" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1245
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1246
|
+
<xsd:element name="number_in_group" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1247
|
+
<xsd:element name="department_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1248
|
+
<xsd:element name="classifier_ids" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1249
|
+
<xsd:element name="okved_code" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1250
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1251
|
+
<xsd:element name="comments" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1252
|
+
<xsd:element name="service" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1253
|
+
<xsd:element name="product" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1254
|
+
<xsd:element name="link_url" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1255
|
+
<xsd:element name="quantity" type="xsd:double" minOccurs="1" maxOccurs="1"/>
|
1256
|
+
<xsd:element name="units" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1257
|
+
<xsd:element name="price_unit" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1258
|
+
<xsd:element name="price_unit_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1259
|
+
<xsd:element name="price_lot" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1260
|
+
<xsd:element name="price_lot_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1261
|
+
<xsd:element name="price_main" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1262
|
+
<xsd:element name="currency" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1263
|
+
<xsd:element name="bet_step" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1264
|
+
<xsd:element name="conditions" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1265
|
+
<xsd:element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1266
|
+
<xsd:element name="files" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
1267
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1268
|
+
<xsd:element name="info_files" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1269
|
+
<xsd:element name="date_end" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1270
|
+
<xsd:element name="date_end_unsealing" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1271
|
+
<xsd:element name="date_start" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1272
|
+
<xsd:element name="date_unsealing" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1273
|
+
<xsd:element name="responsible_user_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1274
|
+
<xsd:element name="addresses_ids" type="tns:array_of_ids" minOccurs="1" maxOccurs="1"/>
|
1275
|
+
<xsd:element name="alternative_offers" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1276
|
+
<xsd:element name="url" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1277
|
+
<xsd:element name="customer_firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1278
|
+
<xsd:element name="organizer_phone" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1279
|
+
<xsd:element name="organizer_email" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1280
|
+
<xsd:element name="organizer_fact_address" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1281
|
+
<xsd:element name="organizer_post_address" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1282
|
+
<xsd:element name="require_offer_doc" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1283
|
+
<xsd:element name="multiposition" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1284
|
+
<xsd:element name="allow_positions_groups" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1285
|
+
<xsd:element name="allow_positions_no_price" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1286
|
+
<xsd:element name="consideration_date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1287
|
+
<xsd:element name="consideration_place" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1288
|
+
<xsd:element name="results_date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1289
|
+
<xsd:element name="zgr_export" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1290
|
+
<xsd:element name="multi_stages" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1291
|
+
<xsd:element name="is_private" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1292
|
+
<xsd:element name="allow_positions_analog" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1293
|
+
<xsd:element name="small_purchase" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1294
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1295
|
+
<xsd:element name="tender_lot_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1296
|
+
</xsd:sequence>
|
1297
|
+
</xsd:complexType>
|
1298
|
+
<xsd:complexType name="ret_auction_data">
|
1299
|
+
<xsd:sequence>
|
1300
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1301
|
+
<xsd:element name="data" type="tns:auction_data" minOccurs="0" maxOccurs="1"/>
|
1302
|
+
</xsd:sequence>
|
1303
|
+
</xsd:complexType>
|
1304
|
+
<xsd:complexType name="auction_participant">
|
1305
|
+
<xsd:sequence>
|
1306
|
+
<xsd:element name="firm_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1307
|
+
<xsd:element name="offers_nums" type="tns:array_of_ids" minOccurs="0" maxOccurs="1"/>
|
1308
|
+
</xsd:sequence>
|
1309
|
+
</xsd:complexType>
|
1310
|
+
<xsd:complexType name="array_of_auction_participant">
|
1311
|
+
<xsd:sequence>
|
1312
|
+
<xsd:element name="participant" type="tns:auction_participant" minOccurs="0" maxOccurs="unbounded"/>
|
1313
|
+
</xsd:sequence>
|
1314
|
+
</xsd:complexType>
|
1315
|
+
<xsd:complexType name="ret_auction_participants">
|
1316
|
+
<xsd:sequence>
|
1317
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1318
|
+
<xsd:element name="participants" type="tns:array_of_auction_participant" minOccurs="1" maxOccurs="1"/>
|
1319
|
+
</xsd:sequence>
|
1320
|
+
</xsd:complexType>
|
1321
|
+
<xsd:complexType name="auction_offer">
|
1322
|
+
<xsd:sequence>
|
1323
|
+
<xsd:element name="final_price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1324
|
+
<xsd:element name="final_price_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1325
|
+
<xsd:element name="final_bet_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1326
|
+
<xsd:element name="winner" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1327
|
+
<xsd:element name="bets" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1328
|
+
<xsd:element name="files" type="tns:array_of_files" minOccurs="1" maxOccurs="1"/>
|
1329
|
+
<xsd:element name="offer_fields" type="tns:auction_offer_fields" minOccurs="0" maxOccurs="1"/>
|
1330
|
+
<xsd:element name="positions_offers" type="tns:auction_positions_offers" minOccurs="0" maxOccurs="1"/>
|
1331
|
+
</xsd:sequence>
|
1332
|
+
</xsd:complexType>
|
1333
|
+
<xsd:complexType name="auction_positions_offers">
|
1334
|
+
<xsd:sequence>
|
1335
|
+
<xsd:element name="position_offer" type="tns:auction_position_offer" minOccurs="1" maxOccurs="unbounded"/>
|
1336
|
+
</xsd:sequence>
|
1337
|
+
</xsd:complexType>
|
1338
|
+
<xsd:complexType name="auction_position_offer">
|
1339
|
+
<xsd:sequence>
|
1340
|
+
<xsd:element name="position_number" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1341
|
+
<xsd:element name="price_lot" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1342
|
+
<xsd:element name="price_lot_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1343
|
+
<xsd:element name="winner" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1344
|
+
<xsd:element name="position_fields" type="tns:auction_position_fields" minOccurs="0" maxOccurs="1"/>
|
1345
|
+
</xsd:sequence>
|
1346
|
+
</xsd:complexType>
|
1347
|
+
<xsd:complexType name="ret_auction_offer">
|
1348
|
+
<xsd:sequence>
|
1349
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1350
|
+
<xsd:element name="auction_offer" type="tns:auction_offer" minOccurs="1" maxOccurs="1"/>
|
1351
|
+
</xsd:sequence>
|
1352
|
+
</xsd:complexType>
|
1353
|
+
<xsd:complexType name="ret_auction_offers_history">
|
1354
|
+
<xsd:sequence>
|
1355
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1356
|
+
<xsd:element name="auction_offers" type="tns:auction_offers_for_history" minOccurs="1" maxOccurs="1"/>
|
1357
|
+
</xsd:sequence>
|
1358
|
+
</xsd:complexType>
|
1359
|
+
<xsd:complexType name="auction_offers_for_history">
|
1360
|
+
<xsd:sequence>
|
1361
|
+
<xsd:element name="auction_offer" type="tns:auction_offer_for_history" minOccurs="1" maxOccurs="unbounded"/>
|
1362
|
+
</xsd:sequence>
|
1363
|
+
</xsd:complexType>
|
1364
|
+
<xsd:complexType name="auction_offer_for_history">
|
1365
|
+
<xsd:sequence>
|
1366
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1367
|
+
<xsd:element name="price_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1368
|
+
<xsd:element name="offer_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1369
|
+
<xsd:element name="winner" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1370
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1371
|
+
<xsd:element name="offer_fields" type="tns:auction_offer_fields" minOccurs="0" maxOccurs="1"/>
|
1372
|
+
<xsd:element name="positions_offers" type="tns:auction_positions_offers" minOccurs="0" maxOccurs="1"/>
|
1373
|
+
</xsd:sequence>
|
1374
|
+
</xsd:complexType>
|
1375
|
+
<xsd:complexType name="auction_position_fields">
|
1376
|
+
<xsd:sequence>
|
1377
|
+
<xsd:element name="position_field" type="tns:auction_position_field" minOccurs="1" maxOccurs="unbounded"/>
|
1378
|
+
</xsd:sequence>
|
1379
|
+
</xsd:complexType>
|
1380
|
+
<xsd:complexType name="auction_position_field">
|
1381
|
+
<xsd:sequence>
|
1382
|
+
<xsd:element name="short_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1383
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1384
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1385
|
+
<xsd:element name="units" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1386
|
+
<xsd:element name="private" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1387
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1388
|
+
</xsd:sequence>
|
1389
|
+
</xsd:complexType>
|
1390
|
+
<xsd:complexType name="auction_offer_fields">
|
1391
|
+
<xsd:sequence>
|
1392
|
+
<xsd:element name="offer_field" type="tns:auction_offer_field" minOccurs="1" maxOccurs="unbounded"/>
|
1393
|
+
</xsd:sequence>
|
1394
|
+
</xsd:complexType>
|
1395
|
+
<xsd:complexType name="auction_offer_field">
|
1396
|
+
<xsd:sequence>
|
1397
|
+
<xsd:element name="short_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1398
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1399
|
+
<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1400
|
+
<xsd:element name="units" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1401
|
+
<xsd:element name="private" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1402
|
+
<xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1403
|
+
</xsd:sequence>
|
1404
|
+
</xsd:complexType>
|
1405
|
+
<xsd:complexType name="auction_bet">
|
1406
|
+
<xsd:sequence>
|
1407
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1408
|
+
<xsd:element name="price_notax" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1409
|
+
<xsd:element name="bet_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1410
|
+
<xsd:element name="subject" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1411
|
+
<xsd:element name="user_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1412
|
+
<xsd:element name="auto_bet" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1413
|
+
<xsd:element name="final_price" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1414
|
+
<xsd:element name="final_price_notax" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1415
|
+
<xsd:element name="signed_doc_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1416
|
+
</xsd:sequence>
|
1417
|
+
</xsd:complexType>
|
1418
|
+
<xsd:complexType name="ret_auction_bet">
|
1419
|
+
<xsd:sequence>
|
1420
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1421
|
+
<xsd:element name="auction_bet" type="tns:auction_bet" minOccurs="1" maxOccurs="1"/>
|
1422
|
+
</xsd:sequence>
|
1423
|
+
</xsd:complexType>
|
1424
|
+
<xsd:complexType name="auction_protocol">
|
1425
|
+
<xsd:sequence>
|
1426
|
+
<xsd:element name="number" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1427
|
+
<xsd:element name="date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1428
|
+
<xsd:element name="place" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1429
|
+
<xsd:element name="file" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1430
|
+
<xsd:element name="result" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1431
|
+
<xsd:element name="reason" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1432
|
+
</xsd:sequence>
|
1433
|
+
</xsd:complexType>
|
1434
|
+
<xsd:complexType name="ret_auction_protocol">
|
1435
|
+
<xsd:sequence>
|
1436
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1437
|
+
<xsd:element name="auction_protocol" type="tns:auction_protocol" minOccurs="0" maxOccurs="1"/>
|
1438
|
+
</xsd:sequence>
|
1439
|
+
</xsd:complexType>
|
1440
|
+
<xsd:complexType name="auction_info">
|
1441
|
+
<xsd:sequence>
|
1442
|
+
<xsd:element name="auction_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1443
|
+
<xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1444
|
+
<xsd:element name="organizer_firm" type="tns:firm_data" minOccurs="0" maxOccurs="1"/>
|
1445
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1446
|
+
<xsd:element name="date_begin" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1447
|
+
<xsd:element name="date_end" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1448
|
+
<xsd:element name="opened" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1449
|
+
<xsd:element name="winners_firms" type="tns:array_of_firm_data" minOccurs="0" maxOccurs="1"/>
|
1450
|
+
<xsd:element name="bets_count" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1451
|
+
<xsd:element name="participants_count" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1452
|
+
<xsd:element name="last_bet_date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1453
|
+
</xsd:sequence>
|
1454
|
+
</xsd:complexType>
|
1455
|
+
<xsd:complexType name="array_of_auction_info">
|
1456
|
+
<xsd:sequence>
|
1457
|
+
<xsd:element name="auction_info" type="tns:auction_info" minOccurs="0" maxOccurs="unbounded"/>
|
1458
|
+
</xsd:sequence>
|
1459
|
+
</xsd:complexType>
|
1460
|
+
<xsd:complexType name="ret_participant_auctions">
|
1461
|
+
<xsd:sequence>
|
1462
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1463
|
+
<xsd:element name="firm_data" type="tns:firm_data" minOccurs="0" maxOccurs="1"/>
|
1464
|
+
<xsd:element name="auctions" type="tns:array_of_auction_info" minOccurs="0" maxOccurs="1"/>
|
1465
|
+
</xsd:sequence>
|
1466
|
+
</xsd:complexType>
|
1467
|
+
<xsd:complexType name="positions_won_by_alt_number">
|
1468
|
+
<xsd:sequence>
|
1469
|
+
<xsd:element name="position_numbers" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1470
|
+
<xsd:element name="alternate_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1471
|
+
</xsd:sequence>
|
1472
|
+
</xsd:complexType>
|
1473
|
+
<xsd:complexType name="winner_data">
|
1474
|
+
<xsd:sequence>
|
1475
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1476
|
+
<xsd:element name="positions_bets" type="tns:positions_won_by_alt_number" minOccurs="0" maxOccurs="3"/>
|
1477
|
+
<xsd:element name="alternate_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1478
|
+
</xsd:sequence>
|
1479
|
+
</xsd:complexType>
|
1480
|
+
<xsd:complexType name="winners_data_array">
|
1481
|
+
<xsd:sequence>
|
1482
|
+
<xsd:element name="winner_data" type="tns:winner_data" minOccurs="1" maxOccurs="unbounded"/>
|
1483
|
+
</xsd:sequence>
|
1484
|
+
</xsd:complexType>
|
1485
|
+
<xsd:complexType name="RemoteAuction.createRequestType">
|
1486
|
+
<xsd:sequence>
|
1487
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1488
|
+
<xsd:element name="data" type="tns:auction_data" minOccurs="0" maxOccurs="1"/>
|
1489
|
+
</xsd:sequence>
|
1490
|
+
</xsd:complexType>
|
1491
|
+
<xsd:complexType name="RemoteAuction.createResponseType">
|
1492
|
+
<xsd:sequence>
|
1493
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1494
|
+
</xsd:sequence>
|
1495
|
+
</xsd:complexType>
|
1496
|
+
<xsd:complexType name="RemoteAuction.updateRequestType">
|
1497
|
+
<xsd:sequence>
|
1498
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1499
|
+
<xsd:element name="data" type="tns:auction_data" minOccurs="0" maxOccurs="1"/>
|
1500
|
+
</xsd:sequence>
|
1501
|
+
</xsd:complexType>
|
1502
|
+
<xsd:complexType name="RemoteAuction.updateResponseType">
|
1503
|
+
<xsd:sequence>
|
1504
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1505
|
+
</xsd:sequence>
|
1506
|
+
</xsd:complexType>
|
1507
|
+
<xsd:complexType name="RemoteAuction.setPositionsRequestType">
|
1508
|
+
<xsd:sequence>
|
1509
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1510
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1511
|
+
<xsd:element name="positions" type="tns:auction_positions" minOccurs="0" maxOccurs="1"/>
|
1512
|
+
<xsd:element name="positions_fields" type="tns:custom_fields" minOccurs="0" maxOccurs="1"/>
|
1513
|
+
<xsd:element name="offers_fields" type="tns:custom_fields" minOccurs="0" maxOccurs="1"/>
|
1514
|
+
</xsd:sequence>
|
1515
|
+
</xsd:complexType>
|
1516
|
+
<xsd:complexType name="RemoteAuction.setPositionsResponseType">
|
1517
|
+
<xsd:sequence>
|
1518
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1519
|
+
</xsd:sequence>
|
1520
|
+
</xsd:complexType>
|
1521
|
+
<xsd:complexType name="RemoteAuction.setPositionGroupsRequestType">
|
1522
|
+
<xsd:sequence>
|
1523
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1524
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1525
|
+
<xsd:element name="groups" type="tns:auction_positions_groups" minOccurs="0" maxOccurs="1"/>
|
1526
|
+
</xsd:sequence>
|
1527
|
+
</xsd:complexType>
|
1528
|
+
<xsd:complexType name="RemoteAuction.setPositionGroupsResponseType">
|
1529
|
+
<xsd:sequence>
|
1530
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1531
|
+
</xsd:sequence>
|
1532
|
+
</xsd:complexType>
|
1533
|
+
<xsd:complexType name="RemoteAuction.clearPositionsRequestType">
|
1534
|
+
<xsd:sequence>
|
1535
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1536
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1537
|
+
</xsd:sequence>
|
1538
|
+
</xsd:complexType>
|
1539
|
+
<xsd:complexType name="RemoteAuction.clearPositionsResponseType">
|
1540
|
+
<xsd:sequence>
|
1541
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1542
|
+
</xsd:sequence>
|
1543
|
+
</xsd:complexType>
|
1544
|
+
<xsd:complexType name="RemoteAuction.setOffersFieldsRequestType">
|
1545
|
+
<xsd:sequence>
|
1546
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1547
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1548
|
+
<xsd:element name="offers_fields" type="tns:custom_fields" minOccurs="0" maxOccurs="1"/>
|
1549
|
+
</xsd:sequence>
|
1550
|
+
</xsd:complexType>
|
1551
|
+
<xsd:complexType name="RemoteAuction.setOffersFieldsResponseType">
|
1552
|
+
<xsd:sequence>
|
1553
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1554
|
+
</xsd:sequence>
|
1555
|
+
</xsd:complexType>
|
1556
|
+
<xsd:complexType name="RemoteAuction.addOffersFieldsRequestType">
|
1557
|
+
<xsd:sequence>
|
1558
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1559
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1560
|
+
<xsd:element name="offers_fields" type="tns:custom_fields" minOccurs="0" maxOccurs="1"/>
|
1561
|
+
</xsd:sequence>
|
1562
|
+
</xsd:complexType>
|
1563
|
+
<xsd:complexType name="RemoteAuction.addOffersFieldsResponseType">
|
1564
|
+
<xsd:sequence>
|
1565
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1566
|
+
</xsd:sequence>
|
1567
|
+
</xsd:complexType>
|
1568
|
+
<xsd:complexType name="RemoteAuction.clearOffersFieldsRequestType">
|
1569
|
+
<xsd:sequence>
|
1570
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1571
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1572
|
+
</xsd:sequence>
|
1573
|
+
</xsd:complexType>
|
1574
|
+
<xsd:complexType name="RemoteAuction.clearOffersFieldsResponseType">
|
1575
|
+
<xsd:sequence>
|
1576
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1577
|
+
</xsd:sequence>
|
1578
|
+
</xsd:complexType>
|
1579
|
+
<xsd:complexType name="RemoteAuction.getDataRequestType">
|
1580
|
+
<xsd:sequence>
|
1581
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1582
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1583
|
+
</xsd:sequence>
|
1584
|
+
</xsd:complexType>
|
1585
|
+
<xsd:complexType name="RemoteAuction.getDataResponseType">
|
1586
|
+
<xsd:sequence>
|
1587
|
+
<xsd:element name="return" type="tns:ret_auction_data" minOccurs="0" maxOccurs="1"/>
|
1588
|
+
</xsd:sequence>
|
1589
|
+
</xsd:complexType>
|
1590
|
+
<xsd:complexType name="RemoteAuction.deleteRequestType">
|
1591
|
+
<xsd:sequence>
|
1592
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1593
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1594
|
+
</xsd:sequence>
|
1595
|
+
</xsd:complexType>
|
1596
|
+
<xsd:complexType name="RemoteAuction.deleteResponseType">
|
1597
|
+
<xsd:sequence>
|
1598
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1599
|
+
</xsd:sequence>
|
1600
|
+
</xsd:complexType>
|
1601
|
+
<xsd:complexType name="RemoteAuction.publishRequestType">
|
1602
|
+
<xsd:sequence>
|
1603
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1604
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1605
|
+
</xsd:sequence>
|
1606
|
+
</xsd:complexType>
|
1607
|
+
<xsd:complexType name="RemoteAuction.publishResponseType">
|
1608
|
+
<xsd:sequence>
|
1609
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1610
|
+
</xsd:sequence>
|
1611
|
+
</xsd:complexType>
|
1612
|
+
<xsd:complexType name="RemoteAuction.uploadDocRequestType">
|
1613
|
+
<xsd:sequence>
|
1614
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1615
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1616
|
+
<xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1617
|
+
<xsd:element name="url" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1618
|
+
</xsd:sequence>
|
1619
|
+
</xsd:complexType>
|
1620
|
+
<xsd:complexType name="RemoteAuction.uploadDocResponseType">
|
1621
|
+
<xsd:sequence>
|
1622
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1623
|
+
</xsd:sequence>
|
1624
|
+
</xsd:complexType>
|
1625
|
+
<xsd:complexType name="RemoteAuction.uploadDocsRequestType">
|
1626
|
+
<xsd:sequence>
|
1627
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1628
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1629
|
+
<xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1630
|
+
<xsd:element name="urls" type="tns:urls" minOccurs="0" maxOccurs="1"/>
|
1631
|
+
</xsd:sequence>
|
1632
|
+
</xsd:complexType>
|
1633
|
+
<xsd:complexType name="RemoteAuction.uploadDocsResponseType">
|
1634
|
+
<xsd:sequence>
|
1635
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1636
|
+
</xsd:sequence>
|
1637
|
+
</xsd:complexType>
|
1638
|
+
<xsd:complexType name="RemoteAuction.getParticipantsRequestType">
|
1639
|
+
<xsd:sequence>
|
1640
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1641
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1642
|
+
</xsd:sequence>
|
1643
|
+
</xsd:complexType>
|
1644
|
+
<xsd:complexType name="RemoteAuction.getParticipantsResponseType">
|
1645
|
+
<xsd:sequence>
|
1646
|
+
<xsd:element name="return" type="tns:ret_auction_participants" minOccurs="0" maxOccurs="1"/>
|
1647
|
+
</xsd:sequence>
|
1648
|
+
</xsd:complexType>
|
1649
|
+
<xsd:complexType name="RemoteAuction.getOfferRequestType">
|
1650
|
+
<xsd:sequence>
|
1651
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1652
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1653
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1654
|
+
<xsd:element name="offer_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1655
|
+
</xsd:sequence>
|
1656
|
+
</xsd:complexType>
|
1657
|
+
<xsd:complexType name="RemoteAuction.getOfferResponseType">
|
1658
|
+
<xsd:sequence>
|
1659
|
+
<xsd:element name="return" type="tns:ret_auction_offer" minOccurs="0" maxOccurs="1"/>
|
1660
|
+
</xsd:sequence>
|
1661
|
+
</xsd:complexType>
|
1662
|
+
<xsd:complexType name="RemoteAuction.getOffersHistoryRequestType">
|
1663
|
+
<xsd:sequence>
|
1664
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1665
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1666
|
+
</xsd:sequence>
|
1667
|
+
</xsd:complexType>
|
1668
|
+
<xsd:complexType name="RemoteAuction.getOffersHistoryResponseType">
|
1669
|
+
<xsd:sequence>
|
1670
|
+
<xsd:element name="return" type="tns:ret_auction_offers_history" minOccurs="0" maxOccurs="1"/>
|
1671
|
+
</xsd:sequence>
|
1672
|
+
</xsd:complexType>
|
1673
|
+
<xsd:complexType name="RemoteAuction.getBetRequestType">
|
1674
|
+
<xsd:sequence>
|
1675
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1676
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1677
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1678
|
+
<xsd:element name="offer_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1679
|
+
<xsd:element name="bet_num" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1680
|
+
</xsd:sequence>
|
1681
|
+
</xsd:complexType>
|
1682
|
+
<xsd:complexType name="RemoteAuction.getBetResponseType">
|
1683
|
+
<xsd:sequence>
|
1684
|
+
<xsd:element name="return" type="tns:ret_auction_bet" minOccurs="0" maxOccurs="1"/>
|
1685
|
+
</xsd:sequence>
|
1686
|
+
</xsd:complexType>
|
1687
|
+
<xsd:complexType name="RemoteAuction.getIdsRequestType">
|
1688
|
+
<xsd:sequence>
|
1689
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1690
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1691
|
+
<xsd:element name="type" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1692
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1693
|
+
</xsd:sequence>
|
1694
|
+
</xsd:complexType>
|
1695
|
+
<xsd:complexType name="RemoteAuction.getIdsResponseType">
|
1696
|
+
<xsd:sequence>
|
1697
|
+
<xsd:element name="return" type="tns:ret_array_of_ids" minOccurs="0" maxOccurs="1"/>
|
1698
|
+
</xsd:sequence>
|
1699
|
+
</xsd:complexType>
|
1700
|
+
<xsd:complexType name="RemoteAuction.getDocRequestType">
|
1701
|
+
<xsd:sequence>
|
1702
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1703
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1704
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1705
|
+
</xsd:sequence>
|
1706
|
+
</xsd:complexType>
|
1707
|
+
<xsd:complexType name="RemoteAuction.getDocResponseType">
|
1708
|
+
<xsd:sequence>
|
1709
|
+
<xsd:element name="return" type="tns:ret_doc" minOccurs="0" maxOccurs="1"/>
|
1710
|
+
</xsd:sequence>
|
1711
|
+
</xsd:complexType>
|
1712
|
+
<xsd:complexType name="RemoteAuction.getDocAsFileRequestType">
|
1713
|
+
<xsd:sequence>
|
1714
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1715
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1716
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1717
|
+
</xsd:sequence>
|
1718
|
+
</xsd:complexType>
|
1719
|
+
<xsd:complexType name="RemoteAuction.getDocAsFileResponseType">
|
1720
|
+
<xsd:sequence>
|
1721
|
+
<xsd:element name="return" type="tns:ret_file" minOccurs="0" maxOccurs="1"/>
|
1722
|
+
</xsd:sequence>
|
1723
|
+
</xsd:complexType>
|
1724
|
+
<xsd:complexType name="RemoteAuction.signRequestType">
|
1725
|
+
<xsd:sequence>
|
1726
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1727
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1728
|
+
<xsd:element name="key" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1729
|
+
<xsd:element name="signed_doc" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1730
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1731
|
+
</xsd:sequence>
|
1732
|
+
</xsd:complexType>
|
1733
|
+
<xsd:complexType name="RemoteAuction.signResponseType">
|
1734
|
+
<xsd:sequence>
|
1735
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1736
|
+
</xsd:sequence>
|
1737
|
+
</xsd:complexType>
|
1738
|
+
<xsd:complexType name="RemoteAuction.setProtocolRequestType">
|
1739
|
+
<xsd:sequence>
|
1740
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1741
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1742
|
+
<xsd:element name="data" type="tns:auction_protocol" minOccurs="0" maxOccurs="1"/>
|
1743
|
+
</xsd:sequence>
|
1744
|
+
</xsd:complexType>
|
1745
|
+
<xsd:complexType name="RemoteAuction.setProtocolResponseType">
|
1746
|
+
<xsd:sequence>
|
1747
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
1748
|
+
</xsd:sequence>
|
1749
|
+
</xsd:complexType>
|
1750
|
+
<xsd:complexType name="RemoteAuction.getProtocolRequestType">
|
1751
|
+
<xsd:sequence>
|
1752
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1753
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1754
|
+
</xsd:sequence>
|
1755
|
+
</xsd:complexType>
|
1756
|
+
<xsd:complexType name="RemoteAuction.getProtocolResponseType">
|
1757
|
+
<xsd:sequence>
|
1758
|
+
<xsd:element name="return" type="tns:ret_auction_protocol" minOccurs="0" maxOccurs="1"/>
|
1759
|
+
</xsd:sequence>
|
1760
|
+
</xsd:complexType>
|
1761
|
+
<xsd:complexType name="RemoteAuction.getStatusRequestType">
|
1762
|
+
<xsd:sequence>
|
1763
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1764
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1765
|
+
</xsd:sequence>
|
1766
|
+
</xsd:complexType>
|
1767
|
+
<xsd:complexType name="RemoteAuction.getStatusResponseType">
|
1768
|
+
<xsd:sequence>
|
1769
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1770
|
+
</xsd:sequence>
|
1771
|
+
</xsd:complexType>
|
1772
|
+
<xsd:complexType name="RemoteAuction.findParticipantAuctionsRequestType">
|
1773
|
+
<xsd:sequence>
|
1774
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1775
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1776
|
+
<xsd:element name="options" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1777
|
+
<xsd:element name="type" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1778
|
+
</xsd:sequence>
|
1779
|
+
</xsd:complexType>
|
1780
|
+
<xsd:complexType name="RemoteAuction.findParticipantAuctionsResponseType">
|
1781
|
+
<xsd:sequence>
|
1782
|
+
<xsd:element name="return" type="tns:ret_participant_auctions" minOccurs="0" maxOccurs="1"/>
|
1783
|
+
</xsd:sequence>
|
1784
|
+
</xsd:complexType>
|
1785
|
+
<xsd:complexType name="RemoteAuction.createExplanationRequestType">
|
1786
|
+
<xsd:sequence>
|
1787
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1788
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1789
|
+
<xsd:element name="explanation" type="tns:explanation" minOccurs="0" maxOccurs="1"/>
|
1790
|
+
</xsd:sequence>
|
1791
|
+
</xsd:complexType>
|
1792
|
+
<xsd:complexType name="RemoteAuction.createExplanationResponseType">
|
1793
|
+
<xsd:sequence>
|
1794
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1795
|
+
</xsd:sequence>
|
1796
|
+
</xsd:complexType>
|
1797
|
+
<xsd:complexType name="RemoteAuction.getListExplanationRequestType">
|
1798
|
+
<xsd:sequence>
|
1799
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1800
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1801
|
+
</xsd:sequence>
|
1802
|
+
</xsd:complexType>
|
1803
|
+
<xsd:complexType name="RemoteAuction.getListExplanationResponseType">
|
1804
|
+
<xsd:sequence>
|
1805
|
+
<xsd:element name="return" type="tns:ret_array_explanations" minOccurs="0" maxOccurs="1"/>
|
1806
|
+
</xsd:sequence>
|
1807
|
+
</xsd:complexType>
|
1808
|
+
<xsd:complexType name="RemoteAuction.answerExplanationRequestType">
|
1809
|
+
<xsd:sequence>
|
1810
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1811
|
+
<xsd:element name="explanation" type="tns:explanation" minOccurs="0" maxOccurs="1"/>
|
1812
|
+
</xsd:sequence>
|
1813
|
+
</xsd:complexType>
|
1814
|
+
<xsd:complexType name="RemoteAuction.answerExplanationResponseType">
|
1815
|
+
<xsd:sequence>
|
1816
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1817
|
+
</xsd:sequence>
|
1818
|
+
</xsd:complexType>
|
1819
|
+
<xsd:complexType name="RemoteAuction.setWinnersRequestType">
|
1820
|
+
<xsd:sequence>
|
1821
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1822
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1823
|
+
<xsd:element name="winners" type="tns:winners_data_array" minOccurs="0" maxOccurs="1"/>
|
1824
|
+
<xsd:element name="reason" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1825
|
+
</xsd:sequence>
|
1826
|
+
</xsd:complexType>
|
1827
|
+
<xsd:complexType name="RemoteAuction.setWinnersResponseType">
|
1828
|
+
<xsd:sequence>
|
1829
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1830
|
+
</xsd:sequence>
|
1831
|
+
</xsd:complexType>
|
1832
|
+
<xsd:complexType name="RemoteAuction.confirmResultsProtocolRequestType">
|
1833
|
+
<xsd:sequence>
|
1834
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1835
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1836
|
+
</xsd:sequence>
|
1837
|
+
</xsd:complexType>
|
1838
|
+
<xsd:complexType name="RemoteAuction.confirmResultsProtocolResponseType">
|
1839
|
+
<xsd:sequence>
|
1840
|
+
<xsd:element name="return" type="tns:ret_integer" minOccurs="0" maxOccurs="1"/>
|
1841
|
+
</xsd:sequence>
|
1842
|
+
</xsd:complexType>
|
1843
|
+
<xsd:complexType name="RemoteAuction.getWorksheetsRequestType">
|
1844
|
+
<xsd:sequence>
|
1845
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1846
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1847
|
+
</xsd:sequence>
|
1848
|
+
</xsd:complexType>
|
1849
|
+
<xsd:complexType name="RemoteAuction.getWorksheetsResponseType">
|
1850
|
+
<xsd:sequence>
|
1851
|
+
<xsd:element name="return" type="tns:ret_worksheets" minOccurs="0" maxOccurs="1"/>
|
1852
|
+
</xsd:sequence>
|
1853
|
+
</xsd:complexType>
|
1854
|
+
<xsd:complexType name="RemoteAuction.getCancelDataRequestType">
|
1855
|
+
<xsd:sequence>
|
1856
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1857
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1858
|
+
</xsd:sequence>
|
1859
|
+
</xsd:complexType>
|
1860
|
+
<xsd:complexType name="RemoteAuction.getCancelDataResponseType">
|
1861
|
+
<xsd:sequence>
|
1862
|
+
<xsd:element name="return" type="tns:ret_cancel_info" minOccurs="0" maxOccurs="1"/>
|
1863
|
+
</xsd:sequence>
|
1864
|
+
</xsd:complexType>
|
1865
|
+
<xsd:complexType name="RemoteAuction.getPublicationDateRequestType">
|
1866
|
+
<xsd:sequence>
|
1867
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1868
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1869
|
+
</xsd:sequence>
|
1870
|
+
</xsd:complexType>
|
1871
|
+
<xsd:complexType name="RemoteAuction.getPublicationDateResponseType">
|
1872
|
+
<xsd:sequence>
|
1873
|
+
<xsd:element name="return" type="tns:ret_datetime" minOccurs="0" maxOccurs="1"/>
|
1874
|
+
</xsd:sequence>
|
1875
|
+
</xsd:complexType>
|
1876
|
+
<xsd:complexType name="RemoteAuction.getRegisteredFirmsRequestType">
|
1877
|
+
<xsd:sequence>
|
1878
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1879
|
+
<xsd:element name="auction_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
1880
|
+
</xsd:sequence>
|
1881
|
+
</xsd:complexType>
|
1882
|
+
<xsd:complexType name="RemoteAuction.getRegisteredFirmsResponseType">
|
1883
|
+
<xsd:sequence>
|
1884
|
+
<xsd:element name="return" type="tns:ret_firm_info" minOccurs="0" maxOccurs="1"/>
|
1885
|
+
</xsd:sequence>
|
1886
|
+
</xsd:complexType>
|
1887
|
+
<xsd:complexType name="guarantee_limit">
|
1888
|
+
<xsd:sequence>
|
1889
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1890
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1891
|
+
<xsd:element name="bank_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1892
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1893
|
+
<xsd:element name="valid_from" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1894
|
+
<xsd:element name="valid_to" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1895
|
+
<xsd:element name="confirmed_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1896
|
+
</xsd:sequence>
|
1897
|
+
</xsd:complexType>
|
1898
|
+
<xsd:complexType name="array_of_guarantees_limits">
|
1899
|
+
<xsd:sequence>
|
1900
|
+
<xsd:element name="guarantee_limit" type="tns:guarantee_limit" minOccurs="0" maxOccurs="unbounded"/>
|
1901
|
+
</xsd:sequence>
|
1902
|
+
</xsd:complexType>
|
1903
|
+
<xsd:complexType name="ret_guarantees_limits">
|
1904
|
+
<xsd:sequence>
|
1905
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1906
|
+
<xsd:element name="limits" type="tns:array_of_guarantees_limits" minOccurs="0" maxOccurs="1"/>
|
1907
|
+
</xsd:sequence>
|
1908
|
+
</xsd:complexType>
|
1909
|
+
<xsd:complexType name="guarantee">
|
1910
|
+
<xsd:sequence>
|
1911
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1912
|
+
<xsd:element name="firm_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1913
|
+
<xsd:element name="bank_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1914
|
+
<xsd:element name="beneficiary_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1915
|
+
<xsd:element name="tender_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1916
|
+
<xsd:element name="lot_id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1917
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1918
|
+
<xsd:element name="price_coverage" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1919
|
+
<xsd:element name="valid_from" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1920
|
+
<xsd:element name="valid_to" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1921
|
+
<xsd:element name="send_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1922
|
+
<xsd:element name="issued_date" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1923
|
+
</xsd:sequence>
|
1924
|
+
</xsd:complexType>
|
1925
|
+
<xsd:complexType name="array_of_guarantees">
|
1926
|
+
<xsd:sequence>
|
1927
|
+
<xsd:element name="guarantee" type="tns:guarantee" minOccurs="0" maxOccurs="unbounded"/>
|
1928
|
+
</xsd:sequence>
|
1929
|
+
</xsd:complexType>
|
1930
|
+
<xsd:complexType name="ret_guarantees">
|
1931
|
+
<xsd:sequence>
|
1932
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1933
|
+
<xsd:element name="guarantees" type="tns:array_of_guarantees" minOccurs="0" maxOccurs="1"/>
|
1934
|
+
</xsd:sequence>
|
1935
|
+
</xsd:complexType>
|
1936
|
+
<xsd:complexType name="RemoteGuarantees.getLimitsRequestType">
|
1937
|
+
<xsd:sequence>
|
1938
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1939
|
+
</xsd:sequence>
|
1940
|
+
</xsd:complexType>
|
1941
|
+
<xsd:complexType name="RemoteGuarantees.getLimitsResponseType">
|
1942
|
+
<xsd:sequence>
|
1943
|
+
<xsd:element name="return" type="tns:ret_guarantees_limits" minOccurs="0" maxOccurs="1"/>
|
1944
|
+
</xsd:sequence>
|
1945
|
+
</xsd:complexType>
|
1946
|
+
<xsd:complexType name="RemoteGuarantees.getGuaranteesRequestType">
|
1947
|
+
<xsd:sequence>
|
1948
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
1949
|
+
</xsd:sequence>
|
1950
|
+
</xsd:complexType>
|
1951
|
+
<xsd:complexType name="RemoteGuarantees.getGuaranteesResponseType">
|
1952
|
+
<xsd:sequence>
|
1953
|
+
<xsd:element name="return" type="tns:ret_guarantees" minOccurs="0" maxOccurs="1"/>
|
1954
|
+
</xsd:sequence>
|
1955
|
+
</xsd:complexType>
|
1956
|
+
<xsd:complexType name="shop_order">
|
1957
|
+
<xsd:sequence>
|
1958
|
+
<xsd:element name="id" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1959
|
+
<xsd:element name="firm_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1960
|
+
<xsd:element name="product_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1961
|
+
<xsd:element name="quantity" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1962
|
+
<xsd:element name="units" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1963
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1964
|
+
<xsd:element name="currency" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
1965
|
+
<xsd:element name="date_confirmed" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1966
|
+
<xsd:element name="contract_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1967
|
+
<xsd:element name="additional_agreement" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1968
|
+
<xsd:element name="price_list_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1969
|
+
<xsd:element name="manager_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1970
|
+
<xsd:element name="custom_fields" type="tns:associative_array" minOccurs="0" maxOccurs="1"/>
|
1971
|
+
</xsd:sequence>
|
1972
|
+
</xsd:complexType>
|
1973
|
+
<xsd:complexType name="shop_orders">
|
1974
|
+
<xsd:sequence>
|
1975
|
+
<xsd:element name="order" type="tns:shop_order" minOccurs="0" maxOccurs="unbounded"/>
|
1976
|
+
</xsd:sequence>
|
1977
|
+
</xsd:complexType>
|
1978
|
+
<xsd:complexType name="ret_shop_orders">
|
1979
|
+
<xsd:sequence>
|
1980
|
+
<xsd:element name="status" type="tns:response_status" minOccurs="1" maxOccurs="1"/>
|
1981
|
+
<xsd:element name="orders" type="tns:shop_orders" minOccurs="0" maxOccurs="1"/>
|
1982
|
+
</xsd:sequence>
|
1983
|
+
</xsd:complexType>
|
1984
|
+
<xsd:complexType name="shop_contract">
|
1985
|
+
<xsd:sequence>
|
1986
|
+
<xsd:element name="id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1987
|
+
<xsd:element name="customer_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1988
|
+
<xsd:element name="product_id" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1989
|
+
<xsd:element name="number" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
1990
|
+
<xsd:element name="date" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1991
|
+
<xsd:element name="date_end" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1992
|
+
<xsd:element name="date_modified" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
1993
|
+
</xsd:sequence>
|
1994
|
+
</xsd:complexType>
|
1995
|
+
<xsd:complexType name="shop_contracts">
|
1996
|
+
<xsd:sequence>
|
1997
|
+
<xsd:element name="contract" type="tns:shop_contract" minOccurs="0" maxOccurs="unbounded"/>
|
1998
|
+
</xsd:sequence>
|
1999
|
+
</xsd:complexType>
|
2000
|
+
<xsd:complexType name="shop_customer">
|
2001
|
+
<xsd:sequence>
|
2002
|
+
<xsd:element name="id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2003
|
+
<xsd:element name="org_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2004
|
+
<xsd:element name="org_name_short" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2005
|
+
<xsd:element name="inn" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2006
|
+
<xsd:element name="kpp" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2007
|
+
<xsd:element name="ogrn" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2008
|
+
<xsd:element name="date_modified" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2009
|
+
</xsd:sequence>
|
2010
|
+
</xsd:complexType>
|
2011
|
+
<xsd:complexType name="shop_customers">
|
2012
|
+
<xsd:sequence>
|
2013
|
+
<xsd:element name="customer" type="tns:shop_customer" minOccurs="0" maxOccurs="unbounded"/>
|
2014
|
+
</xsd:sequence>
|
2015
|
+
</xsd:complexType>
|
2016
|
+
<xsd:complexType name="shop_price_list">
|
2017
|
+
<xsd:sequence>
|
2018
|
+
<xsd:element name="id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2019
|
+
<xsd:element name="list_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2020
|
+
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2021
|
+
<xsd:element name="product_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2022
|
+
<xsd:element name="price" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2023
|
+
<xsd:element name="currency" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
2024
|
+
<xsd:element name="date_start" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2025
|
+
<xsd:element name="date_end" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2026
|
+
<xsd:element name="date_modified" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2027
|
+
</xsd:sequence>
|
2028
|
+
</xsd:complexType>
|
2029
|
+
<xsd:complexType name="shop_price_lists">
|
2030
|
+
<xsd:sequence>
|
2031
|
+
<xsd:element name="price_list" type="tns:shop_price_list" minOccurs="0" maxOccurs="unbounded"/>
|
2032
|
+
</xsd:sequence>
|
2033
|
+
</xsd:complexType>
|
2034
|
+
<xsd:complexType name="shop_consignee">
|
2035
|
+
<xsd:sequence>
|
2036
|
+
<xsd:element name="id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2037
|
+
<xsd:element name="customer_id" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2038
|
+
<xsd:element name="customer_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2039
|
+
<xsd:element name="location" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2040
|
+
<xsd:element name="address" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2041
|
+
<xsd:element name="station_code" type="xsd:integer" minOccurs="1" maxOccurs="1"/>
|
2042
|
+
<xsd:element name="station_name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
2043
|
+
</xsd:sequence>
|
2044
|
+
</xsd:complexType>
|
2045
|
+
<xsd:complexType name="shop_consignees">
|
2046
|
+
<xsd:sequence>
|
2047
|
+
<xsd:element name="consignee" type="tns:shop_consignee" minOccurs="0" maxOccurs="unbounded"/>
|
2048
|
+
</xsd:sequence>
|
2049
|
+
</xsd:complexType>
|
2050
|
+
<xsd:complexType name="RemoteShop.getOrdersRequestType">
|
2051
|
+
<xsd:sequence>
|
2052
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2053
|
+
</xsd:sequence>
|
2054
|
+
</xsd:complexType>
|
2055
|
+
<xsd:complexType name="RemoteShop.getOrdersResponseType">
|
2056
|
+
<xsd:sequence>
|
2057
|
+
<xsd:element name="return" type="tns:ret_shop_orders" minOccurs="0" maxOccurs="1"/>
|
2058
|
+
</xsd:sequence>
|
2059
|
+
</xsd:complexType>
|
2060
|
+
<xsd:complexType name="RemoteShop.updateCustomersRequestType">
|
2061
|
+
<xsd:sequence>
|
2062
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2063
|
+
<xsd:element name="customers" type="tns:shop_customers" minOccurs="0" maxOccurs="1"/>
|
2064
|
+
</xsd:sequence>
|
2065
|
+
</xsd:complexType>
|
2066
|
+
<xsd:complexType name="RemoteShop.updateCustomersResponseType">
|
2067
|
+
<xsd:sequence>
|
2068
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
2069
|
+
</xsd:sequence>
|
2070
|
+
</xsd:complexType>
|
2071
|
+
<xsd:complexType name="RemoteShop.updateContractsRequestType">
|
2072
|
+
<xsd:sequence>
|
2073
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2074
|
+
<xsd:element name="contracts" type="tns:shop_contracts" minOccurs="0" maxOccurs="1"/>
|
2075
|
+
</xsd:sequence>
|
2076
|
+
</xsd:complexType>
|
2077
|
+
<xsd:complexType name="RemoteShop.updateContractsResponseType">
|
2078
|
+
<xsd:sequence>
|
2079
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
2080
|
+
</xsd:sequence>
|
2081
|
+
</xsd:complexType>
|
2082
|
+
<xsd:complexType name="RemoteShop.updatePriceListsRequestType">
|
2083
|
+
<xsd:sequence>
|
2084
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2085
|
+
<xsd:element name="price_lists" type="tns:shop_price_lists" minOccurs="0" maxOccurs="1"/>
|
2086
|
+
</xsd:sequence>
|
2087
|
+
</xsd:complexType>
|
2088
|
+
<xsd:complexType name="RemoteShop.updatePriceListsResponseType">
|
2089
|
+
<xsd:sequence>
|
2090
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
2091
|
+
</xsd:sequence>
|
2092
|
+
</xsd:complexType>
|
2093
|
+
<xsd:complexType name="RemoteShop.updateConsigneesRequestType">
|
2094
|
+
<xsd:sequence>
|
2095
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2096
|
+
<xsd:element name="consignees" type="tns:shop_consignees" minOccurs="0" maxOccurs="1"/>
|
2097
|
+
</xsd:sequence>
|
2098
|
+
</xsd:complexType>
|
2099
|
+
<xsd:complexType name="RemoteShop.updateConsigneesResponseType">
|
2100
|
+
<xsd:sequence>
|
2101
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
2102
|
+
</xsd:sequence>
|
2103
|
+
</xsd:complexType>
|
2104
|
+
<xsd:complexType name="RemoteShop.setOrderStatusRequestType">
|
2105
|
+
<xsd:sequence>
|
2106
|
+
<xsd:element name="auth" type="tns:auth_info" minOccurs="0" maxOccurs="1"/>
|
2107
|
+
<xsd:element name="order_id" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
2108
|
+
<xsd:element name="status" type="xsd:integer" minOccurs="0" maxOccurs="1"/>
|
2109
|
+
<xsd:element name="comments" type="xsd:string" minOccurs="0" maxOccurs="1"/>
|
2110
|
+
</xsd:sequence>
|
2111
|
+
</xsd:complexType>
|
2112
|
+
<xsd:complexType name="RemoteShop.setOrderStatusResponseType">
|
2113
|
+
<xsd:sequence>
|
2114
|
+
<xsd:element name="return" type="tns:ret_status" minOccurs="0" maxOccurs="1"/>
|
2115
|
+
</xsd:sequence>
|
2116
|
+
</xsd:complexType>
|
2117
|
+
<xsd:element name="RemoteMarket.getServices" type="tns:RemoteMarket.getServicesRequestType"/>
|
2118
|
+
<xsd:element name="RemoteMarket.getServicesResponse" type="tns:RemoteMarket.getServicesResponseType"/>
|
2119
|
+
<xsd:element name="RemoteMarket.getFirmInfo" type="tns:RemoteMarket.getFirmInfoRequestType"/>
|
2120
|
+
<xsd:element name="RemoteMarket.getFirmInfoResponse" type="tns:RemoteMarket.getFirmInfoResponseType"/>
|
2121
|
+
<xsd:element name="RemoteMarket.getFirmProperties" type="tns:RemoteMarket.getFirmPropertiesRequestType"/>
|
2122
|
+
<xsd:element name="RemoteMarket.getFirmPropertiesResponse" type="tns:RemoteMarket.getFirmPropertiesResponseType"/>
|
2123
|
+
<xsd:element name="RemoteMarket.getClassifierRows" type="tns:RemoteMarket.getClassifierRowsRequestType"/>
|
2124
|
+
<xsd:element name="RemoteMarket.getClassifierRowsResponse" type="tns:RemoteMarket.getClassifierRowsResponseType"/>
|
2125
|
+
<xsd:element name="RemoteMarket.getModifiedClassifierRows" type="tns:RemoteMarket.getModifiedClassifierRowsRequestType"/>
|
2126
|
+
<xsd:element name="RemoteMarket.getModifiedClassifierRowsResponse" type="tns:RemoteMarket.getModifiedClassifierRowsResponseType"/>
|
2127
|
+
<xsd:element name="RemoteMarket.updateUser" type="tns:RemoteMarket.updateUserRequestType"/>
|
2128
|
+
<xsd:element name="RemoteMarket.updateUserResponse" type="tns:RemoteMarket.updateUserResponseType"/>
|
2129
|
+
<xsd:element name="RemoteMarket.getUser" type="tns:RemoteMarket.getUserRequestType"/>
|
2130
|
+
<xsd:element name="RemoteMarket.getUserResponse" type="tns:RemoteMarket.getUserResponseType"/>
|
2131
|
+
<xsd:element name="RemoteMarket.deleteUser" type="tns:RemoteMarket.deleteUserRequestType"/>
|
2132
|
+
<xsd:element name="RemoteMarket.deleteUserResponse" type="tns:RemoteMarket.deleteUserResponseType"/>
|
2133
|
+
<xsd:element name="RemoteMarket.getUsersIds" type="tns:RemoteMarket.getUsersIdsRequestType"/>
|
2134
|
+
<xsd:element name="RemoteMarket.getUsersIdsResponse" type="tns:RemoteMarket.getUsersIdsResponseType"/>
|
2135
|
+
<xsd:element name="RemoteMarket.updateDepartment" type="tns:RemoteMarket.updateDepartmentRequestType"/>
|
2136
|
+
<xsd:element name="RemoteMarket.updateDepartmentResponse" type="tns:RemoteMarket.updateDepartmentResponseType"/>
|
2137
|
+
<xsd:element name="RemoteMarket.getDepartment" type="tns:RemoteMarket.getDepartmentRequestType"/>
|
2138
|
+
<xsd:element name="RemoteMarket.getDepartmentResponse" type="tns:RemoteMarket.getDepartmentResponseType"/>
|
2139
|
+
<xsd:element name="RemoteMarket.deleteDepartment" type="tns:RemoteMarket.deleteDepartmentRequestType"/>
|
2140
|
+
<xsd:element name="RemoteMarket.deleteDepartmentResponse" type="tns:RemoteMarket.deleteDepartmentResponseType"/>
|
2141
|
+
<xsd:element name="RemoteMarket.getDepartmentsIds" type="tns:RemoteMarket.getDepartmentsIdsRequestType"/>
|
2142
|
+
<xsd:element name="RemoteMarket.getDepartmentsIdsResponse" type="tns:RemoteMarket.getDepartmentsIdsResponseType"/>
|
2143
|
+
<xsd:element name="RemoteMarket.getHierarchyFirms" type="tns:RemoteMarket.getHierarchyFirmsRequestType"/>
|
2144
|
+
<xsd:element name="RemoteMarket.getHierarchyFirmsResponse" type="tns:RemoteMarket.getHierarchyFirmsResponseType"/>
|
2145
|
+
<xsd:element name="RemoteMarket.updateAddress" type="tns:RemoteMarket.updateAddressRequestType"/>
|
2146
|
+
<xsd:element name="RemoteMarket.updateAddressResponse" type="tns:RemoteMarket.updateAddressResponseType"/>
|
2147
|
+
<xsd:element name="RemoteMarket.getAddress" type="tns:RemoteMarket.getAddressRequestType"/>
|
2148
|
+
<xsd:element name="RemoteMarket.getAddressResponse" type="tns:RemoteMarket.getAddressResponseType"/>
|
2149
|
+
<xsd:element name="RemoteMarket.deleteAddress" type="tns:RemoteMarket.deleteAddressRequestType"/>
|
2150
|
+
<xsd:element name="RemoteMarket.deleteAddressResponse" type="tns:RemoteMarket.deleteAddressResponseType"/>
|
2151
|
+
<xsd:element name="RemoteMarket.getAddressesIds" type="tns:RemoteMarket.getAddressesIdsRequestType"/>
|
2152
|
+
<xsd:element name="RemoteMarket.getAddressesIdsResponse" type="tns:RemoteMarket.getAddressesIdsResponseType"/>
|
2153
|
+
<xsd:element name="RemoteMarket.getAddressIdByOkato" type="tns:RemoteMarket.getAddressIdByOkatoRequestType"/>
|
2154
|
+
<xsd:element name="RemoteMarket.getAddressIdByOkatoResponse" type="tns:RemoteMarket.getAddressIdByOkatoResponseType"/>
|
2155
|
+
<xsd:element name="RemoteMarket.findFirm" type="tns:RemoteMarket.findFirmRequestType"/>
|
2156
|
+
<xsd:element name="RemoteMarket.findFirmResponse" type="tns:RemoteMarket.findFirmResponseType"/>
|
2157
|
+
<xsd:element name="RemoteMarket.findFirmTenders" type="tns:RemoteMarket.findFirmTendersRequestType"/>
|
2158
|
+
<xsd:element name="RemoteMarket.findFirmTendersResponse" type="tns:RemoteMarket.findFirmTendersResponseType"/>
|
2159
|
+
<xsd:element name="RemoteMarket.getFirmClassifier" type="tns:RemoteMarket.getFirmClassifierRequestType"/>
|
2160
|
+
<xsd:element name="RemoteMarket.getFirmClassifierResponse" type="tns:RemoteMarket.getFirmClassifierResponseType"/>
|
2161
|
+
<xsd:element name="RemoteMarket.getModifiedPurchases" type="tns:RemoteMarket.getModifiedPurchasesRequestType"/>
|
2162
|
+
<xsd:element name="RemoteMarket.getModifiedPurchasesResponse" type="tns:RemoteMarket.getModifiedPurchasesResponseType"/>
|
2163
|
+
<xsd:element name="RemoteMarket.getModifiedPurchases223fz" type="tns:RemoteMarket.getModifiedPurchases223fzRequestType"/>
|
2164
|
+
<xsd:element name="RemoteMarket.getModifiedPurchases223fzResponse" type="tns:RemoteMarket.getModifiedPurchases223fzResponseType"/>
|
2165
|
+
<xsd:element name="RemoteTender.create" type="tns:RemoteTender.createRequestType"/>
|
2166
|
+
<xsd:element name="RemoteTender.createResponse" type="tns:RemoteTender.createResponseType"/>
|
2167
|
+
<xsd:element name="RemoteTender.update" type="tns:RemoteTender.updateRequestType"/>
|
2168
|
+
<xsd:element name="RemoteTender.updateResponse" type="tns:RemoteTender.updateResponseType"/>
|
2169
|
+
<xsd:element name="RemoteTender.getData" type="tns:RemoteTender.getDataRequestType"/>
|
2170
|
+
<xsd:element name="RemoteTender.getDataResponse" type="tns:RemoteTender.getDataResponseType"/>
|
2171
|
+
<xsd:element name="RemoteTender.start" type="tns:RemoteTender.startRequestType"/>
|
2172
|
+
<xsd:element name="RemoteTender.startResponse" type="tns:RemoteTender.startResponseType"/>
|
2173
|
+
<xsd:element name="RemoteTender.uploadDoc" type="tns:RemoteTender.uploadDocRequestType"/>
|
2174
|
+
<xsd:element name="RemoteTender.uploadDocResponse" type="tns:RemoteTender.uploadDocResponseType"/>
|
2175
|
+
<xsd:element name="RemoteTender.uploadDocs" type="tns:RemoteTender.uploadDocsRequestType"/>
|
2176
|
+
<xsd:element name="RemoteTender.uploadDocsResponse" type="tns:RemoteTender.uploadDocsResponseType"/>
|
2177
|
+
<xsd:element name="RemoteTender.getParticipants" type="tns:RemoteTender.getParticipantsRequestType"/>
|
2178
|
+
<xsd:element name="RemoteTender.getParticipantsResponse" type="tns:RemoteTender.getParticipantsResponseType"/>
|
2179
|
+
<xsd:element name="RemoteTender.getOffer" type="tns:RemoteTender.getOfferRequestType"/>
|
2180
|
+
<xsd:element name="RemoteTender.getOfferResponse" type="tns:RemoteTender.getOfferResponseType"/>
|
2181
|
+
<xsd:element name="RemoteTender.getLotResult" type="tns:RemoteTender.getLotResultRequestType"/>
|
2182
|
+
<xsd:element name="RemoteTender.getLotResultResponse" type="tns:RemoteTender.getLotResultResponseType"/>
|
2183
|
+
<xsd:element name="RemoteTender.setUnsealingProtocol" type="tns:RemoteTender.setUnsealingProtocolRequestType"/>
|
2184
|
+
<xsd:element name="RemoteTender.setUnsealingProtocolResponse" type="tns:RemoteTender.setUnsealingProtocolResponseType"/>
|
2185
|
+
<xsd:element name="RemoteTender.setProtocol" type="tns:RemoteTender.setProtocolRequestType"/>
|
2186
|
+
<xsd:element name="RemoteTender.setProtocolResponse" type="tns:RemoteTender.setProtocolResponseType"/>
|
2187
|
+
<xsd:element name="RemoteTender.getProtocol" type="tns:RemoteTender.getProtocolRequestType"/>
|
2188
|
+
<xsd:element name="RemoteTender.getProtocolResponse" type="tns:RemoteTender.getProtocolResponseType"/>
|
2189
|
+
<xsd:element name="RemoteTender.sendProtocol" type="tns:RemoteTender.sendProtocolRequestType"/>
|
2190
|
+
<xsd:element name="RemoteTender.sendProtocolResponse" type="tns:RemoteTender.sendProtocolResponseType"/>
|
2191
|
+
<xsd:element name="RemoteTender.delete" type="tns:RemoteTender.deleteRequestType"/>
|
2192
|
+
<xsd:element name="RemoteTender.deleteResponse" type="tns:RemoteTender.deleteResponseType"/>
|
2193
|
+
<xsd:element name="RemoteTender.getDoc" type="tns:RemoteTender.getDocRequestType"/>
|
2194
|
+
<xsd:element name="RemoteTender.getDocResponse" type="tns:RemoteTender.getDocResponseType"/>
|
2195
|
+
<xsd:element name="RemoteTender.getDocAsFile" type="tns:RemoteTender.getDocAsFileRequestType"/>
|
2196
|
+
<xsd:element name="RemoteTender.getDocAsFileResponse" type="tns:RemoteTender.getDocAsFileResponseType"/>
|
2197
|
+
<xsd:element name="RemoteTender.sign" type="tns:RemoteTender.signRequestType"/>
|
2198
|
+
<xsd:element name="RemoteTender.signResponse" type="tns:RemoteTender.signResponseType"/>
|
2199
|
+
<xsd:element name="RemoteTender.getIds" type="tns:RemoteTender.getIdsRequestType"/>
|
2200
|
+
<xsd:element name="RemoteTender.getIdsResponse" type="tns:RemoteTender.getIdsResponseType"/>
|
2201
|
+
<xsd:element name="RemoteTender.getHagglingStatus" type="tns:RemoteTender.getHagglingStatusRequestType"/>
|
2202
|
+
<xsd:element name="RemoteTender.getHagglingStatusResponse" type="tns:RemoteTender.getHagglingStatusResponseType"/>
|
2203
|
+
<xsd:element name="RemoteTender.getHagglingFile" type="tns:RemoteTender.getHagglingFileRequestType"/>
|
2204
|
+
<xsd:element name="RemoteTender.getHagglingFileResponse" type="tns:RemoteTender.getHagglingFileResponseType"/>
|
2205
|
+
<xsd:element name="RemoteTender.createExplanation" type="tns:RemoteTender.createExplanationRequestType"/>
|
2206
|
+
<xsd:element name="RemoteTender.createExplanationResponse" type="tns:RemoteTender.createExplanationResponseType"/>
|
2207
|
+
<xsd:element name="RemoteTender.getListExplanation" type="tns:RemoteTender.getListExplanationRequestType"/>
|
2208
|
+
<xsd:element name="RemoteTender.getListExplanationResponse" type="tns:RemoteTender.getListExplanationResponseType"/>
|
2209
|
+
<xsd:element name="RemoteTender.answerExplanation" type="tns:RemoteTender.answerExplanationRequestType"/>
|
2210
|
+
<xsd:element name="RemoteTender.answerExplanationResponse" type="tns:RemoteTender.answerExplanationResponseType"/>
|
2211
|
+
<xsd:element name="RemoteTender.getLotsStatus" type="tns:RemoteTender.getLotsStatusRequestType"/>
|
2212
|
+
<xsd:element name="RemoteTender.getLotsStatusResponse" type="tns:RemoteTender.getLotsStatusResponseType"/>
|
2213
|
+
<xsd:element name="RemoteTender.getWorksheets" type="tns:RemoteTender.getWorksheetsRequestType"/>
|
2214
|
+
<xsd:element name="RemoteTender.getWorksheetsResponse" type="tns:RemoteTender.getWorksheetsResponseType"/>
|
2215
|
+
<xsd:element name="RemoteTender.getCancelData" type="tns:RemoteTender.getCancelDataRequestType"/>
|
2216
|
+
<xsd:element name="RemoteTender.getCancelDataResponse" type="tns:RemoteTender.getCancelDataResponseType"/>
|
2217
|
+
<xsd:element name="RemoteTender.getPublicationDate" type="tns:RemoteTender.getPublicationDateRequestType"/>
|
2218
|
+
<xsd:element name="RemoteTender.getPublicationDateResponse" type="tns:RemoteTender.getPublicationDateResponseType"/>
|
2219
|
+
<xsd:element name="RemoteTender.getRegisteredFirms" type="tns:RemoteTender.getRegisteredFirmsRequestType"/>
|
2220
|
+
<xsd:element name="RemoteTender.getRegisteredFirmsResponse" type="tns:RemoteTender.getRegisteredFirmsResponseType"/>
|
2221
|
+
<xsd:element name="RemoteAuction.create" type="tns:RemoteAuction.createRequestType"/>
|
2222
|
+
<xsd:element name="RemoteAuction.createResponse" type="tns:RemoteAuction.createResponseType"/>
|
2223
|
+
<xsd:element name="RemoteAuction.update" type="tns:RemoteAuction.updateRequestType"/>
|
2224
|
+
<xsd:element name="RemoteAuction.updateResponse" type="tns:RemoteAuction.updateResponseType"/>
|
2225
|
+
<xsd:element name="RemoteAuction.setPositions" type="tns:RemoteAuction.setPositionsRequestType"/>
|
2226
|
+
<xsd:element name="RemoteAuction.setPositionsResponse" type="tns:RemoteAuction.setPositionsResponseType"/>
|
2227
|
+
<xsd:element name="RemoteAuction.setPositionGroups" type="tns:RemoteAuction.setPositionGroupsRequestType"/>
|
2228
|
+
<xsd:element name="RemoteAuction.setPositionGroupsResponse" type="tns:RemoteAuction.setPositionGroupsResponseType"/>
|
2229
|
+
<xsd:element name="RemoteAuction.clearPositions" type="tns:RemoteAuction.clearPositionsRequestType"/>
|
2230
|
+
<xsd:element name="RemoteAuction.clearPositionsResponse" type="tns:RemoteAuction.clearPositionsResponseType"/>
|
2231
|
+
<xsd:element name="RemoteAuction.setOffersFields" type="tns:RemoteAuction.setOffersFieldsRequestType"/>
|
2232
|
+
<xsd:element name="RemoteAuction.setOffersFieldsResponse" type="tns:RemoteAuction.setOffersFieldsResponseType"/>
|
2233
|
+
<xsd:element name="RemoteAuction.addOffersFields" type="tns:RemoteAuction.addOffersFieldsRequestType"/>
|
2234
|
+
<xsd:element name="RemoteAuction.addOffersFieldsResponse" type="tns:RemoteAuction.addOffersFieldsResponseType"/>
|
2235
|
+
<xsd:element name="RemoteAuction.clearOffersFields" type="tns:RemoteAuction.clearOffersFieldsRequestType"/>
|
2236
|
+
<xsd:element name="RemoteAuction.clearOffersFieldsResponse" type="tns:RemoteAuction.clearOffersFieldsResponseType"/>
|
2237
|
+
<xsd:element name="RemoteAuction.getData" type="tns:RemoteAuction.getDataRequestType"/>
|
2238
|
+
<xsd:element name="RemoteAuction.getDataResponse" type="tns:RemoteAuction.getDataResponseType"/>
|
2239
|
+
<xsd:element name="RemoteAuction.delete" type="tns:RemoteAuction.deleteRequestType"/>
|
2240
|
+
<xsd:element name="RemoteAuction.deleteResponse" type="tns:RemoteAuction.deleteResponseType"/>
|
2241
|
+
<xsd:element name="RemoteAuction.publish" type="tns:RemoteAuction.publishRequestType"/>
|
2242
|
+
<xsd:element name="RemoteAuction.publishResponse" type="tns:RemoteAuction.publishResponseType"/>
|
2243
|
+
<xsd:element name="RemoteAuction.uploadDoc" type="tns:RemoteAuction.uploadDocRequestType"/>
|
2244
|
+
<xsd:element name="RemoteAuction.uploadDocResponse" type="tns:RemoteAuction.uploadDocResponseType"/>
|
2245
|
+
<xsd:element name="RemoteAuction.uploadDocs" type="tns:RemoteAuction.uploadDocsRequestType"/>
|
2246
|
+
<xsd:element name="RemoteAuction.uploadDocsResponse" type="tns:RemoteAuction.uploadDocsResponseType"/>
|
2247
|
+
<xsd:element name="RemoteAuction.getParticipants" type="tns:RemoteAuction.getParticipantsRequestType"/>
|
2248
|
+
<xsd:element name="RemoteAuction.getParticipantsResponse" type="tns:RemoteAuction.getParticipantsResponseType"/>
|
2249
|
+
<xsd:element name="RemoteAuction.getOffer" type="tns:RemoteAuction.getOfferRequestType"/>
|
2250
|
+
<xsd:element name="RemoteAuction.getOfferResponse" type="tns:RemoteAuction.getOfferResponseType"/>
|
2251
|
+
<xsd:element name="RemoteAuction.getOffersHistory" type="tns:RemoteAuction.getOffersHistoryRequestType"/>
|
2252
|
+
<xsd:element name="RemoteAuction.getOffersHistoryResponse" type="tns:RemoteAuction.getOffersHistoryResponseType"/>
|
2253
|
+
<xsd:element name="RemoteAuction.getBet" type="tns:RemoteAuction.getBetRequestType"/>
|
2254
|
+
<xsd:element name="RemoteAuction.getBetResponse" type="tns:RemoteAuction.getBetResponseType"/>
|
2255
|
+
<xsd:element name="RemoteAuction.getIds" type="tns:RemoteAuction.getIdsRequestType"/>
|
2256
|
+
<xsd:element name="RemoteAuction.getIdsResponse" type="tns:RemoteAuction.getIdsResponseType"/>
|
2257
|
+
<xsd:element name="RemoteAuction.getDoc" type="tns:RemoteAuction.getDocRequestType"/>
|
2258
|
+
<xsd:element name="RemoteAuction.getDocResponse" type="tns:RemoteAuction.getDocResponseType"/>
|
2259
|
+
<xsd:element name="RemoteAuction.getDocAsFile" type="tns:RemoteAuction.getDocAsFileRequestType"/>
|
2260
|
+
<xsd:element name="RemoteAuction.getDocAsFileResponse" type="tns:RemoteAuction.getDocAsFileResponseType"/>
|
2261
|
+
<xsd:element name="RemoteAuction.sign" type="tns:RemoteAuction.signRequestType"/>
|
2262
|
+
<xsd:element name="RemoteAuction.signResponse" type="tns:RemoteAuction.signResponseType"/>
|
2263
|
+
<xsd:element name="RemoteAuction.setProtocol" type="tns:RemoteAuction.setProtocolRequestType"/>
|
2264
|
+
<xsd:element name="RemoteAuction.setProtocolResponse" type="tns:RemoteAuction.setProtocolResponseType"/>
|
2265
|
+
<xsd:element name="RemoteAuction.getProtocol" type="tns:RemoteAuction.getProtocolRequestType"/>
|
2266
|
+
<xsd:element name="RemoteAuction.getProtocolResponse" type="tns:RemoteAuction.getProtocolResponseType"/>
|
2267
|
+
<xsd:element name="RemoteAuction.getStatus" type="tns:RemoteAuction.getStatusRequestType"/>
|
2268
|
+
<xsd:element name="RemoteAuction.getStatusResponse" type="tns:RemoteAuction.getStatusResponseType"/>
|
2269
|
+
<xsd:element name="RemoteAuction.findParticipantAuctions" type="tns:RemoteAuction.findParticipantAuctionsRequestType"/>
|
2270
|
+
<xsd:element name="RemoteAuction.findParticipantAuctionsResponse" type="tns:RemoteAuction.findParticipantAuctionsResponseType"/>
|
2271
|
+
<xsd:element name="RemoteAuction.createExplanation" type="tns:RemoteAuction.createExplanationRequestType"/>
|
2272
|
+
<xsd:element name="RemoteAuction.createExplanationResponse" type="tns:RemoteAuction.createExplanationResponseType"/>
|
2273
|
+
<xsd:element name="RemoteAuction.getListExplanation" type="tns:RemoteAuction.getListExplanationRequestType"/>
|
2274
|
+
<xsd:element name="RemoteAuction.getListExplanationResponse" type="tns:RemoteAuction.getListExplanationResponseType"/>
|
2275
|
+
<xsd:element name="RemoteAuction.answerExplanation" type="tns:RemoteAuction.answerExplanationRequestType"/>
|
2276
|
+
<xsd:element name="RemoteAuction.answerExplanationResponse" type="tns:RemoteAuction.answerExplanationResponseType"/>
|
2277
|
+
<xsd:element name="RemoteAuction.setWinners" type="tns:RemoteAuction.setWinnersRequestType"/>
|
2278
|
+
<xsd:element name="RemoteAuction.setWinnersResponse" type="tns:RemoteAuction.setWinnersResponseType"/>
|
2279
|
+
<xsd:element name="RemoteAuction.confirmResultsProtocol" type="tns:RemoteAuction.confirmResultsProtocolRequestType"/>
|
2280
|
+
<xsd:element name="RemoteAuction.confirmResultsProtocolResponse" type="tns:RemoteAuction.confirmResultsProtocolResponseType"/>
|
2281
|
+
<xsd:element name="RemoteAuction.getWorksheets" type="tns:RemoteAuction.getWorksheetsRequestType"/>
|
2282
|
+
<xsd:element name="RemoteAuction.getWorksheetsResponse" type="tns:RemoteAuction.getWorksheetsResponseType"/>
|
2283
|
+
<xsd:element name="RemoteAuction.getCancelData" type="tns:RemoteAuction.getCancelDataRequestType"/>
|
2284
|
+
<xsd:element name="RemoteAuction.getCancelDataResponse" type="tns:RemoteAuction.getCancelDataResponseType"/>
|
2285
|
+
<xsd:element name="RemoteAuction.getPublicationDate" type="tns:RemoteAuction.getPublicationDateRequestType"/>
|
2286
|
+
<xsd:element name="RemoteAuction.getPublicationDateResponse" type="tns:RemoteAuction.getPublicationDateResponseType"/>
|
2287
|
+
<xsd:element name="RemoteAuction.getRegisteredFirms" type="tns:RemoteAuction.getRegisteredFirmsRequestType"/>
|
2288
|
+
<xsd:element name="RemoteAuction.getRegisteredFirmsResponse" type="tns:RemoteAuction.getRegisteredFirmsResponseType"/>
|
2289
|
+
<xsd:element name="RemoteGuarantees.getLimits" type="tns:RemoteGuarantees.getLimitsRequestType"/>
|
2290
|
+
<xsd:element name="RemoteGuarantees.getLimitsResponse" type="tns:RemoteGuarantees.getLimitsResponseType"/>
|
2291
|
+
<xsd:element name="RemoteGuarantees.getGuarantees" type="tns:RemoteGuarantees.getGuaranteesRequestType"/>
|
2292
|
+
<xsd:element name="RemoteGuarantees.getGuaranteesResponse" type="tns:RemoteGuarantees.getGuaranteesResponseType"/>
|
2293
|
+
<xsd:element name="RemoteShop.getOrders" type="tns:RemoteShop.getOrdersRequestType"/>
|
2294
|
+
<xsd:element name="RemoteShop.getOrdersResponse" type="tns:RemoteShop.getOrdersResponseType"/>
|
2295
|
+
<xsd:element name="RemoteShop.updateCustomers" type="tns:RemoteShop.updateCustomersRequestType"/>
|
2296
|
+
<xsd:element name="RemoteShop.updateCustomersResponse" type="tns:RemoteShop.updateCustomersResponseType"/>
|
2297
|
+
<xsd:element name="RemoteShop.updateContracts" type="tns:RemoteShop.updateContractsRequestType"/>
|
2298
|
+
<xsd:element name="RemoteShop.updateContractsResponse" type="tns:RemoteShop.updateContractsResponseType"/>
|
2299
|
+
<xsd:element name="RemoteShop.updatePriceLists" type="tns:RemoteShop.updatePriceListsRequestType"/>
|
2300
|
+
<xsd:element name="RemoteShop.updatePriceListsResponse" type="tns:RemoteShop.updatePriceListsResponseType"/>
|
2301
|
+
<xsd:element name="RemoteShop.updateConsignees" type="tns:RemoteShop.updateConsigneesRequestType"/>
|
2302
|
+
<xsd:element name="RemoteShop.updateConsigneesResponse" type="tns:RemoteShop.updateConsigneesResponseType"/>
|
2303
|
+
<xsd:element name="RemoteShop.setOrderStatus" type="tns:RemoteShop.setOrderStatusRequestType"/>
|
2304
|
+
<xsd:element name="RemoteShop.setOrderStatusResponse" type="tns:RemoteShop.setOrderStatusResponseType"/>
|
2305
|
+
</xsd:schema>
|
2306
|
+
</types>
|
2307
|
+
<message name="RemoteMarket.getServicesRequest">
|
2308
|
+
<part name="parameters" element="tns:RemoteMarket.getServices" /></message>
|
2309
|
+
<message name="RemoteMarket.getServicesResponse">
|
2310
|
+
<part name="parameters" element="tns:RemoteMarket.getServicesResponse" /></message>
|
2311
|
+
<message name="RemoteMarket.getFirmInfoRequest">
|
2312
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmInfo" /></message>
|
2313
|
+
<message name="RemoteMarket.getFirmInfoResponse">
|
2314
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmInfoResponse" /></message>
|
2315
|
+
<message name="RemoteMarket.getFirmPropertiesRequest">
|
2316
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmProperties" /></message>
|
2317
|
+
<message name="RemoteMarket.getFirmPropertiesResponse">
|
2318
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmPropertiesResponse" /></message>
|
2319
|
+
<message name="RemoteMarket.getClassifierRowsRequest">
|
2320
|
+
<part name="parameters" element="tns:RemoteMarket.getClassifierRows" /></message>
|
2321
|
+
<message name="RemoteMarket.getClassifierRowsResponse">
|
2322
|
+
<part name="parameters" element="tns:RemoteMarket.getClassifierRowsResponse" /></message>
|
2323
|
+
<message name="RemoteMarket.getModifiedClassifierRowsRequest">
|
2324
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedClassifierRows" /></message>
|
2325
|
+
<message name="RemoteMarket.getModifiedClassifierRowsResponse">
|
2326
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedClassifierRowsResponse" /></message>
|
2327
|
+
<message name="RemoteMarket.updateUserRequest">
|
2328
|
+
<part name="parameters" element="tns:RemoteMarket.updateUser" /></message>
|
2329
|
+
<message name="RemoteMarket.updateUserResponse">
|
2330
|
+
<part name="parameters" element="tns:RemoteMarket.updateUserResponse" /></message>
|
2331
|
+
<message name="RemoteMarket.getUserRequest">
|
2332
|
+
<part name="parameters" element="tns:RemoteMarket.getUser" /></message>
|
2333
|
+
<message name="RemoteMarket.getUserResponse">
|
2334
|
+
<part name="parameters" element="tns:RemoteMarket.getUserResponse" /></message>
|
2335
|
+
<message name="RemoteMarket.deleteUserRequest">
|
2336
|
+
<part name="parameters" element="tns:RemoteMarket.deleteUser" /></message>
|
2337
|
+
<message name="RemoteMarket.deleteUserResponse">
|
2338
|
+
<part name="parameters" element="tns:RemoteMarket.deleteUserResponse" /></message>
|
2339
|
+
<message name="RemoteMarket.getUsersIdsRequest">
|
2340
|
+
<part name="parameters" element="tns:RemoteMarket.getUsersIds" /></message>
|
2341
|
+
<message name="RemoteMarket.getUsersIdsResponse">
|
2342
|
+
<part name="parameters" element="tns:RemoteMarket.getUsersIdsResponse" /></message>
|
2343
|
+
<message name="RemoteMarket.updateDepartmentRequest">
|
2344
|
+
<part name="parameters" element="tns:RemoteMarket.updateDepartment" /></message>
|
2345
|
+
<message name="RemoteMarket.updateDepartmentResponse">
|
2346
|
+
<part name="parameters" element="tns:RemoteMarket.updateDepartmentResponse" /></message>
|
2347
|
+
<message name="RemoteMarket.getDepartmentRequest">
|
2348
|
+
<part name="parameters" element="tns:RemoteMarket.getDepartment" /></message>
|
2349
|
+
<message name="RemoteMarket.getDepartmentResponse">
|
2350
|
+
<part name="parameters" element="tns:RemoteMarket.getDepartmentResponse" /></message>
|
2351
|
+
<message name="RemoteMarket.deleteDepartmentRequest">
|
2352
|
+
<part name="parameters" element="tns:RemoteMarket.deleteDepartment" /></message>
|
2353
|
+
<message name="RemoteMarket.deleteDepartmentResponse">
|
2354
|
+
<part name="parameters" element="tns:RemoteMarket.deleteDepartmentResponse" /></message>
|
2355
|
+
<message name="RemoteMarket.getDepartmentsIdsRequest">
|
2356
|
+
<part name="parameters" element="tns:RemoteMarket.getDepartmentsIds" /></message>
|
2357
|
+
<message name="RemoteMarket.getDepartmentsIdsResponse">
|
2358
|
+
<part name="parameters" element="tns:RemoteMarket.getDepartmentsIdsResponse" /></message>
|
2359
|
+
<message name="RemoteMarket.getHierarchyFirmsRequest">
|
2360
|
+
<part name="parameters" element="tns:RemoteMarket.getHierarchyFirms" /></message>
|
2361
|
+
<message name="RemoteMarket.getHierarchyFirmsResponse">
|
2362
|
+
<part name="parameters" element="tns:RemoteMarket.getHierarchyFirmsResponse" /></message>
|
2363
|
+
<message name="RemoteMarket.updateAddressRequest">
|
2364
|
+
<part name="parameters" element="tns:RemoteMarket.updateAddress" /></message>
|
2365
|
+
<message name="RemoteMarket.updateAddressResponse">
|
2366
|
+
<part name="parameters" element="tns:RemoteMarket.updateAddressResponse" /></message>
|
2367
|
+
<message name="RemoteMarket.getAddressRequest">
|
2368
|
+
<part name="parameters" element="tns:RemoteMarket.getAddress" /></message>
|
2369
|
+
<message name="RemoteMarket.getAddressResponse">
|
2370
|
+
<part name="parameters" element="tns:RemoteMarket.getAddressResponse" /></message>
|
2371
|
+
<message name="RemoteMarket.deleteAddressRequest">
|
2372
|
+
<part name="parameters" element="tns:RemoteMarket.deleteAddress" /></message>
|
2373
|
+
<message name="RemoteMarket.deleteAddressResponse">
|
2374
|
+
<part name="parameters" element="tns:RemoteMarket.deleteAddressResponse" /></message>
|
2375
|
+
<message name="RemoteMarket.getAddressesIdsRequest">
|
2376
|
+
<part name="parameters" element="tns:RemoteMarket.getAddressesIds" /></message>
|
2377
|
+
<message name="RemoteMarket.getAddressesIdsResponse">
|
2378
|
+
<part name="parameters" element="tns:RemoteMarket.getAddressesIdsResponse" /></message>
|
2379
|
+
<message name="RemoteMarket.getAddressIdByOkatoRequest">
|
2380
|
+
<part name="parameters" element="tns:RemoteMarket.getAddressIdByOkato" /></message>
|
2381
|
+
<message name="RemoteMarket.getAddressIdByOkatoResponse">
|
2382
|
+
<part name="parameters" element="tns:RemoteMarket.getAddressIdByOkatoResponse" /></message>
|
2383
|
+
<message name="RemoteMarket.findFirmRequest">
|
2384
|
+
<part name="parameters" element="tns:RemoteMarket.findFirm" /></message>
|
2385
|
+
<message name="RemoteMarket.findFirmResponse">
|
2386
|
+
<part name="parameters" element="tns:RemoteMarket.findFirmResponse" /></message>
|
2387
|
+
<message name="RemoteMarket.findFirmTendersRequest">
|
2388
|
+
<part name="parameters" element="tns:RemoteMarket.findFirmTenders" /></message>
|
2389
|
+
<message name="RemoteMarket.findFirmTendersResponse">
|
2390
|
+
<part name="parameters" element="tns:RemoteMarket.findFirmTendersResponse" /></message>
|
2391
|
+
<message name="RemoteMarket.getFirmClassifierRequest">
|
2392
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmClassifier" /></message>
|
2393
|
+
<message name="RemoteMarket.getFirmClassifierResponse">
|
2394
|
+
<part name="parameters" element="tns:RemoteMarket.getFirmClassifierResponse" /></message>
|
2395
|
+
<message name="RemoteMarket.getModifiedPurchasesRequest">
|
2396
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedPurchases" /></message>
|
2397
|
+
<message name="RemoteMarket.getModifiedPurchasesResponse">
|
2398
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedPurchasesResponse" /></message>
|
2399
|
+
<message name="RemoteMarket.getModifiedPurchases223fzRequest">
|
2400
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedPurchases223fz" /></message>
|
2401
|
+
<message name="RemoteMarket.getModifiedPurchases223fzResponse">
|
2402
|
+
<part name="parameters" element="tns:RemoteMarket.getModifiedPurchases223fzResponse" /></message>
|
2403
|
+
<message name="RemoteTender.createRequest">
|
2404
|
+
<part name="parameters" element="tns:RemoteTender.create" /></message>
|
2405
|
+
<message name="RemoteTender.createResponse">
|
2406
|
+
<part name="parameters" element="tns:RemoteTender.createResponse" /></message>
|
2407
|
+
<message name="RemoteTender.updateRequest">
|
2408
|
+
<part name="parameters" element="tns:RemoteTender.update" /></message>
|
2409
|
+
<message name="RemoteTender.updateResponse">
|
2410
|
+
<part name="parameters" element="tns:RemoteTender.updateResponse" /></message>
|
2411
|
+
<message name="RemoteTender.getDataRequest">
|
2412
|
+
<part name="parameters" element="tns:RemoteTender.getData" /></message>
|
2413
|
+
<message name="RemoteTender.getDataResponse">
|
2414
|
+
<part name="parameters" element="tns:RemoteTender.getDataResponse" /></message>
|
2415
|
+
<message name="RemoteTender.startRequest">
|
2416
|
+
<part name="parameters" element="tns:RemoteTender.start" /></message>
|
2417
|
+
<message name="RemoteTender.startResponse">
|
2418
|
+
<part name="parameters" element="tns:RemoteTender.startResponse" /></message>
|
2419
|
+
<message name="RemoteTender.uploadDocRequest">
|
2420
|
+
<part name="parameters" element="tns:RemoteTender.uploadDoc" /></message>
|
2421
|
+
<message name="RemoteTender.uploadDocResponse">
|
2422
|
+
<part name="parameters" element="tns:RemoteTender.uploadDocResponse" /></message>
|
2423
|
+
<message name="RemoteTender.uploadDocsRequest">
|
2424
|
+
<part name="parameters" element="tns:RemoteTender.uploadDocs" /></message>
|
2425
|
+
<message name="RemoteTender.uploadDocsResponse">
|
2426
|
+
<part name="parameters" element="tns:RemoteTender.uploadDocsResponse" /></message>
|
2427
|
+
<message name="RemoteTender.getParticipantsRequest">
|
2428
|
+
<part name="parameters" element="tns:RemoteTender.getParticipants" /></message>
|
2429
|
+
<message name="RemoteTender.getParticipantsResponse">
|
2430
|
+
<part name="parameters" element="tns:RemoteTender.getParticipantsResponse" /></message>
|
2431
|
+
<message name="RemoteTender.getOfferRequest">
|
2432
|
+
<part name="parameters" element="tns:RemoteTender.getOffer" /></message>
|
2433
|
+
<message name="RemoteTender.getOfferResponse">
|
2434
|
+
<part name="parameters" element="tns:RemoteTender.getOfferResponse" /></message>
|
2435
|
+
<message name="RemoteTender.getLotResultRequest">
|
2436
|
+
<part name="parameters" element="tns:RemoteTender.getLotResult" /></message>
|
2437
|
+
<message name="RemoteTender.getLotResultResponse">
|
2438
|
+
<part name="parameters" element="tns:RemoteTender.getLotResultResponse" /></message>
|
2439
|
+
<message name="RemoteTender.setUnsealingProtocolRequest">
|
2440
|
+
<part name="parameters" element="tns:RemoteTender.setUnsealingProtocol" /></message>
|
2441
|
+
<message name="RemoteTender.setUnsealingProtocolResponse">
|
2442
|
+
<part name="parameters" element="tns:RemoteTender.setUnsealingProtocolResponse" /></message>
|
2443
|
+
<message name="RemoteTender.setProtocolRequest">
|
2444
|
+
<part name="parameters" element="tns:RemoteTender.setProtocol" /></message>
|
2445
|
+
<message name="RemoteTender.setProtocolResponse">
|
2446
|
+
<part name="parameters" element="tns:RemoteTender.setProtocolResponse" /></message>
|
2447
|
+
<message name="RemoteTender.getProtocolRequest">
|
2448
|
+
<part name="parameters" element="tns:RemoteTender.getProtocol" /></message>
|
2449
|
+
<message name="RemoteTender.getProtocolResponse">
|
2450
|
+
<part name="parameters" element="tns:RemoteTender.getProtocolResponse" /></message>
|
2451
|
+
<message name="RemoteTender.sendProtocolRequest">
|
2452
|
+
<part name="parameters" element="tns:RemoteTender.sendProtocol" /></message>
|
2453
|
+
<message name="RemoteTender.sendProtocolResponse">
|
2454
|
+
<part name="parameters" element="tns:RemoteTender.sendProtocolResponse" /></message>
|
2455
|
+
<message name="RemoteTender.deleteRequest">
|
2456
|
+
<part name="parameters" element="tns:RemoteTender.delete" /></message>
|
2457
|
+
<message name="RemoteTender.deleteResponse">
|
2458
|
+
<part name="parameters" element="tns:RemoteTender.deleteResponse" /></message>
|
2459
|
+
<message name="RemoteTender.getDocRequest">
|
2460
|
+
<part name="parameters" element="tns:RemoteTender.getDoc" /></message>
|
2461
|
+
<message name="RemoteTender.getDocResponse">
|
2462
|
+
<part name="parameters" element="tns:RemoteTender.getDocResponse" /></message>
|
2463
|
+
<message name="RemoteTender.getDocAsFileRequest">
|
2464
|
+
<part name="parameters" element="tns:RemoteTender.getDocAsFile" /></message>
|
2465
|
+
<message name="RemoteTender.getDocAsFileResponse">
|
2466
|
+
<part name="parameters" element="tns:RemoteTender.getDocAsFileResponse" /></message>
|
2467
|
+
<message name="RemoteTender.signRequest">
|
2468
|
+
<part name="parameters" element="tns:RemoteTender.sign" /></message>
|
2469
|
+
<message name="RemoteTender.signResponse">
|
2470
|
+
<part name="parameters" element="tns:RemoteTender.signResponse" /></message>
|
2471
|
+
<message name="RemoteTender.getIdsRequest">
|
2472
|
+
<part name="parameters" element="tns:RemoteTender.getIds" /></message>
|
2473
|
+
<message name="RemoteTender.getIdsResponse">
|
2474
|
+
<part name="parameters" element="tns:RemoteTender.getIdsResponse" /></message>
|
2475
|
+
<message name="RemoteTender.getHagglingStatusRequest">
|
2476
|
+
<part name="parameters" element="tns:RemoteTender.getHagglingStatus" /></message>
|
2477
|
+
<message name="RemoteTender.getHagglingStatusResponse">
|
2478
|
+
<part name="parameters" element="tns:RemoteTender.getHagglingStatusResponse" /></message>
|
2479
|
+
<message name="RemoteTender.getHagglingFileRequest">
|
2480
|
+
<part name="parameters" element="tns:RemoteTender.getHagglingFile" /></message>
|
2481
|
+
<message name="RemoteTender.getHagglingFileResponse">
|
2482
|
+
<part name="parameters" element="tns:RemoteTender.getHagglingFileResponse" /></message>
|
2483
|
+
<message name="RemoteTender.createExplanationRequest">
|
2484
|
+
<part name="parameters" element="tns:RemoteTender.createExplanation" /></message>
|
2485
|
+
<message name="RemoteTender.createExplanationResponse">
|
2486
|
+
<part name="parameters" element="tns:RemoteTender.createExplanationResponse" /></message>
|
2487
|
+
<message name="RemoteTender.getListExplanationRequest">
|
2488
|
+
<part name="parameters" element="tns:RemoteTender.getListExplanation" /></message>
|
2489
|
+
<message name="RemoteTender.getListExplanationResponse">
|
2490
|
+
<part name="parameters" element="tns:RemoteTender.getListExplanationResponse" /></message>
|
2491
|
+
<message name="RemoteTender.answerExplanationRequest">
|
2492
|
+
<part name="parameters" element="tns:RemoteTender.answerExplanation" /></message>
|
2493
|
+
<message name="RemoteTender.answerExplanationResponse">
|
2494
|
+
<part name="parameters" element="tns:RemoteTender.answerExplanationResponse" /></message>
|
2495
|
+
<message name="RemoteTender.getLotsStatusRequest">
|
2496
|
+
<part name="parameters" element="tns:RemoteTender.getLotsStatus" /></message>
|
2497
|
+
<message name="RemoteTender.getLotsStatusResponse">
|
2498
|
+
<part name="parameters" element="tns:RemoteTender.getLotsStatusResponse" /></message>
|
2499
|
+
<message name="RemoteTender.getWorksheetsRequest">
|
2500
|
+
<part name="parameters" element="tns:RemoteTender.getWorksheets" /></message>
|
2501
|
+
<message name="RemoteTender.getWorksheetsResponse">
|
2502
|
+
<part name="parameters" element="tns:RemoteTender.getWorksheetsResponse" /></message>
|
2503
|
+
<message name="RemoteTender.getCancelDataRequest">
|
2504
|
+
<part name="parameters" element="tns:RemoteTender.getCancelData" /></message>
|
2505
|
+
<message name="RemoteTender.getCancelDataResponse">
|
2506
|
+
<part name="parameters" element="tns:RemoteTender.getCancelDataResponse" /></message>
|
2507
|
+
<message name="RemoteTender.getPublicationDateRequest">
|
2508
|
+
<part name="parameters" element="tns:RemoteTender.getPublicationDate" /></message>
|
2509
|
+
<message name="RemoteTender.getPublicationDateResponse">
|
2510
|
+
<part name="parameters" element="tns:RemoteTender.getPublicationDateResponse" /></message>
|
2511
|
+
<message name="RemoteTender.getRegisteredFirmsRequest">
|
2512
|
+
<part name="parameters" element="tns:RemoteTender.getRegisteredFirms" /></message>
|
2513
|
+
<message name="RemoteTender.getRegisteredFirmsResponse">
|
2514
|
+
<part name="parameters" element="tns:RemoteTender.getRegisteredFirmsResponse" /></message>
|
2515
|
+
<message name="RemoteAuction.createRequest">
|
2516
|
+
<part name="parameters" element="tns:RemoteAuction.create" /></message>
|
2517
|
+
<message name="RemoteAuction.createResponse">
|
2518
|
+
<part name="parameters" element="tns:RemoteAuction.createResponse" /></message>
|
2519
|
+
<message name="RemoteAuction.updateRequest">
|
2520
|
+
<part name="parameters" element="tns:RemoteAuction.update" /></message>
|
2521
|
+
<message name="RemoteAuction.updateResponse">
|
2522
|
+
<part name="parameters" element="tns:RemoteAuction.updateResponse" /></message>
|
2523
|
+
<message name="RemoteAuction.setPositionsRequest">
|
2524
|
+
<part name="parameters" element="tns:RemoteAuction.setPositions" /></message>
|
2525
|
+
<message name="RemoteAuction.setPositionsResponse">
|
2526
|
+
<part name="parameters" element="tns:RemoteAuction.setPositionsResponse" /></message>
|
2527
|
+
<message name="RemoteAuction.setPositionGroupsRequest">
|
2528
|
+
<part name="parameters" element="tns:RemoteAuction.setPositionGroups" /></message>
|
2529
|
+
<message name="RemoteAuction.setPositionGroupsResponse">
|
2530
|
+
<part name="parameters" element="tns:RemoteAuction.setPositionGroupsResponse" /></message>
|
2531
|
+
<message name="RemoteAuction.clearPositionsRequest">
|
2532
|
+
<part name="parameters" element="tns:RemoteAuction.clearPositions" /></message>
|
2533
|
+
<message name="RemoteAuction.clearPositionsResponse">
|
2534
|
+
<part name="parameters" element="tns:RemoteAuction.clearPositionsResponse" /></message>
|
2535
|
+
<message name="RemoteAuction.setOffersFieldsRequest">
|
2536
|
+
<part name="parameters" element="tns:RemoteAuction.setOffersFields" /></message>
|
2537
|
+
<message name="RemoteAuction.setOffersFieldsResponse">
|
2538
|
+
<part name="parameters" element="tns:RemoteAuction.setOffersFieldsResponse" /></message>
|
2539
|
+
<message name="RemoteAuction.addOffersFieldsRequest">
|
2540
|
+
<part name="parameters" element="tns:RemoteAuction.addOffersFields" /></message>
|
2541
|
+
<message name="RemoteAuction.addOffersFieldsResponse">
|
2542
|
+
<part name="parameters" element="tns:RemoteAuction.addOffersFieldsResponse" /></message>
|
2543
|
+
<message name="RemoteAuction.clearOffersFieldsRequest">
|
2544
|
+
<part name="parameters" element="tns:RemoteAuction.clearOffersFields" /></message>
|
2545
|
+
<message name="RemoteAuction.clearOffersFieldsResponse">
|
2546
|
+
<part name="parameters" element="tns:RemoteAuction.clearOffersFieldsResponse" /></message>
|
2547
|
+
<message name="RemoteAuction.getDataRequest">
|
2548
|
+
<part name="parameters" element="tns:RemoteAuction.getData" /></message>
|
2549
|
+
<message name="RemoteAuction.getDataResponse">
|
2550
|
+
<part name="parameters" element="tns:RemoteAuction.getDataResponse" /></message>
|
2551
|
+
<message name="RemoteAuction.deleteRequest">
|
2552
|
+
<part name="parameters" element="tns:RemoteAuction.delete" /></message>
|
2553
|
+
<message name="RemoteAuction.deleteResponse">
|
2554
|
+
<part name="parameters" element="tns:RemoteAuction.deleteResponse" /></message>
|
2555
|
+
<message name="RemoteAuction.publishRequest">
|
2556
|
+
<part name="parameters" element="tns:RemoteAuction.publish" /></message>
|
2557
|
+
<message name="RemoteAuction.publishResponse">
|
2558
|
+
<part name="parameters" element="tns:RemoteAuction.publishResponse" /></message>
|
2559
|
+
<message name="RemoteAuction.uploadDocRequest">
|
2560
|
+
<part name="parameters" element="tns:RemoteAuction.uploadDoc" /></message>
|
2561
|
+
<message name="RemoteAuction.uploadDocResponse">
|
2562
|
+
<part name="parameters" element="tns:RemoteAuction.uploadDocResponse" /></message>
|
2563
|
+
<message name="RemoteAuction.uploadDocsRequest">
|
2564
|
+
<part name="parameters" element="tns:RemoteAuction.uploadDocs" /></message>
|
2565
|
+
<message name="RemoteAuction.uploadDocsResponse">
|
2566
|
+
<part name="parameters" element="tns:RemoteAuction.uploadDocsResponse" /></message>
|
2567
|
+
<message name="RemoteAuction.getParticipantsRequest">
|
2568
|
+
<part name="parameters" element="tns:RemoteAuction.getParticipants" /></message>
|
2569
|
+
<message name="RemoteAuction.getParticipantsResponse">
|
2570
|
+
<part name="parameters" element="tns:RemoteAuction.getParticipantsResponse" /></message>
|
2571
|
+
<message name="RemoteAuction.getOfferRequest">
|
2572
|
+
<part name="parameters" element="tns:RemoteAuction.getOffer" /></message>
|
2573
|
+
<message name="RemoteAuction.getOfferResponse">
|
2574
|
+
<part name="parameters" element="tns:RemoteAuction.getOfferResponse" /></message>
|
2575
|
+
<message name="RemoteAuction.getOffersHistoryRequest">
|
2576
|
+
<part name="parameters" element="tns:RemoteAuction.getOffersHistory" /></message>
|
2577
|
+
<message name="RemoteAuction.getOffersHistoryResponse">
|
2578
|
+
<part name="parameters" element="tns:RemoteAuction.getOffersHistoryResponse" /></message>
|
2579
|
+
<message name="RemoteAuction.getBetRequest">
|
2580
|
+
<part name="parameters" element="tns:RemoteAuction.getBet" /></message>
|
2581
|
+
<message name="RemoteAuction.getBetResponse">
|
2582
|
+
<part name="parameters" element="tns:RemoteAuction.getBetResponse" /></message>
|
2583
|
+
<message name="RemoteAuction.getIdsRequest">
|
2584
|
+
<part name="parameters" element="tns:RemoteAuction.getIds" /></message>
|
2585
|
+
<message name="RemoteAuction.getIdsResponse">
|
2586
|
+
<part name="parameters" element="tns:RemoteAuction.getIdsResponse" /></message>
|
2587
|
+
<message name="RemoteAuction.getDocRequest">
|
2588
|
+
<part name="parameters" element="tns:RemoteAuction.getDoc" /></message>
|
2589
|
+
<message name="RemoteAuction.getDocResponse">
|
2590
|
+
<part name="parameters" element="tns:RemoteAuction.getDocResponse" /></message>
|
2591
|
+
<message name="RemoteAuction.getDocAsFileRequest">
|
2592
|
+
<part name="parameters" element="tns:RemoteAuction.getDocAsFile" /></message>
|
2593
|
+
<message name="RemoteAuction.getDocAsFileResponse">
|
2594
|
+
<part name="parameters" element="tns:RemoteAuction.getDocAsFileResponse" /></message>
|
2595
|
+
<message name="RemoteAuction.signRequest">
|
2596
|
+
<part name="parameters" element="tns:RemoteAuction.sign" /></message>
|
2597
|
+
<message name="RemoteAuction.signResponse">
|
2598
|
+
<part name="parameters" element="tns:RemoteAuction.signResponse" /></message>
|
2599
|
+
<message name="RemoteAuction.setProtocolRequest">
|
2600
|
+
<part name="parameters" element="tns:RemoteAuction.setProtocol" /></message>
|
2601
|
+
<message name="RemoteAuction.setProtocolResponse">
|
2602
|
+
<part name="parameters" element="tns:RemoteAuction.setProtocolResponse" /></message>
|
2603
|
+
<message name="RemoteAuction.getProtocolRequest">
|
2604
|
+
<part name="parameters" element="tns:RemoteAuction.getProtocol" /></message>
|
2605
|
+
<message name="RemoteAuction.getProtocolResponse">
|
2606
|
+
<part name="parameters" element="tns:RemoteAuction.getProtocolResponse" /></message>
|
2607
|
+
<message name="RemoteAuction.getStatusRequest">
|
2608
|
+
<part name="parameters" element="tns:RemoteAuction.getStatus" /></message>
|
2609
|
+
<message name="RemoteAuction.getStatusResponse">
|
2610
|
+
<part name="parameters" element="tns:RemoteAuction.getStatusResponse" /></message>
|
2611
|
+
<message name="RemoteAuction.findParticipantAuctionsRequest">
|
2612
|
+
<part name="parameters" element="tns:RemoteAuction.findParticipantAuctions" /></message>
|
2613
|
+
<message name="RemoteAuction.findParticipantAuctionsResponse">
|
2614
|
+
<part name="parameters" element="tns:RemoteAuction.findParticipantAuctionsResponse" /></message>
|
2615
|
+
<message name="RemoteAuction.createExplanationRequest">
|
2616
|
+
<part name="parameters" element="tns:RemoteAuction.createExplanation" /></message>
|
2617
|
+
<message name="RemoteAuction.createExplanationResponse">
|
2618
|
+
<part name="parameters" element="tns:RemoteAuction.createExplanationResponse" /></message>
|
2619
|
+
<message name="RemoteAuction.getListExplanationRequest">
|
2620
|
+
<part name="parameters" element="tns:RemoteAuction.getListExplanation" /></message>
|
2621
|
+
<message name="RemoteAuction.getListExplanationResponse">
|
2622
|
+
<part name="parameters" element="tns:RemoteAuction.getListExplanationResponse" /></message>
|
2623
|
+
<message name="RemoteAuction.answerExplanationRequest">
|
2624
|
+
<part name="parameters" element="tns:RemoteAuction.answerExplanation" /></message>
|
2625
|
+
<message name="RemoteAuction.answerExplanationResponse">
|
2626
|
+
<part name="parameters" element="tns:RemoteAuction.answerExplanationResponse" /></message>
|
2627
|
+
<message name="RemoteAuction.setWinnersRequest">
|
2628
|
+
<part name="parameters" element="tns:RemoteAuction.setWinners" /></message>
|
2629
|
+
<message name="RemoteAuction.setWinnersResponse">
|
2630
|
+
<part name="parameters" element="tns:RemoteAuction.setWinnersResponse" /></message>
|
2631
|
+
<message name="RemoteAuction.confirmResultsProtocolRequest">
|
2632
|
+
<part name="parameters" element="tns:RemoteAuction.confirmResultsProtocol" /></message>
|
2633
|
+
<message name="RemoteAuction.confirmResultsProtocolResponse">
|
2634
|
+
<part name="parameters" element="tns:RemoteAuction.confirmResultsProtocolResponse" /></message>
|
2635
|
+
<message name="RemoteAuction.getWorksheetsRequest">
|
2636
|
+
<part name="parameters" element="tns:RemoteAuction.getWorksheets" /></message>
|
2637
|
+
<message name="RemoteAuction.getWorksheetsResponse">
|
2638
|
+
<part name="parameters" element="tns:RemoteAuction.getWorksheetsResponse" /></message>
|
2639
|
+
<message name="RemoteAuction.getCancelDataRequest">
|
2640
|
+
<part name="parameters" element="tns:RemoteAuction.getCancelData" /></message>
|
2641
|
+
<message name="RemoteAuction.getCancelDataResponse">
|
2642
|
+
<part name="parameters" element="tns:RemoteAuction.getCancelDataResponse" /></message>
|
2643
|
+
<message name="RemoteAuction.getPublicationDateRequest">
|
2644
|
+
<part name="parameters" element="tns:RemoteAuction.getPublicationDate" /></message>
|
2645
|
+
<message name="RemoteAuction.getPublicationDateResponse">
|
2646
|
+
<part name="parameters" element="tns:RemoteAuction.getPublicationDateResponse" /></message>
|
2647
|
+
<message name="RemoteAuction.getRegisteredFirmsRequest">
|
2648
|
+
<part name="parameters" element="tns:RemoteAuction.getRegisteredFirms" /></message>
|
2649
|
+
<message name="RemoteAuction.getRegisteredFirmsResponse">
|
2650
|
+
<part name="parameters" element="tns:RemoteAuction.getRegisteredFirmsResponse" /></message>
|
2651
|
+
<message name="RemoteGuarantees.getLimitsRequest">
|
2652
|
+
<part name="parameters" element="tns:RemoteGuarantees.getLimits" /></message>
|
2653
|
+
<message name="RemoteGuarantees.getLimitsResponse">
|
2654
|
+
<part name="parameters" element="tns:RemoteGuarantees.getLimitsResponse" /></message>
|
2655
|
+
<message name="RemoteGuarantees.getGuaranteesRequest">
|
2656
|
+
<part name="parameters" element="tns:RemoteGuarantees.getGuarantees" /></message>
|
2657
|
+
<message name="RemoteGuarantees.getGuaranteesResponse">
|
2658
|
+
<part name="parameters" element="tns:RemoteGuarantees.getGuaranteesResponse" /></message>
|
2659
|
+
<message name="RemoteShop.getOrdersRequest">
|
2660
|
+
<part name="parameters" element="tns:RemoteShop.getOrders" /></message>
|
2661
|
+
<message name="RemoteShop.getOrdersResponse">
|
2662
|
+
<part name="parameters" element="tns:RemoteShop.getOrdersResponse" /></message>
|
2663
|
+
<message name="RemoteShop.updateCustomersRequest">
|
2664
|
+
<part name="parameters" element="tns:RemoteShop.updateCustomers" /></message>
|
2665
|
+
<message name="RemoteShop.updateCustomersResponse">
|
2666
|
+
<part name="parameters" element="tns:RemoteShop.updateCustomersResponse" /></message>
|
2667
|
+
<message name="RemoteShop.updateContractsRequest">
|
2668
|
+
<part name="parameters" element="tns:RemoteShop.updateContracts" /></message>
|
2669
|
+
<message name="RemoteShop.updateContractsResponse">
|
2670
|
+
<part name="parameters" element="tns:RemoteShop.updateContractsResponse" /></message>
|
2671
|
+
<message name="RemoteShop.updatePriceListsRequest">
|
2672
|
+
<part name="parameters" element="tns:RemoteShop.updatePriceLists" /></message>
|
2673
|
+
<message name="RemoteShop.updatePriceListsResponse">
|
2674
|
+
<part name="parameters" element="tns:RemoteShop.updatePriceListsResponse" /></message>
|
2675
|
+
<message name="RemoteShop.updateConsigneesRequest">
|
2676
|
+
<part name="parameters" element="tns:RemoteShop.updateConsignees" /></message>
|
2677
|
+
<message name="RemoteShop.updateConsigneesResponse">
|
2678
|
+
<part name="parameters" element="tns:RemoteShop.updateConsigneesResponse" /></message>
|
2679
|
+
<message name="RemoteShop.setOrderStatusRequest">
|
2680
|
+
<part name="parameters" element="tns:RemoteShop.setOrderStatus" /></message>
|
2681
|
+
<message name="RemoteShop.setOrderStatusResponse">
|
2682
|
+
<part name="parameters" element="tns:RemoteShop.setOrderStatusResponse" /></message>
|
2683
|
+
<portType name="wsPortType">
|
2684
|
+
<operation name="RemoteMarket.getServices">
|
2685
|
+
<input message="tns:RemoteMarket.getServicesRequest"/>
|
2686
|
+
<output message="tns:RemoteMarket.getServicesResponse"/>
|
2687
|
+
</operation>
|
2688
|
+
<operation name="RemoteMarket.getFirmInfo">
|
2689
|
+
<input message="tns:RemoteMarket.getFirmInfoRequest"/>
|
2690
|
+
<output message="tns:RemoteMarket.getFirmInfoResponse"/>
|
2691
|
+
</operation>
|
2692
|
+
<operation name="RemoteMarket.getFirmProperties">
|
2693
|
+
<input message="tns:RemoteMarket.getFirmPropertiesRequest"/>
|
2694
|
+
<output message="tns:RemoteMarket.getFirmPropertiesResponse"/>
|
2695
|
+
</operation>
|
2696
|
+
<operation name="RemoteMarket.getClassifierRows">
|
2697
|
+
<input message="tns:RemoteMarket.getClassifierRowsRequest"/>
|
2698
|
+
<output message="tns:RemoteMarket.getClassifierRowsResponse"/>
|
2699
|
+
</operation>
|
2700
|
+
<operation name="RemoteMarket.getModifiedClassifierRows">
|
2701
|
+
<input message="tns:RemoteMarket.getModifiedClassifierRowsRequest"/>
|
2702
|
+
<output message="tns:RemoteMarket.getModifiedClassifierRowsResponse"/>
|
2703
|
+
</operation>
|
2704
|
+
<operation name="RemoteMarket.updateUser">
|
2705
|
+
<input message="tns:RemoteMarket.updateUserRequest"/>
|
2706
|
+
<output message="tns:RemoteMarket.updateUserResponse"/>
|
2707
|
+
</operation>
|
2708
|
+
<operation name="RemoteMarket.getUser">
|
2709
|
+
<input message="tns:RemoteMarket.getUserRequest"/>
|
2710
|
+
<output message="tns:RemoteMarket.getUserResponse"/>
|
2711
|
+
</operation>
|
2712
|
+
<operation name="RemoteMarket.deleteUser">
|
2713
|
+
<input message="tns:RemoteMarket.deleteUserRequest"/>
|
2714
|
+
<output message="tns:RemoteMarket.deleteUserResponse"/>
|
2715
|
+
</operation>
|
2716
|
+
<operation name="RemoteMarket.getUsersIds">
|
2717
|
+
<input message="tns:RemoteMarket.getUsersIdsRequest"/>
|
2718
|
+
<output message="tns:RemoteMarket.getUsersIdsResponse"/>
|
2719
|
+
</operation>
|
2720
|
+
<operation name="RemoteMarket.updateDepartment">
|
2721
|
+
<input message="tns:RemoteMarket.updateDepartmentRequest"/>
|
2722
|
+
<output message="tns:RemoteMarket.updateDepartmentResponse"/>
|
2723
|
+
</operation>
|
2724
|
+
<operation name="RemoteMarket.getDepartment">
|
2725
|
+
<input message="tns:RemoteMarket.getDepartmentRequest"/>
|
2726
|
+
<output message="tns:RemoteMarket.getDepartmentResponse"/>
|
2727
|
+
</operation>
|
2728
|
+
<operation name="RemoteMarket.deleteDepartment">
|
2729
|
+
<input message="tns:RemoteMarket.deleteDepartmentRequest"/>
|
2730
|
+
<output message="tns:RemoteMarket.deleteDepartmentResponse"/>
|
2731
|
+
</operation>
|
2732
|
+
<operation name="RemoteMarket.getDepartmentsIds">
|
2733
|
+
<input message="tns:RemoteMarket.getDepartmentsIdsRequest"/>
|
2734
|
+
<output message="tns:RemoteMarket.getDepartmentsIdsResponse"/>
|
2735
|
+
</operation>
|
2736
|
+
<operation name="RemoteMarket.getHierarchyFirms">
|
2737
|
+
<input message="tns:RemoteMarket.getHierarchyFirmsRequest"/>
|
2738
|
+
<output message="tns:RemoteMarket.getHierarchyFirmsResponse"/>
|
2739
|
+
</operation>
|
2740
|
+
<operation name="RemoteMarket.updateAddress">
|
2741
|
+
<input message="tns:RemoteMarket.updateAddressRequest"/>
|
2742
|
+
<output message="tns:RemoteMarket.updateAddressResponse"/>
|
2743
|
+
</operation>
|
2744
|
+
<operation name="RemoteMarket.getAddress">
|
2745
|
+
<input message="tns:RemoteMarket.getAddressRequest"/>
|
2746
|
+
<output message="tns:RemoteMarket.getAddressResponse"/>
|
2747
|
+
</operation>
|
2748
|
+
<operation name="RemoteMarket.deleteAddress">
|
2749
|
+
<input message="tns:RemoteMarket.deleteAddressRequest"/>
|
2750
|
+
<output message="tns:RemoteMarket.deleteAddressResponse"/>
|
2751
|
+
</operation>
|
2752
|
+
<operation name="RemoteMarket.getAddressesIds">
|
2753
|
+
<input message="tns:RemoteMarket.getAddressesIdsRequest"/>
|
2754
|
+
<output message="tns:RemoteMarket.getAddressesIdsResponse"/>
|
2755
|
+
</operation>
|
2756
|
+
<operation name="RemoteMarket.getAddressIdByOkato">
|
2757
|
+
<input message="tns:RemoteMarket.getAddressIdByOkatoRequest"/>
|
2758
|
+
<output message="tns:RemoteMarket.getAddressIdByOkatoResponse"/>
|
2759
|
+
</operation>
|
2760
|
+
<operation name="RemoteMarket.findFirm">
|
2761
|
+
<input message="tns:RemoteMarket.findFirmRequest"/>
|
2762
|
+
<output message="tns:RemoteMarket.findFirmResponse"/>
|
2763
|
+
</operation>
|
2764
|
+
<operation name="RemoteMarket.findFirmTenders">
|
2765
|
+
<input message="tns:RemoteMarket.findFirmTendersRequest"/>
|
2766
|
+
<output message="tns:RemoteMarket.findFirmTendersResponse"/>
|
2767
|
+
</operation>
|
2768
|
+
<operation name="RemoteMarket.getFirmClassifier">
|
2769
|
+
<input message="tns:RemoteMarket.getFirmClassifierRequest"/>
|
2770
|
+
<output message="tns:RemoteMarket.getFirmClassifierResponse"/>
|
2771
|
+
</operation>
|
2772
|
+
<operation name="RemoteMarket.getModifiedPurchases">
|
2773
|
+
<input message="tns:RemoteMarket.getModifiedPurchasesRequest"/>
|
2774
|
+
<output message="tns:RemoteMarket.getModifiedPurchasesResponse"/>
|
2775
|
+
</operation>
|
2776
|
+
<operation name="RemoteMarket.getModifiedPurchases223fz">
|
2777
|
+
<input message="tns:RemoteMarket.getModifiedPurchases223fzRequest"/>
|
2778
|
+
<output message="tns:RemoteMarket.getModifiedPurchases223fzResponse"/>
|
2779
|
+
</operation>
|
2780
|
+
<operation name="RemoteTender.create">
|
2781
|
+
<input message="tns:RemoteTender.createRequest"/>
|
2782
|
+
<output message="tns:RemoteTender.createResponse"/>
|
2783
|
+
</operation>
|
2784
|
+
<operation name="RemoteTender.update">
|
2785
|
+
<input message="tns:RemoteTender.updateRequest"/>
|
2786
|
+
<output message="tns:RemoteTender.updateResponse"/>
|
2787
|
+
</operation>
|
2788
|
+
<operation name="RemoteTender.getData">
|
2789
|
+
<input message="tns:RemoteTender.getDataRequest"/>
|
2790
|
+
<output message="tns:RemoteTender.getDataResponse"/>
|
2791
|
+
</operation>
|
2792
|
+
<operation name="RemoteTender.start">
|
2793
|
+
<input message="tns:RemoteTender.startRequest"/>
|
2794
|
+
<output message="tns:RemoteTender.startResponse"/>
|
2795
|
+
</operation>
|
2796
|
+
<operation name="RemoteTender.uploadDoc">
|
2797
|
+
<input message="tns:RemoteTender.uploadDocRequest"/>
|
2798
|
+
<output message="tns:RemoteTender.uploadDocResponse"/>
|
2799
|
+
</operation>
|
2800
|
+
<operation name="RemoteTender.uploadDocs">
|
2801
|
+
<input message="tns:RemoteTender.uploadDocsRequest"/>
|
2802
|
+
<output message="tns:RemoteTender.uploadDocsResponse"/>
|
2803
|
+
</operation>
|
2804
|
+
<operation name="RemoteTender.getParticipants">
|
2805
|
+
<input message="tns:RemoteTender.getParticipantsRequest"/>
|
2806
|
+
<output message="tns:RemoteTender.getParticipantsResponse"/>
|
2807
|
+
</operation>
|
2808
|
+
<operation name="RemoteTender.getOffer">
|
2809
|
+
<input message="tns:RemoteTender.getOfferRequest"/>
|
2810
|
+
<output message="tns:RemoteTender.getOfferResponse"/>
|
2811
|
+
</operation>
|
2812
|
+
<operation name="RemoteTender.getLotResult">
|
2813
|
+
<input message="tns:RemoteTender.getLotResultRequest"/>
|
2814
|
+
<output message="tns:RemoteTender.getLotResultResponse"/>
|
2815
|
+
</operation>
|
2816
|
+
<operation name="RemoteTender.setUnsealingProtocol">
|
2817
|
+
<input message="tns:RemoteTender.setUnsealingProtocolRequest"/>
|
2818
|
+
<output message="tns:RemoteTender.setUnsealingProtocolResponse"/>
|
2819
|
+
</operation>
|
2820
|
+
<operation name="RemoteTender.setProtocol">
|
2821
|
+
<input message="tns:RemoteTender.setProtocolRequest"/>
|
2822
|
+
<output message="tns:RemoteTender.setProtocolResponse"/>
|
2823
|
+
</operation>
|
2824
|
+
<operation name="RemoteTender.getProtocol">
|
2825
|
+
<input message="tns:RemoteTender.getProtocolRequest"/>
|
2826
|
+
<output message="tns:RemoteTender.getProtocolResponse"/>
|
2827
|
+
</operation>
|
2828
|
+
<operation name="RemoteTender.sendProtocol">
|
2829
|
+
<input message="tns:RemoteTender.sendProtocolRequest"/>
|
2830
|
+
<output message="tns:RemoteTender.sendProtocolResponse"/>
|
2831
|
+
</operation>
|
2832
|
+
<operation name="RemoteTender.delete">
|
2833
|
+
<input message="tns:RemoteTender.deleteRequest"/>
|
2834
|
+
<output message="tns:RemoteTender.deleteResponse"/>
|
2835
|
+
</operation>
|
2836
|
+
<operation name="RemoteTender.getDoc">
|
2837
|
+
<input message="tns:RemoteTender.getDocRequest"/>
|
2838
|
+
<output message="tns:RemoteTender.getDocResponse"/>
|
2839
|
+
</operation>
|
2840
|
+
<operation name="RemoteTender.getDocAsFile">
|
2841
|
+
<input message="tns:RemoteTender.getDocAsFileRequest"/>
|
2842
|
+
<output message="tns:RemoteTender.getDocAsFileResponse"/>
|
2843
|
+
</operation>
|
2844
|
+
<operation name="RemoteTender.sign">
|
2845
|
+
<input message="tns:RemoteTender.signRequest"/>
|
2846
|
+
<output message="tns:RemoteTender.signResponse"/>
|
2847
|
+
</operation>
|
2848
|
+
<operation name="RemoteTender.getIds">
|
2849
|
+
<input message="tns:RemoteTender.getIdsRequest"/>
|
2850
|
+
<output message="tns:RemoteTender.getIdsResponse"/>
|
2851
|
+
</operation>
|
2852
|
+
<operation name="RemoteTender.getHagglingStatus">
|
2853
|
+
<input message="tns:RemoteTender.getHagglingStatusRequest"/>
|
2854
|
+
<output message="tns:RemoteTender.getHagglingStatusResponse"/>
|
2855
|
+
</operation>
|
2856
|
+
<operation name="RemoteTender.getHagglingFile">
|
2857
|
+
<input message="tns:RemoteTender.getHagglingFileRequest"/>
|
2858
|
+
<output message="tns:RemoteTender.getHagglingFileResponse"/>
|
2859
|
+
</operation>
|
2860
|
+
<operation name="RemoteTender.createExplanation">
|
2861
|
+
<input message="tns:RemoteTender.createExplanationRequest"/>
|
2862
|
+
<output message="tns:RemoteTender.createExplanationResponse"/>
|
2863
|
+
</operation>
|
2864
|
+
<operation name="RemoteTender.getListExplanation">
|
2865
|
+
<input message="tns:RemoteTender.getListExplanationRequest"/>
|
2866
|
+
<output message="tns:RemoteTender.getListExplanationResponse"/>
|
2867
|
+
</operation>
|
2868
|
+
<operation name="RemoteTender.answerExplanation">
|
2869
|
+
<input message="tns:RemoteTender.answerExplanationRequest"/>
|
2870
|
+
<output message="tns:RemoteTender.answerExplanationResponse"/>
|
2871
|
+
</operation>
|
2872
|
+
<operation name="RemoteTender.getLotsStatus">
|
2873
|
+
<input message="tns:RemoteTender.getLotsStatusRequest"/>
|
2874
|
+
<output message="tns:RemoteTender.getLotsStatusResponse"/>
|
2875
|
+
</operation>
|
2876
|
+
<operation name="RemoteTender.getWorksheets">
|
2877
|
+
<input message="tns:RemoteTender.getWorksheetsRequest"/>
|
2878
|
+
<output message="tns:RemoteTender.getWorksheetsResponse"/>
|
2879
|
+
</operation>
|
2880
|
+
<operation name="RemoteTender.getCancelData">
|
2881
|
+
<input message="tns:RemoteTender.getCancelDataRequest"/>
|
2882
|
+
<output message="tns:RemoteTender.getCancelDataResponse"/>
|
2883
|
+
</operation>
|
2884
|
+
<operation name="RemoteTender.getPublicationDate">
|
2885
|
+
<input message="tns:RemoteTender.getPublicationDateRequest"/>
|
2886
|
+
<output message="tns:RemoteTender.getPublicationDateResponse"/>
|
2887
|
+
</operation>
|
2888
|
+
<operation name="RemoteTender.getRegisteredFirms">
|
2889
|
+
<input message="tns:RemoteTender.getRegisteredFirmsRequest"/>
|
2890
|
+
<output message="tns:RemoteTender.getRegisteredFirmsResponse"/>
|
2891
|
+
</operation>
|
2892
|
+
<operation name="RemoteAuction.create">
|
2893
|
+
<input message="tns:RemoteAuction.createRequest"/>
|
2894
|
+
<output message="tns:RemoteAuction.createResponse"/>
|
2895
|
+
</operation>
|
2896
|
+
<operation name="RemoteAuction.update">
|
2897
|
+
<input message="tns:RemoteAuction.updateRequest"/>
|
2898
|
+
<output message="tns:RemoteAuction.updateResponse"/>
|
2899
|
+
</operation>
|
2900
|
+
<operation name="RemoteAuction.setPositions">
|
2901
|
+
<input message="tns:RemoteAuction.setPositionsRequest"/>
|
2902
|
+
<output message="tns:RemoteAuction.setPositionsResponse"/>
|
2903
|
+
</operation>
|
2904
|
+
<operation name="RemoteAuction.setPositionGroups">
|
2905
|
+
<input message="tns:RemoteAuction.setPositionGroupsRequest"/>
|
2906
|
+
<output message="tns:RemoteAuction.setPositionGroupsResponse"/>
|
2907
|
+
</operation>
|
2908
|
+
<operation name="RemoteAuction.clearPositions">
|
2909
|
+
<input message="tns:RemoteAuction.clearPositionsRequest"/>
|
2910
|
+
<output message="tns:RemoteAuction.clearPositionsResponse"/>
|
2911
|
+
</operation>
|
2912
|
+
<operation name="RemoteAuction.setOffersFields">
|
2913
|
+
<input message="tns:RemoteAuction.setOffersFieldsRequest"/>
|
2914
|
+
<output message="tns:RemoteAuction.setOffersFieldsResponse"/>
|
2915
|
+
</operation>
|
2916
|
+
<operation name="RemoteAuction.addOffersFields">
|
2917
|
+
<input message="tns:RemoteAuction.addOffersFieldsRequest"/>
|
2918
|
+
<output message="tns:RemoteAuction.addOffersFieldsResponse"/>
|
2919
|
+
</operation>
|
2920
|
+
<operation name="RemoteAuction.clearOffersFields">
|
2921
|
+
<input message="tns:RemoteAuction.clearOffersFieldsRequest"/>
|
2922
|
+
<output message="tns:RemoteAuction.clearOffersFieldsResponse"/>
|
2923
|
+
</operation>
|
2924
|
+
<operation name="RemoteAuction.getData">
|
2925
|
+
<input message="tns:RemoteAuction.getDataRequest"/>
|
2926
|
+
<output message="tns:RemoteAuction.getDataResponse"/>
|
2927
|
+
</operation>
|
2928
|
+
<operation name="RemoteAuction.delete">
|
2929
|
+
<input message="tns:RemoteAuction.deleteRequest"/>
|
2930
|
+
<output message="tns:RemoteAuction.deleteResponse"/>
|
2931
|
+
</operation>
|
2932
|
+
<operation name="RemoteAuction.publish">
|
2933
|
+
<input message="tns:RemoteAuction.publishRequest"/>
|
2934
|
+
<output message="tns:RemoteAuction.publishResponse"/>
|
2935
|
+
</operation>
|
2936
|
+
<operation name="RemoteAuction.uploadDoc">
|
2937
|
+
<input message="tns:RemoteAuction.uploadDocRequest"/>
|
2938
|
+
<output message="tns:RemoteAuction.uploadDocResponse"/>
|
2939
|
+
</operation>
|
2940
|
+
<operation name="RemoteAuction.uploadDocs">
|
2941
|
+
<input message="tns:RemoteAuction.uploadDocsRequest"/>
|
2942
|
+
<output message="tns:RemoteAuction.uploadDocsResponse"/>
|
2943
|
+
</operation>
|
2944
|
+
<operation name="RemoteAuction.getParticipants">
|
2945
|
+
<input message="tns:RemoteAuction.getParticipantsRequest"/>
|
2946
|
+
<output message="tns:RemoteAuction.getParticipantsResponse"/>
|
2947
|
+
</operation>
|
2948
|
+
<operation name="RemoteAuction.getOffer">
|
2949
|
+
<input message="tns:RemoteAuction.getOfferRequest"/>
|
2950
|
+
<output message="tns:RemoteAuction.getOfferResponse"/>
|
2951
|
+
</operation>
|
2952
|
+
<operation name="RemoteAuction.getOffersHistory">
|
2953
|
+
<input message="tns:RemoteAuction.getOffersHistoryRequest"/>
|
2954
|
+
<output message="tns:RemoteAuction.getOffersHistoryResponse"/>
|
2955
|
+
</operation>
|
2956
|
+
<operation name="RemoteAuction.getBet">
|
2957
|
+
<input message="tns:RemoteAuction.getBetRequest"/>
|
2958
|
+
<output message="tns:RemoteAuction.getBetResponse"/>
|
2959
|
+
</operation>
|
2960
|
+
<operation name="RemoteAuction.getIds">
|
2961
|
+
<input message="tns:RemoteAuction.getIdsRequest"/>
|
2962
|
+
<output message="tns:RemoteAuction.getIdsResponse"/>
|
2963
|
+
</operation>
|
2964
|
+
<operation name="RemoteAuction.getDoc">
|
2965
|
+
<input message="tns:RemoteAuction.getDocRequest"/>
|
2966
|
+
<output message="tns:RemoteAuction.getDocResponse"/>
|
2967
|
+
</operation>
|
2968
|
+
<operation name="RemoteAuction.getDocAsFile">
|
2969
|
+
<input message="tns:RemoteAuction.getDocAsFileRequest"/>
|
2970
|
+
<output message="tns:RemoteAuction.getDocAsFileResponse"/>
|
2971
|
+
</operation>
|
2972
|
+
<operation name="RemoteAuction.sign">
|
2973
|
+
<input message="tns:RemoteAuction.signRequest"/>
|
2974
|
+
<output message="tns:RemoteAuction.signResponse"/>
|
2975
|
+
</operation>
|
2976
|
+
<operation name="RemoteAuction.setProtocol">
|
2977
|
+
<input message="tns:RemoteAuction.setProtocolRequest"/>
|
2978
|
+
<output message="tns:RemoteAuction.setProtocolResponse"/>
|
2979
|
+
</operation>
|
2980
|
+
<operation name="RemoteAuction.getProtocol">
|
2981
|
+
<input message="tns:RemoteAuction.getProtocolRequest"/>
|
2982
|
+
<output message="tns:RemoteAuction.getProtocolResponse"/>
|
2983
|
+
</operation>
|
2984
|
+
<operation name="RemoteAuction.getStatus">
|
2985
|
+
<input message="tns:RemoteAuction.getStatusRequest"/>
|
2986
|
+
<output message="tns:RemoteAuction.getStatusResponse"/>
|
2987
|
+
</operation>
|
2988
|
+
<operation name="RemoteAuction.findParticipantAuctions">
|
2989
|
+
<input message="tns:RemoteAuction.findParticipantAuctionsRequest"/>
|
2990
|
+
<output message="tns:RemoteAuction.findParticipantAuctionsResponse"/>
|
2991
|
+
</operation>
|
2992
|
+
<operation name="RemoteAuction.createExplanation">
|
2993
|
+
<input message="tns:RemoteAuction.createExplanationRequest"/>
|
2994
|
+
<output message="tns:RemoteAuction.createExplanationResponse"/>
|
2995
|
+
</operation>
|
2996
|
+
<operation name="RemoteAuction.getListExplanation">
|
2997
|
+
<input message="tns:RemoteAuction.getListExplanationRequest"/>
|
2998
|
+
<output message="tns:RemoteAuction.getListExplanationResponse"/>
|
2999
|
+
</operation>
|
3000
|
+
<operation name="RemoteAuction.answerExplanation">
|
3001
|
+
<input message="tns:RemoteAuction.answerExplanationRequest"/>
|
3002
|
+
<output message="tns:RemoteAuction.answerExplanationResponse"/>
|
3003
|
+
</operation>
|
3004
|
+
<operation name="RemoteAuction.setWinners">
|
3005
|
+
<input message="tns:RemoteAuction.setWinnersRequest"/>
|
3006
|
+
<output message="tns:RemoteAuction.setWinnersResponse"/>
|
3007
|
+
</operation>
|
3008
|
+
<operation name="RemoteAuction.confirmResultsProtocol">
|
3009
|
+
<input message="tns:RemoteAuction.confirmResultsProtocolRequest"/>
|
3010
|
+
<output message="tns:RemoteAuction.confirmResultsProtocolResponse"/>
|
3011
|
+
</operation>
|
3012
|
+
<operation name="RemoteAuction.getWorksheets">
|
3013
|
+
<input message="tns:RemoteAuction.getWorksheetsRequest"/>
|
3014
|
+
<output message="tns:RemoteAuction.getWorksheetsResponse"/>
|
3015
|
+
</operation>
|
3016
|
+
<operation name="RemoteAuction.getCancelData">
|
3017
|
+
<input message="tns:RemoteAuction.getCancelDataRequest"/>
|
3018
|
+
<output message="tns:RemoteAuction.getCancelDataResponse"/>
|
3019
|
+
</operation>
|
3020
|
+
<operation name="RemoteAuction.getPublicationDate">
|
3021
|
+
<input message="tns:RemoteAuction.getPublicationDateRequest"/>
|
3022
|
+
<output message="tns:RemoteAuction.getPublicationDateResponse"/>
|
3023
|
+
</operation>
|
3024
|
+
<operation name="RemoteAuction.getRegisteredFirms">
|
3025
|
+
<input message="tns:RemoteAuction.getRegisteredFirmsRequest"/>
|
3026
|
+
<output message="tns:RemoteAuction.getRegisteredFirmsResponse"/>
|
3027
|
+
</operation>
|
3028
|
+
<operation name="RemoteGuarantees.getLimits">
|
3029
|
+
<input message="tns:RemoteGuarantees.getLimitsRequest"/>
|
3030
|
+
<output message="tns:RemoteGuarantees.getLimitsResponse"/>
|
3031
|
+
</operation>
|
3032
|
+
<operation name="RemoteGuarantees.getGuarantees">
|
3033
|
+
<input message="tns:RemoteGuarantees.getGuaranteesRequest"/>
|
3034
|
+
<output message="tns:RemoteGuarantees.getGuaranteesResponse"/>
|
3035
|
+
</operation>
|
3036
|
+
<operation name="RemoteShop.getOrders">
|
3037
|
+
<input message="tns:RemoteShop.getOrdersRequest"/>
|
3038
|
+
<output message="tns:RemoteShop.getOrdersResponse"/>
|
3039
|
+
</operation>
|
3040
|
+
<operation name="RemoteShop.updateCustomers">
|
3041
|
+
<input message="tns:RemoteShop.updateCustomersRequest"/>
|
3042
|
+
<output message="tns:RemoteShop.updateCustomersResponse"/>
|
3043
|
+
</operation>
|
3044
|
+
<operation name="RemoteShop.updateContracts">
|
3045
|
+
<input message="tns:RemoteShop.updateContractsRequest"/>
|
3046
|
+
<output message="tns:RemoteShop.updateContractsResponse"/>
|
3047
|
+
</operation>
|
3048
|
+
<operation name="RemoteShop.updatePriceLists">
|
3049
|
+
<input message="tns:RemoteShop.updatePriceListsRequest"/>
|
3050
|
+
<output message="tns:RemoteShop.updatePriceListsResponse"/>
|
3051
|
+
</operation>
|
3052
|
+
<operation name="RemoteShop.updateConsignees">
|
3053
|
+
<input message="tns:RemoteShop.updateConsigneesRequest"/>
|
3054
|
+
<output message="tns:RemoteShop.updateConsigneesResponse"/>
|
3055
|
+
</operation>
|
3056
|
+
<operation name="RemoteShop.setOrderStatus">
|
3057
|
+
<input message="tns:RemoteShop.setOrderStatusRequest"/>
|
3058
|
+
<output message="tns:RemoteShop.setOrderStatusResponse"/>
|
3059
|
+
</operation>
|
3060
|
+
</portType>
|
3061
|
+
<binding name="wsBinding" type="tns:wsPortType">
|
3062
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3063
|
+
<operation name="RemoteMarket.getServices">
|
3064
|
+
<soap:operation soapAction="urn:ws#getServices" style="document"/>
|
3065
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3066
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3067
|
+
</operation>
|
3068
|
+
<operation name="RemoteMarket.getFirmInfo">
|
3069
|
+
<soap:operation soapAction="urn:ws#getFirmInfo" style="document"/>
|
3070
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3071
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3072
|
+
</operation>
|
3073
|
+
<operation name="RemoteMarket.getFirmProperties">
|
3074
|
+
<soap:operation soapAction="urn:ws#getFirmProperties" style="document"/>
|
3075
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3076
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3077
|
+
</operation>
|
3078
|
+
<operation name="RemoteMarket.getClassifierRows">
|
3079
|
+
<soap:operation soapAction="urn:ws#getClassifierRows" style="document"/>
|
3080
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3081
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3082
|
+
</operation>
|
3083
|
+
<operation name="RemoteMarket.getModifiedClassifierRows">
|
3084
|
+
<soap:operation soapAction="urn:ws#getModifiedClassifierRows" style="document"/>
|
3085
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3086
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3087
|
+
</operation>
|
3088
|
+
<operation name="RemoteMarket.updateUser">
|
3089
|
+
<soap:operation soapAction="urn:ws#updateUser" style="document"/>
|
3090
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3091
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3092
|
+
</operation>
|
3093
|
+
<operation name="RemoteMarket.getUser">
|
3094
|
+
<soap:operation soapAction="urn:ws#getUser" style="document"/>
|
3095
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3096
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3097
|
+
</operation>
|
3098
|
+
<operation name="RemoteMarket.deleteUser">
|
3099
|
+
<soap:operation soapAction="urn:ws#deleteUser" style="document"/>
|
3100
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3101
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3102
|
+
</operation>
|
3103
|
+
<operation name="RemoteMarket.getUsersIds">
|
3104
|
+
<soap:operation soapAction="urn:ws#getUsersIds" style="document"/>
|
3105
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3106
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3107
|
+
</operation>
|
3108
|
+
<operation name="RemoteMarket.updateDepartment">
|
3109
|
+
<soap:operation soapAction="urn:ws#updateDepartment" style="document"/>
|
3110
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3111
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3112
|
+
</operation>
|
3113
|
+
<operation name="RemoteMarket.getDepartment">
|
3114
|
+
<soap:operation soapAction="urn:ws#getDepartment" style="document"/>
|
3115
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3116
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3117
|
+
</operation>
|
3118
|
+
<operation name="RemoteMarket.deleteDepartment">
|
3119
|
+
<soap:operation soapAction="urn:ws#deleteDepartment" style="document"/>
|
3120
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3121
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3122
|
+
</operation>
|
3123
|
+
<operation name="RemoteMarket.getDepartmentsIds">
|
3124
|
+
<soap:operation soapAction="urn:ws#getDepartmentsIds" style="document"/>
|
3125
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3126
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3127
|
+
</operation>
|
3128
|
+
<operation name="RemoteMarket.getHierarchyFirms">
|
3129
|
+
<soap:operation soapAction="urn:ws#getHierarchyFirms" style="document"/>
|
3130
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3131
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3132
|
+
</operation>
|
3133
|
+
<operation name="RemoteMarket.updateAddress">
|
3134
|
+
<soap:operation soapAction="urn:ws#updateAddress" style="document"/>
|
3135
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3136
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3137
|
+
</operation>
|
3138
|
+
<operation name="RemoteMarket.getAddress">
|
3139
|
+
<soap:operation soapAction="urn:ws#getAddress" style="document"/>
|
3140
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3141
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3142
|
+
</operation>
|
3143
|
+
<operation name="RemoteMarket.deleteAddress">
|
3144
|
+
<soap:operation soapAction="urn:ws#deleteAddress" style="document"/>
|
3145
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3146
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3147
|
+
</operation>
|
3148
|
+
<operation name="RemoteMarket.getAddressesIds">
|
3149
|
+
<soap:operation soapAction="urn:ws#getAddressesIds" style="document"/>
|
3150
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3151
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3152
|
+
</operation>
|
3153
|
+
<operation name="RemoteMarket.getAddressIdByOkato">
|
3154
|
+
<soap:operation soapAction="urn:ws#getAddressIdByOkato" style="document"/>
|
3155
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3156
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3157
|
+
</operation>
|
3158
|
+
<operation name="RemoteMarket.findFirm">
|
3159
|
+
<soap:operation soapAction="urn:ws#findFirm" style="document"/>
|
3160
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3161
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3162
|
+
</operation>
|
3163
|
+
<operation name="RemoteMarket.findFirmTenders">
|
3164
|
+
<soap:operation soapAction="urn:ws#findFirmTenders" style="document"/>
|
3165
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3166
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3167
|
+
</operation>
|
3168
|
+
<operation name="RemoteMarket.getFirmClassifier">
|
3169
|
+
<soap:operation soapAction="urn:ws#getFirmClassifier" style="document"/>
|
3170
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3171
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3172
|
+
</operation>
|
3173
|
+
<operation name="RemoteMarket.getModifiedPurchases">
|
3174
|
+
<soap:operation soapAction="urn:ws#getModifiedPurchases" style="document"/>
|
3175
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3176
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3177
|
+
</operation>
|
3178
|
+
<operation name="RemoteMarket.getModifiedPurchases223fz">
|
3179
|
+
<soap:operation soapAction="urn:ws#getModifiedPurchases223fz" style="document"/>
|
3180
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3181
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3182
|
+
</operation>
|
3183
|
+
<operation name="RemoteTender.create">
|
3184
|
+
<soap:operation soapAction="urn:ws#create" style="document"/>
|
3185
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3186
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3187
|
+
</operation>
|
3188
|
+
<operation name="RemoteTender.update">
|
3189
|
+
<soap:operation soapAction="urn:ws#update" style="document"/>
|
3190
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3191
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3192
|
+
</operation>
|
3193
|
+
<operation name="RemoteTender.getData">
|
3194
|
+
<soap:operation soapAction="urn:ws#getData" style="document"/>
|
3195
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3196
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3197
|
+
</operation>
|
3198
|
+
<operation name="RemoteTender.start">
|
3199
|
+
<soap:operation soapAction="urn:ws#start" style="document"/>
|
3200
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3201
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3202
|
+
</operation>
|
3203
|
+
<operation name="RemoteTender.uploadDoc">
|
3204
|
+
<soap:operation soapAction="urn:ws#uploadDoc" style="document"/>
|
3205
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3206
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3207
|
+
</operation>
|
3208
|
+
<operation name="RemoteTender.uploadDocs">
|
3209
|
+
<soap:operation soapAction="urn:ws#uploadDocs" style="document"/>
|
3210
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3211
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3212
|
+
</operation>
|
3213
|
+
<operation name="RemoteTender.getParticipants">
|
3214
|
+
<soap:operation soapAction="urn:ws#getParticipants" style="document"/>
|
3215
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3216
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3217
|
+
</operation>
|
3218
|
+
<operation name="RemoteTender.getOffer">
|
3219
|
+
<soap:operation soapAction="urn:ws#getOffer" style="document"/>
|
3220
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3221
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3222
|
+
</operation>
|
3223
|
+
<operation name="RemoteTender.getLotResult">
|
3224
|
+
<soap:operation soapAction="urn:ws#getLotResult" style="document"/>
|
3225
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3226
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3227
|
+
</operation>
|
3228
|
+
<operation name="RemoteTender.setUnsealingProtocol">
|
3229
|
+
<soap:operation soapAction="urn:ws#setUnsealingProtocol" style="document"/>
|
3230
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3231
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3232
|
+
</operation>
|
3233
|
+
<operation name="RemoteTender.setProtocol">
|
3234
|
+
<soap:operation soapAction="urn:ws#setProtocol" style="document"/>
|
3235
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3236
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3237
|
+
</operation>
|
3238
|
+
<operation name="RemoteTender.getProtocol">
|
3239
|
+
<soap:operation soapAction="urn:ws#getProtocol" style="document"/>
|
3240
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3241
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3242
|
+
</operation>
|
3243
|
+
<operation name="RemoteTender.sendProtocol">
|
3244
|
+
<soap:operation soapAction="urn:ws#sendProtocol" style="document"/>
|
3245
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3246
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3247
|
+
</operation>
|
3248
|
+
<operation name="RemoteTender.delete">
|
3249
|
+
<soap:operation soapAction="urn:ws#delete" style="document"/>
|
3250
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3251
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3252
|
+
</operation>
|
3253
|
+
<operation name="RemoteTender.getDoc">
|
3254
|
+
<soap:operation soapAction="urn:ws#getDoc" style="document"/>
|
3255
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3256
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3257
|
+
</operation>
|
3258
|
+
<operation name="RemoteTender.getDocAsFile">
|
3259
|
+
<soap:operation soapAction="urn:ws#getDocAsFile" style="document"/>
|
3260
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3261
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3262
|
+
</operation>
|
3263
|
+
<operation name="RemoteTender.sign">
|
3264
|
+
<soap:operation soapAction="urn:ws#sign" style="document"/>
|
3265
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3266
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3267
|
+
</operation>
|
3268
|
+
<operation name="RemoteTender.getIds">
|
3269
|
+
<soap:operation soapAction="urn:ws#getIds" style="document"/>
|
3270
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3271
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3272
|
+
</operation>
|
3273
|
+
<operation name="RemoteTender.getHagglingStatus">
|
3274
|
+
<soap:operation soapAction="urn:ws#getHagglingStatus" style="document"/>
|
3275
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3276
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3277
|
+
</operation>
|
3278
|
+
<operation name="RemoteTender.getHagglingFile">
|
3279
|
+
<soap:operation soapAction="urn:ws#getHagglingFile" style="document"/>
|
3280
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3281
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3282
|
+
</operation>
|
3283
|
+
<operation name="RemoteTender.createExplanation">
|
3284
|
+
<soap:operation soapAction="urn:ws#createExplanation" style="document"/>
|
3285
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3286
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3287
|
+
</operation>
|
3288
|
+
<operation name="RemoteTender.getListExplanation">
|
3289
|
+
<soap:operation soapAction="urn:ws#getListExplanation" style="document"/>
|
3290
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3291
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3292
|
+
</operation>
|
3293
|
+
<operation name="RemoteTender.answerExplanation">
|
3294
|
+
<soap:operation soapAction="urn:ws#answerExplanation" style="document"/>
|
3295
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3296
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3297
|
+
</operation>
|
3298
|
+
<operation name="RemoteTender.getLotsStatus">
|
3299
|
+
<soap:operation soapAction="urn:ws#getLotsStatus" style="document"/>
|
3300
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3301
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3302
|
+
</operation>
|
3303
|
+
<operation name="RemoteTender.getWorksheets">
|
3304
|
+
<soap:operation soapAction="urn:ws#getWorksheets" style="document"/>
|
3305
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3306
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3307
|
+
</operation>
|
3308
|
+
<operation name="RemoteTender.getCancelData">
|
3309
|
+
<soap:operation soapAction="urn:ws#getCancelData" style="document"/>
|
3310
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3311
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3312
|
+
</operation>
|
3313
|
+
<operation name="RemoteTender.getPublicationDate">
|
3314
|
+
<soap:operation soapAction="urn:ws#getPublicationDate" style="document"/>
|
3315
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3316
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3317
|
+
</operation>
|
3318
|
+
<operation name="RemoteTender.getRegisteredFirms">
|
3319
|
+
<soap:operation soapAction="urn:ws#getRegisteredFirms" style="document"/>
|
3320
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3321
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3322
|
+
</operation>
|
3323
|
+
<operation name="RemoteAuction.create">
|
3324
|
+
<soap:operation soapAction="urn:ws#create" style="document"/>
|
3325
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3326
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3327
|
+
</operation>
|
3328
|
+
<operation name="RemoteAuction.update">
|
3329
|
+
<soap:operation soapAction="urn:ws#update" style="document"/>
|
3330
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3331
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3332
|
+
</operation>
|
3333
|
+
<operation name="RemoteAuction.setPositions">
|
3334
|
+
<soap:operation soapAction="urn:ws#setPositions" style="document"/>
|
3335
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3336
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3337
|
+
</operation>
|
3338
|
+
<operation name="RemoteAuction.setPositionGroups">
|
3339
|
+
<soap:operation soapAction="urn:ws#setPositionGroups" style="document"/>
|
3340
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3341
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3342
|
+
</operation>
|
3343
|
+
<operation name="RemoteAuction.clearPositions">
|
3344
|
+
<soap:operation soapAction="urn:ws#clearPositions" style="document"/>
|
3345
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3346
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3347
|
+
</operation>
|
3348
|
+
<operation name="RemoteAuction.setOffersFields">
|
3349
|
+
<soap:operation soapAction="urn:ws#setOffersFields" style="document"/>
|
3350
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3351
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3352
|
+
</operation>
|
3353
|
+
<operation name="RemoteAuction.addOffersFields">
|
3354
|
+
<soap:operation soapAction="urn:ws#addOffersFields" style="document"/>
|
3355
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3356
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3357
|
+
</operation>
|
3358
|
+
<operation name="RemoteAuction.clearOffersFields">
|
3359
|
+
<soap:operation soapAction="urn:ws#clearOffersFields" style="document"/>
|
3360
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3361
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3362
|
+
</operation>
|
3363
|
+
<operation name="RemoteAuction.getData">
|
3364
|
+
<soap:operation soapAction="urn:ws#getData" style="document"/>
|
3365
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3366
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3367
|
+
</operation>
|
3368
|
+
<operation name="RemoteAuction.delete">
|
3369
|
+
<soap:operation soapAction="urn:ws#delete" style="document"/>
|
3370
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3371
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3372
|
+
</operation>
|
3373
|
+
<operation name="RemoteAuction.publish">
|
3374
|
+
<soap:operation soapAction="urn:ws#publish" style="document"/>
|
3375
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3376
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3377
|
+
</operation>
|
3378
|
+
<operation name="RemoteAuction.uploadDoc">
|
3379
|
+
<soap:operation soapAction="urn:ws#uploadDoc" style="document"/>
|
3380
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3381
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3382
|
+
</operation>
|
3383
|
+
<operation name="RemoteAuction.uploadDocs">
|
3384
|
+
<soap:operation soapAction="urn:ws#uploadDocs" style="document"/>
|
3385
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3386
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3387
|
+
</operation>
|
3388
|
+
<operation name="RemoteAuction.getParticipants">
|
3389
|
+
<soap:operation soapAction="urn:ws#getParticipants" style="document"/>
|
3390
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3391
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3392
|
+
</operation>
|
3393
|
+
<operation name="RemoteAuction.getOffer">
|
3394
|
+
<soap:operation soapAction="urn:ws#getOffer" style="document"/>
|
3395
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3396
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3397
|
+
</operation>
|
3398
|
+
<operation name="RemoteAuction.getOffersHistory">
|
3399
|
+
<soap:operation soapAction="urn:ws#getOffersHistory" style="document"/>
|
3400
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3401
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3402
|
+
</operation>
|
3403
|
+
<operation name="RemoteAuction.getBet">
|
3404
|
+
<soap:operation soapAction="urn:ws#getBet" style="document"/>
|
3405
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3406
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3407
|
+
</operation>
|
3408
|
+
<operation name="RemoteAuction.getIds">
|
3409
|
+
<soap:operation soapAction="urn:ws#getIds" style="document"/>
|
3410
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3411
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3412
|
+
</operation>
|
3413
|
+
<operation name="RemoteAuction.getDoc">
|
3414
|
+
<soap:operation soapAction="urn:ws#getDoc" style="document"/>
|
3415
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3416
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3417
|
+
</operation>
|
3418
|
+
<operation name="RemoteAuction.getDocAsFile">
|
3419
|
+
<soap:operation soapAction="urn:ws#getDocAsFile" style="document"/>
|
3420
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3421
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3422
|
+
</operation>
|
3423
|
+
<operation name="RemoteAuction.sign">
|
3424
|
+
<soap:operation soapAction="urn:ws#sign" style="document"/>
|
3425
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3426
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3427
|
+
</operation>
|
3428
|
+
<operation name="RemoteAuction.setProtocol">
|
3429
|
+
<soap:operation soapAction="urn:ws#setProtocol" style="document"/>
|
3430
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3431
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3432
|
+
</operation>
|
3433
|
+
<operation name="RemoteAuction.getProtocol">
|
3434
|
+
<soap:operation soapAction="urn:ws#getProtocol" style="document"/>
|
3435
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3436
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3437
|
+
</operation>
|
3438
|
+
<operation name="RemoteAuction.getStatus">
|
3439
|
+
<soap:operation soapAction="urn:ws#getStatus" style="document"/>
|
3440
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3441
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3442
|
+
</operation>
|
3443
|
+
<operation name="RemoteAuction.findParticipantAuctions">
|
3444
|
+
<soap:operation soapAction="urn:ws#findParticipantAuctions" style="document"/>
|
3445
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3446
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3447
|
+
</operation>
|
3448
|
+
<operation name="RemoteAuction.createExplanation">
|
3449
|
+
<soap:operation soapAction="urn:ws#createExplanation" style="document"/>
|
3450
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3451
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3452
|
+
</operation>
|
3453
|
+
<operation name="RemoteAuction.getListExplanation">
|
3454
|
+
<soap:operation soapAction="urn:ws#getListExplanation" style="document"/>
|
3455
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3456
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3457
|
+
</operation>
|
3458
|
+
<operation name="RemoteAuction.answerExplanation">
|
3459
|
+
<soap:operation soapAction="urn:ws#answerExplanation" style="document"/>
|
3460
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3461
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3462
|
+
</operation>
|
3463
|
+
<operation name="RemoteAuction.setWinners">
|
3464
|
+
<soap:operation soapAction="urn:ws#setWinners" style="document"/>
|
3465
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3466
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3467
|
+
</operation>
|
3468
|
+
<operation name="RemoteAuction.confirmResultsProtocol">
|
3469
|
+
<soap:operation soapAction="urn:ws#confirmResultsProtocol" style="document"/>
|
3470
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3471
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3472
|
+
</operation>
|
3473
|
+
<operation name="RemoteAuction.getWorksheets">
|
3474
|
+
<soap:operation soapAction="urn:ws#getWorksheets" style="document"/>
|
3475
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3476
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3477
|
+
</operation>
|
3478
|
+
<operation name="RemoteAuction.getCancelData">
|
3479
|
+
<soap:operation soapAction="urn:ws#getCancelData" style="document"/>
|
3480
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3481
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3482
|
+
</operation>
|
3483
|
+
<operation name="RemoteAuction.getPublicationDate">
|
3484
|
+
<soap:operation soapAction="urn:ws#getPublicationDate" style="document"/>
|
3485
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3486
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3487
|
+
</operation>
|
3488
|
+
<operation name="RemoteAuction.getRegisteredFirms">
|
3489
|
+
<soap:operation soapAction="urn:ws#getRegisteredFirms" style="document"/>
|
3490
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3491
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3492
|
+
</operation>
|
3493
|
+
<operation name="RemoteGuarantees.getLimits">
|
3494
|
+
<soap:operation soapAction="urn:ws#getLimits" style="document"/>
|
3495
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3496
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3497
|
+
</operation>
|
3498
|
+
<operation name="RemoteGuarantees.getGuarantees">
|
3499
|
+
<soap:operation soapAction="urn:ws#getGuarantees" style="document"/>
|
3500
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3501
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3502
|
+
</operation>
|
3503
|
+
<operation name="RemoteShop.getOrders">
|
3504
|
+
<soap:operation soapAction="urn:ws#getOrders" style="document"/>
|
3505
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3506
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3507
|
+
</operation>
|
3508
|
+
<operation name="RemoteShop.updateCustomers">
|
3509
|
+
<soap:operation soapAction="urn:ws#updateCustomers" style="document"/>
|
3510
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3511
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3512
|
+
</operation>
|
3513
|
+
<operation name="RemoteShop.updateContracts">
|
3514
|
+
<soap:operation soapAction="urn:ws#updateContracts" style="document"/>
|
3515
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3516
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3517
|
+
</operation>
|
3518
|
+
<operation name="RemoteShop.updatePriceLists">
|
3519
|
+
<soap:operation soapAction="urn:ws#updatePriceLists" style="document"/>
|
3520
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3521
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3522
|
+
</operation>
|
3523
|
+
<operation name="RemoteShop.updateConsignees">
|
3524
|
+
<soap:operation soapAction="urn:ws#updateConsignees" style="document"/>
|
3525
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3526
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3527
|
+
</operation>
|
3528
|
+
<operation name="RemoteShop.setOrderStatus">
|
3529
|
+
<soap:operation soapAction="urn:ws#setOrderStatus" style="document"/>
|
3530
|
+
<input><soap:body use="literal" namespace="urn:ws"/></input>
|
3531
|
+
<output><soap:body use="literal" namespace="urn:ws"/></output>
|
3532
|
+
</operation>
|
3533
|
+
</binding>
|
3534
|
+
<service name="ws">
|
3535
|
+
<port name="wsPort" binding="tns:wsBinding">
|
3536
|
+
<soap:address location="http://demo.b2b-center.ru/market/remote.html"/>
|
3537
|
+
</port>
|
3538
|
+
</service>
|
3539
|
+
</definitions>
|