annotate pkg/soap/erdms/service.go @ 2493:e3487fa9284d octree-diff

Merged default into octree-diff branch.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 04 Mar 2019 11:56:07 +0100
parents 4910bcfab319
children f09f142239a5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1 // This is Free Software under GNU Affero General Public License v >= 3.0
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2 // without warranty, see README.md and license for details.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
3 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
4 // SPDX-License-Identifier: AGPL-3.0-or-later
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
5 // License-Filename: LICENSES/AGPL-3.0.txt
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
6 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
7 // Copyright (C) 2018 by via donau
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
8 // – Österreichische Wasserstraßen-Gesellschaft mbH
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
9 // Software engineering by Intevation GmbH
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
10 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
11 // Author(s):
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
12 // * Sascha L. Teichmann <sascha.teichmann@intevation.de>
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
13
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
14 package erdms
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
15
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
16 import (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
17 "encoding/xml"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
18 "time"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
19
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
20 "gemma.intevation.de/gemma/pkg/soap"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
21 )
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
22
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
23 // adn (dgs goods) internal adn code (unnr + seqnr: to make each adn good unique)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
24 type AdnCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
25
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
26 // adn class and classifications codes
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
27 type AdnClassType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
28
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
29 // adn (dgs) labels applicable for a dgs good
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
30 type AdnLabelType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
31
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
32 // Older CBS (number) code (3 digits) use by statistics organisations (backw comp) but replaced by newer iso 3166 (2 letters).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
33 type CbscountryCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
34
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
35 // iso 6346 container type (code)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
36 type ContIdType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
37
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
38 // containertype textual description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
39 type ContNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
40
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
41 // indication (flag) wheater shiptype code is a single ship or a transport combination
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
42 type CombinationFlagType bool
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
43
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
44 // Country iso 3166 code (2 alpha)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
45 type CountryCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
46
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
47 // Country iso 3166 code (3 alpha)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
48 type CountryCode3Type string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
49
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
50 // Countryname type (name of the country)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
51 type CountryNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
52
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
53 // Country iso 3166 numcode (3 digits)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
54 type CountryIsoNumType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
55
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
56 // techn directive craft type code (eu hull db)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
57 type CraftTypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
58
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
59 // inland cones 0,1,2,3,V (as used for DGS goods and cones calculations)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
60 type ConesType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
61
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
62 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
63 ConesType0 ConesType = "0"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
65 ConesType1 ConesType = "1"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
66
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
67 ConesType2 ConesType = "2"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
68
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
69 ConesType3 ConesType = "3"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
70
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
71 ConesTypeV ConesType = "V"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
72 )
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
73
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
74 // dimension type (length, width, draught etc) in [cm] (no decimals)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
75 type DimType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
76
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
77 // older 2 digit dvk shiptype code (replaced by unrec
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
78 type DvkTypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
79
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
80 // record erased (not actual anymore) flag type
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
81 type ErasedType bool
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
82
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
83 // eri location code type as used for eri_locations
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
84 type ErilocCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
85
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
86 // eri location name type as used in eri_locations
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
87 type ErilocNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
88
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
89 // flags 0,B,V (dang goods indication seagoing vessels)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
90 type FlagsType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
91
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
92 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
93 FlagsType0 FlagsType = "0"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
94
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
95 FlagsTypeB FlagsType = "B"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
96
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
97 FlagsTypeV FlagsType = "V"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
98 )
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
99
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
100 // fairway code (text)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
101 type FwCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
102
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
103 // ADN dangerous goodnames, description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
104 type GoodDgsNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
105
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
106 // non-dangerous goodnames, description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
107 type GoodNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
108
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
109 // ADN dangerous good synonym name,description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
110 type GoodSynType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
111
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
112 // HS code as used by customs
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
113 type HsCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
114
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
115 // hectometre code (hectomere in [hm] (no decimals) on the fairway)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
116 type KmCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
117
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
118 // lastupdate, last modification date time of this record
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
119 type LastupdateType time.Time
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
120
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
121 // one of the supported languages (basic and additional set), based on ISO 639-1
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
122 type LangType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
123
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
124 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
125 LangTypeXX LangType = "%%"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
126
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
127 LangTypeLc LangType = "lc"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
128
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
129 LangTypeNl LangType = "nl"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
130
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
131 LangTypeDe LangType = "de"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
132
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
133 LangTypeFr LangType = "fr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
134
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
135 LangTypeEn LangType = "en"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
136
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
137 LangTypeBg LangType = "bg"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
138
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
139 LangTypeCs LangType = "cs"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
140
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
141 LangTypeDa LangType = "da"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
142
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
143 LangTypeEl LangType = "el"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
144
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
145 LangTypeEs LangType = "es"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
146
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
147 LangTypeEt LangType = "et"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
148
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
149 LangTypeFi LangType = "fi"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
150
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
151 LangTypeHu LangType = "hu"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
152
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
153 LangTypeIt LangType = "it"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
154
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
155 LangTypeLt LangType = "lt"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
156
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
157 LangTypeLv LangType = "lv"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
158
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
159 LangTypePl LangType = "pl"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
160
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
161 LangTypePt LangType = "pt"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
162
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
163 LangTypeRo LangType = "ro"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
164
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
165 LangTypeSk LangType = "sk"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
166
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
167 LangTypeSl LangType = "sl"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
168
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
169 LangTypeSv LangType = "sv"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
170
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
171 LangTypeHr LangType = "hr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
172
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
173 LangTypeRu LangType = "ru"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
174
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
175 LangTypeSr LangType = "sr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
176 )
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
177
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
178 // lat long (WGS decimal [.] coordinates) coordinate type
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
179 type LatlonType float64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
180
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
181 // un locode (2 country + 3 location code)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
182 type LoCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
183
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
184 // Number of possible (departure) exist (routes) for a location
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
185 type LocExitsType int32
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
186
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
187 // VTS/IVS (code)name active in certain area and acting as a reporting point (when departing from that location)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
188 type LocVtsCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
189
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
190 // location type, terminal type (a number indicating type of location,terminal)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
191 type LocTypeType int32
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
192
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
193 // lloyds flag code for a certain country (seagoing)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
194 type LloydsflagType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
195
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
196 // NST code (corresponing nst2007 EU statistics codes for goods).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
197 type NstCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
198
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
199 // NtS (Notices to Skippers) code/Value datatype
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
200 type NtsCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
201
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
202 // NtS name/description (belonging to a ntsCode) datatype
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
203 type NtsNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
204
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
205 // NtS subtype (sub data type, there are several nts tables)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
206 type NtstypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
207
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
208 // ADN dangerous good packing group I, II, III
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
209 type PackGrpType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
210
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
211 // UN rec 21 inner package code
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
212 type PackIdType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
213
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
214 // Un rec 21 inner package name/description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
215 type PackNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
216
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
217 // Password type (belonging to a user, used to identify a user and its role and home country).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
218 type PasswordType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
219
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
220 // quay type (terminals), indicating quay nrs/id's
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
221 type QuayType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
222
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
223 // record counter (nr of records available or in a set)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
224 type RecCountType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
225
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
226 // reftype Type (reftool data reftype, such as: risidx, eri_location, eri_hscode, nts_data)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
227 type ReftypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
228
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
229 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
230 ReftypeTypeRis_idx ReftypeType = "ris_idx"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
231
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
232 ReftypeTypeEri_location ReftypeType = "eri_location"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
233
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
234 ReftypeTypeEri_hscode ReftypeType = "eri_hscode"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
235
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
236 ReftypeTypeEri_adncode ReftypeType = "eri_adncode"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
237
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
238 ReftypeTypeEri_conttype ReftypeType = "eri_conttype"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
239
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
240 ReftypeTypeEri_packtype ReftypeType = "eri_packtype"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
241
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
242 ReftypeTypeEri_shiptype ReftypeType = "eri_shiptype"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
243
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
244 ReftypeTypeEri_country ReftypeType = "eri_country"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
245
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
246 ReftypeTypeNts_barrage ReftypeType = "nts_barrage"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
247
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
248 ReftypeTypeNts_communication ReftypeType = "nts_communication"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
249
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
250 ReftypeTypeNts_country ReftypeType = "nts_country"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
251
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
252 ReftypeTypeNts_direction ReftypeType = "nts_direction"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
253
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
254 ReftypeTypeNts_direction_max ReftypeType = "nts_direction_max"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
255
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
256 ReftypeTypeNts_direction_min ReftypeType = "nts_direction_min"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
257
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
258 ReftypeTypeNts_gui_labels ReftypeType = "nts_gui_labels"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
259
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
260 ReftypeTypeNts_ice_accessibility ReftypeType = "nts_ice_accessibility"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
261
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
262 ReftypeTypeNts_ice_condition ReftypeType = "nts_ice_condition"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
263
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
264 ReftypeTypeNts_ice_classification ReftypeType = "nts_ice_classification"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
265
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
266 ReftypeTypeNts_ice_situation ReftypeType = "nts_ice_situation"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
267
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
268 ReftypeTypeNts_indication ReftypeType = "nts_indication"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
269
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
270 ReftypeTypeNts_interval ReftypeType = "nts_interval"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
271
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
272 ReftypeTypeNts_language ReftypeType = "nts_language"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
273
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
274 ReftypeTypeNts_limitation ReftypeType = "nts_limitation"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
275
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
276 ReftypeTypeNts_measure ReftypeType = "nts_measure"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
277
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
278 ReftypeTypeNts_position ReftypeType = "nts_position"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
279
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
280 ReftypeTypeNts_reason ReftypeType = "nts_reason"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
281
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
282 ReftypeTypeNts_reference ReftypeType = "nts_reference"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
283
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
284 ReftypeTypeNts_regime ReftypeType = "nts_regime"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
285
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
286 ReftypeTypeNts_reporting ReftypeType = "nts_reporting"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
287
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
288 ReftypeTypeNts_subject ReftypeType = "nts_subject"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
289
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
290 ReftypeTypeNts_tag ReftypeType = "nts_tag"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
291
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
292 ReftypeTypeNts_target_group ReftypeType = "nts_target_group"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
293
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
294 ReftypeTypeNts_type ReftypeType = "nts_type"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
295
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
296 ReftypeTypeNts_weather_category ReftypeType = "nts_weather_category"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
297
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
298 ReftypeTypeNts_weather_class ReftypeType = "nts_weather_class"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
299
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
300 ReftypeTypeNts_weather_direction ReftypeType = "nts_weather_direction"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
301
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
302 ReftypeTypeNts_weather_item ReftypeType = "nts_weather_item"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
303 )
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
304
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
305 // RefData record version numbering (automaically, starts with 1 and increments on updates, requesting version 0=dont care)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
306 type RefrecVersionType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
307
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
308 // remarks string (remarks about the maintance of a record or any other remarks)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
309 type RemarksType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
310
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
311 // ris index (ISRS) code type (full ris index code)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
312 type RisCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
313
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
314 // locationames as used in the ris index
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
315 type RislocNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
316
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
317 // ris idx related ENC's type as used in ris idx (list of ENC id's)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
318 type RisrelencType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
319
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
320 // ris idx object code type (single code for a junction, termcode etc padded), subpart of the ris idx.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
321 type RisobjCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
322
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
323 // ris idx communication information TXTDSC
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
324 type RiscomminfoType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
325
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
326 // ris idx object function code type (junction, berths etc)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
327 type RisobjfuncType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
328
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
329 // ris idx section node id
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
330 type RissectnodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
331
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
332 // ris idx national Gauge Code type (can be utilised to store any national coding/id/link for gauges)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
333 type RisgaugeidType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
334
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
335 // ris idx applicability from / to km (in hectometres (no decimals))
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
336 type RisapplikmType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
337
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
338 // ris idx reference level code (indicating the ref level)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
339 type RisreflevelcodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
340
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
341 // ris idx reference level value [cm]
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
342 type RisreflevelvalueType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
343
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
344 // ris idx geod reference
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
345 type RisgeodrefType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
346
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
347 // ris idx zero point [cm]
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
348 type RiszeropointType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
349
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
350 // ris idx category of time schedule (cattab)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
351 type RiscatoftimeschedType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
352
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
353 // ris idx for ship type
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
354 type RisforshiptypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
355
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
356 // ris idx use of ship useshp
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
357 type RisuseofshipType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
358
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
359 // ris idx link to external XML file
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
360 type RislinkextxmlType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
361
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
362 // UNrec 28 shiptype (4 digits)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
363 type ShipTypeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
364
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
365 // shiptype name (textual) description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
366 type ShiptypeNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
367
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
368 // source string, to specify the source of this record/data or the update.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
369 type SourceType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
370
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
371 // ADN signal code (to group dgs for cones/flags calculations)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
372 type SignalCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
373
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
374 // terminal code type (remark: termcode is the only part of eri locs with variable length, historical reasons).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
375 type TermCodeType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
376
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
377 // unlocode countrycode part (first 2 of unlocode) as used in ris idx
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
378 type UnlocCCType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
379
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
380 // unlocode location code part (last 3 of unlocode) as used in ris idx
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
381 type UnlocLCType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
382
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
383 // UN nr (4 digits) adn nr for identifying ADN dangerous goods (according CCNR)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
384 type UnnrType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
385
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
386 // reftool username(reftool accountname) type, to idetify a user and its role.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
387 type UserNameType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
388
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
389 // cargo weight type, integer nr (units [tons], [kg]) depending on element)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
390 type WeightType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
391
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
392 // adn warning (dgs) card id
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
393 type WarnIdType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
394
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
395 // adn warning card
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
396 type WarnCardType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
397
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
398 type MatchByCode struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
399 XMLName xml.Name `xml:"http://rwsreftool/ matchByCode"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
400
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
401 *MatchByCodeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
402 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
403
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
404 type MatchByCodeResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
405 XMLName xml.Name `xml:"http://rwsreftool/ matchByCodeResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
406
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
407 *MatchByCodeResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
408 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
409
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
410 type MatchByName struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
411 XMLName xml.Name `xml:"http://rwsreftool/ matchByName"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
412
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
413 *MatchByNameType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
414 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
415
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
416 type MatchByNameResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
417 XMLName xml.Name `xml:"http://rwsreftool/ matchByNameResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
418
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
419 *MatchByNameResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
420 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
421
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
422 type GetDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
423 XMLName xml.Name `xml:"http://rwsreftool/ getDataXML"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
424
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
425 *GetDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
426 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
427
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
428 type GetDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
429 XMLName xml.Name `xml:"http://rwsreftool/ getDataXMLResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
430
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
431 *GetDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
432 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
433
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
434 type GetMutations struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
435 XMLName xml.Name `xml:"http://rwsreftool/ getMutations"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
436
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
437 *GetMutationsType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
438 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
439
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
440 type GetMutationsResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
441 XMLName xml.Name `xml:"http://rwsreftool/ getMutationsResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
442
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
443 *GetMutationsResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
444 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
445
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
446 type GetRisDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
447 XMLName xml.Name `xml:"http://rwsreftool/ getRisDataXML"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
448
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
449 *GetRisDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
450 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
451
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
452 type GetRisDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
453 XMLName xml.Name `xml:"http://rwsreftool/ getRisDataXMLResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
454
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
455 *GetRisDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
456 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
457
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
458 type MutateDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
459 XMLName xml.Name `xml:"http://rwsreftool/ mutateDataXML"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
460
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
461 *MutateDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
462 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
463
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
464 type MutateDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
465 XMLName xml.Name `xml:"http://rwsreftool/ mutateDataXMLResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
466
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
467 *MutateDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
468 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
469
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
470 type RequestMutationXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
471 XMLName xml.Name `xml:"http://rwsreftool/ requestMutationXML"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
472
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
473 *RequestMutationXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
474 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
475
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
476 type RequestMutationXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
477 XMLName xml.Name `xml:"http://rwsreftool/ requestMutationXMLResponse"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
478
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
479 *RequestMutationXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
480 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
481
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
482 type MatchByCodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
483 XMLName xml.Name `xml:"http://rwsreftool/ matchByCodeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
484
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
485 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
486
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
487 Code string `xml:"code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
488
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
489 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
490 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
491
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
492 type MatchByCodeResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
493 XMLName xml.Name `xml:"http://rwsreftool/ matchByCodeResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
494
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
495 // Indicates how many records are available/were found
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
496 // (due limitations less records can be returned/available in the resulting xml structure).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
497 RecCount *RecCountType `xml:"recCount,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
498
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
499 RefdataReturn []*RefdataReturnType `xml:"refdataReturn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
500 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
501
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
502 type MatchByNameType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
503 XMLName xml.Name `xml:"http://rwsreftool/ matchByNameType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
504
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
505 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
506
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
507 Lang *LangType `xml:"lang,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
508
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
509 Name string `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
510
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
511 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
512 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
513
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
514 type MatchByNameResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
515 XMLName xml.Name `xml:"http://rwsreftool/ matchByNameResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
516
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
517 // Indicates how many records are available/were found
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
518 // (due limitations less records can be returned/available in the resulting xml structure).
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
519 RecCount *RecCountType `xml:"recCount,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
520
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
521 RefdataReturn []*RefdataReturnType `xml:"refdataReturn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
522 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
523
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
524 type GetMutationsType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
525 XMLName xml.Name `xml:"http://rwsreftool/ getMutationsType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
526
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
527 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
528
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
529 // from, to in datetime format in UTC time
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
530 FromDate time.Time `xml:"fromDate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
531
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
532 ToDate time.Time `xml:"toDate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
533 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
534
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
535 type GetMutationsResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
536 XMLName xml.Name `xml:"http://rwsreftool/ getMutationsResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
537
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
538 // Indicate how many records are available/were found.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
539 RecCount *RecCountType `xml:"recCount,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
540
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
541 RefdataReturn []*RefdataReturnType `xml:"refdataReturn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
542 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
543
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
544 type GetDataXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
545 XMLName xml.Name `xml:"http://rwsreftool/ getDataXMLType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
546
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
547 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
548
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
549 Subcode string `xml:"subcode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
550
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
551 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
552 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
553
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
554 type GetDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
555 XMLName xml.Name `xml:"http://rwsreftool/ getDataXMLResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
556
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
557 // Indicates how many records are available/were found.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
558 RecCount *RecCountType `xml:"recCount,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
559
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
560 RefdataReturn []*RefdataReturnType `xml:"refdataReturn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
561 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
562
1812
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
563 // NoNS is a helper type to allow string tags without a namespace.
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
564 type NoNS struct {
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
565 NS string `xml:"xmlns,attr"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
566 Text string `xml:",chardata"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
567 }
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
568
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
569 type GetRisDataXMLType struct {
1812
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
570 // XMLName xml.Name `xml:"http://rwsreftool/ getRisDataXMLType"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
571
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
572 //Subcode string `xml:"subcode,omitempty"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
573 Subcode NoNS `xml:"subcode,omitempty"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
574
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
575 Funcode NoNS `xml:"funcode,omitempty"`
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
576
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
577 Version *RefrecVersionType `xml:"http://rwsreftool/ version,omitempty"`
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
578 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
579
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
580 type GetRisDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
581 XMLName xml.Name `xml:"http://rwsreftool/ getRisDataXMLResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
582
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
583 // Indicates how many records are available/were found.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
584 RecCount *RecCountType `xml:"recCount,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
585
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
586 RisdataReturn []*Ris_idxType `xml:"risdataReturn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
587 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
588
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
589 type MutateDataXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
590 XMLName xml.Name `xml:"http://rwsreftool/ mutateDataXMLType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
591
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
592 Username *UserNameType `xml:"username,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
593
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
594 Password *PasswordType `xml:"password,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
595
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
596 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
597
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
598 RefData *RefdataReturnType `xml:"refData,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
599 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
600
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
601 type MutateDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
602 XMLName xml.Name `xml:"http://rwsreftool/ mutateDataXMLResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
603
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
604 *StatReturnType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
605 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
606
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
607 type RequestMutationXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
608 XMLName xml.Name `xml:"http://rwsreftool/ requestMutationXMLType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
609
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
610 Username *UserNameType `xml:"username,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
611
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
612 Password *PasswordType `xml:"password,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
613
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
614 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
615
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
616 InUserList bool `xml:"inUserList,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
617
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
618 RefDataReqMut *RefdataReqMutType `xml:"refDataReqMut,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
619 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
620
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
621 type RequestMutationXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
622 XMLName xml.Name `xml:"http://rwsreftool/ requestMutationXMLResponseType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
623
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
624 *StatReturnType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
625 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
626
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
627 type ExceptionType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
628 XMLName xml.Name `xml:"http://rwsreftool/ exception"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
629
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
630 // exception code
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
631 Exception int32 `xml:"exception,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
632
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
633 // exception message in English
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
634 Message string `xml:"message,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
635 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
636
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
637 type RefdataReturnType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
638 XMLName xml.Name `xml:"http://rwsreftool/ refdataReturnType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
639
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
640 Reftype struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
641 Value *ReftypeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
642 } `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
643
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
644 Ris_idx *Ris_idxType `xml:"ris_idx,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
645
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
646 Eri_location *Eri_locationType `xml:"eri_location,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
647
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
648 Eri_hscode *Eri_hscodeType `xml:"eri_hscode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
649
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
650 Eri_adncode struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
651 *Eri_adncodeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
652 } `xml:"eri_adncode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
653
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
654 Eri_conttype *Eri_conttypeType `xml:"eri_conttype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
655
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
656 Eri_packtype *Eri_packtypeType `xml:"eri_packtype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
657
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
658 Eri_shiptype *Eri_shiptypeType `xml:"eri_shiptype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
659
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
660 Eri_country *Eri_countryType `xml:"eri_country,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
661
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
662 // NtS element is only available in the return refdata structure.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
663 // It is not available in the Req Mutation datastructure because we can not mutate nts data (not allowed)!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
664 Nts_data *Nts_dataType `xml:"nts_data,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
665 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
666
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
667 type RefdataReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
668 XMLName xml.Name `xml:"http://rwsreftool/ refdataReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
669
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
670 // BE SURE to edit the basic (simple)types, DONT edit any of the subelements from here!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
671 Reftype *ReftypeType `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
672
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
673 Ris_idx *Ris_idxReqMutType `xml:"ris_idx,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
674
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
675 Eri_location *Eri_locationReqMutType `xml:"eri_location,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
676
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
677 Eri_hscode *Eri_hscodeReqMutType `xml:"eri_hscode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
678
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
679 Eri_adncode *Eri_adncodeReqMutType `xml:"eri_adncode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
680
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
681 Eri_conttype *Eri_conttypeReqMutType `xml:"eri_conttype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
682
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
683 Eri_packtype *Eri_packtypeReqMutType `xml:"eri_packtype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
684
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
685 Eri_shiptype *Eri_shiptypeReqMutType `xml:"eri_shiptype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
686
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
687 Eri_country *Eri_countryReqMutType `xml:"eri_country,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
688 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
689
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
690 type StatReturnType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
691 XMLName xml.Name `xml:"http://rwsreftool/ statReturnType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
692
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
693 // 0=ok, 1=warning, 2=error
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
694 Err int32 `xml:"err,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
695
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
696 Message struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
697 } `xml:"message,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
698 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
699
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
700 type Ris_idxType struct {
1812
4910bcfab319 Waterway gauge import: Work around the expected (but nonetheless silly) namespace issues with the SOAP interface.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1810
diff changeset
701 //XMLName xml.Name `xml:"http://rwsreftool/ ris_idxType"`
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
702
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
703 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
704 RisidxCode *RisCodeType `xml:"risidxCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
705
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
706 CodeOld *RisCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
707
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
708 UnlocCC *UnlocCCType `xml:"unlocCC,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
709
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
710 UnlocLC *UnlocLCType `xml:"unlocLC,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
711
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
712 WwsectCode *FwCodeType `xml:"wwsectCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
713
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
714 Objcode *RisobjCodeType `xml:"objcode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
715
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
716 Hectomt *KmCodeType `xml:"hectomt,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
717
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
718 Objfunc *RisobjfuncType `xml:"objfunc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
719
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
720 Objname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
721 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
722 } `xml:"objname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
723
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
724 Locname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
725 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
726 } `xml:"locname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
727
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
728 Wwname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
729 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
730 } `xml:"wwname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
731
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
732 Routename struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
733 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
734 } `xml:"routename,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
735
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
736 Relrisindex *RisCodeType `xml:"relrisindex,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
737
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
738 Sectionnode *RissectnodeType `xml:"sectionnode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
739
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
740 Lat *LatlonType `xml:"lat,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
741
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
742 Lon *LatlonType `xml:"lon,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
743
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
744 Relenc *RisrelencType `xml:"relenc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
745
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
746 Comminfo *RiscomminfoType `xml:"comminfo,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
747
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
748 Gaugeid *RisgaugeidType `xml:"gaugeid,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
749
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
750 Vesselconvlength *DimType `xml:"vesselconvlength,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
751
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
752 Vesselconvbreadth *DimType `xml:"vesselconvbreadth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
753
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
754 Vesselconvdraught *DimType `xml:"vesselconvdraught,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
755
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
756 Vesselconvairdraught *DimType `xml:"vesselconvairdraught,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
757
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
758 Availablelength *DimType `xml:"availablelength,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
759
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
760 Clearancewidth *DimType `xml:"clearancewidth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
761
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
762 Availabledepth *DimType `xml:"availabledepth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
763
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
764 Clearanceheight *DimType `xml:"clearanceheight,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
765
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
766 Applicabilityfromkm *RisapplikmType `xml:"applicabilityfromkm,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
767
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
768 Applicabilitytokm *RisapplikmType `xml:"applicabilitytokm,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
769
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
770 Reflevel1code *RisreflevelcodeType `xml:"reflevel1code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
771
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
772 Reflevel1value *RisreflevelvalueType `xml:"reflevel1value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
773
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
774 Reflevel2code *RisreflevelcodeType `xml:"reflevel2code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
775
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
776 Reflevel2value *RisreflevelvalueType `xml:"reflevel2value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
777
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
778 Reflevel3code *RisreflevelcodeType `xml:"reflevel3code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
779
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
780 Reflevel3value *RisreflevelvalueType `xml:"reflevel3value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
781
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
782 Zeropoint *RiszeropointType `xml:"zeropoint,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
783
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
784 Geodref *RisgeodrefType `xml:"geodref,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
785
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
786 Catoftimesched *RiscatoftimeschedType `xml:"catoftimesched,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
787
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
788 Forshiptype *RisforshiptypeType `xml:"forshiptype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
789
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
790 Foruseofship *RisuseofshipType `xml:"foruseofship,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
791
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
792 LnktoextXMfiletimesched *RislinkextxmlType `xml:"lnktoextXMfiletimesched,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
793
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
794 LnktoextXMfilepastime *RislinkextxmlType `xml:"lnktoextXMfilepastime,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
795
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
796 Vesselconvlength2 *DimType `xml:"vesselconvlength2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
797
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
798 Vesselconvbreadth2 *DimType `xml:"vesselconvbreadth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
800 Vesselconvdraught2 *DimType `xml:"vesselconvdraught2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
801
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
802 Vesselconvairdraught2 *DimType `xml:"vesselconvairdraught2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
803
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
804 Availablelength2 *DimType `xml:"availablelength2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
805
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
806 Clearancewidth2 *DimType `xml:"clearancewidth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
807
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
808 Availabledepth2 *DimType `xml:"availabledepth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
809
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
810 Clearanceheight2 *DimType `xml:"clearanceheight2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
811
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
812 Vesselconvlength3 *DimType `xml:"vesselconvlength3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
813
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
814 Vesselconvbreadth3 *DimType `xml:"vesselconvbreadth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
815
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
816 Vesselconvdraught3 *DimType `xml:"vesselconvdraught3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
817
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
818 Vesselconvairdraught3 *DimType `xml:"vesselconvairdraught3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
819
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
820 Availablelength3 *DimType `xml:"availablelength3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
821
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
822 Clearancewidth3 *DimType `xml:"clearancewidth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
823
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
824 Availabledepth3 *DimType `xml:"availabledepth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
825
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
826 Clearanceheight3 *DimType `xml:"clearanceheight3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
827
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
828 Catoftimesched2 *RiscatoftimeschedType `xml:"catoftimesched2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
829
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
830 Forshiptype2 *RisforshiptypeType `xml:"forshiptype2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
831
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
832 Foruseofship2 *RisuseofshipType `xml:"foruseofship2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
833
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
834 LnktoextXMfiletimesched2 *RislinkextxmlType `xml:"lnktoextXMfiletimesched2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
835
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
836 LnktoextXMfilepastime2 *RislinkextxmlType `xml:"lnktoextXMfilepastime2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
837
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
838 Catoftimesched3 *RiscatoftimeschedType `xml:"catoftimesched3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
839
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
840 Forshiptype3 *RisforshiptypeType `xml:"forshiptype3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
841
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
842 Foruseofship3 *RisuseofshipType `xml:"foruseofship3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
843
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
844 LnktoextXMfiletimesched3 *RislinkextxmlType `xml:"lnktoextXMfiletimesched3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
845
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
846 LnktoextXMfilepastime3 *RislinkextxmlType `xml:"lnktoextXMfilepastime3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
847
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
848 Startdate *LastupdateType `xml:"startdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
849
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
850 Enddate *LastupdateType `xml:"enddate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
851
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
852 Infodate *LastupdateType `xml:"infodate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
853
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
854 // specific Ris idx remarks, reasons for change (descriptions as received with the ris idx)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
855 RisidxRemarks *RemarksType `xml:"risidxRemarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
856
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
857 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
858
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
859 // remarks regarding the maintance of the ris idx
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
860 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
861
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
862 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
863
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
864 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
865
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
866 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
867 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
868
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
869 type Eri_locationType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
870 XMLName xml.Name `xml:"http://rwsreftool/ eri_locationType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
871
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
872 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
873 ErilocCode *ErilocCodeType `xml:"erilocCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
874
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
875 CodeOld *ErilocCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
876
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
877 RisCode *RisCodeType `xml:"risCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
878
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
879 LoCode *LoCodeType `xml:"loCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
880
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
881 FwCode *FwCodeType `xml:"fwCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
882
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
883 TermCode *TermCodeType `xml:"termCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
884
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
885 KmCode *KmCodeType `xml:"kmCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
886
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
887 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
888 Loc *ErilocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
889
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
890 NL *ErilocNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
891
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
892 DE *ErilocNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
893
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
894 FR *ErilocNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
895
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
896 EN *ErilocNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
897 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
898
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
899 LocType *LocTypeType `xml:"locType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
900
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
901 Termname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
902 Loc *ErilocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
903
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
904 NL *ErilocNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
905
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
906 DE *ErilocNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
907
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
908 FR *ErilocNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
909
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
910 EN *ErilocNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
911 } `xml:"termname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
912
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
913 QuayFrom *QuayType `xml:"quayFrom,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
914
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
915 QuayTo *QuayType `xml:"quayTo,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
916
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
917 TermType *LocTypeType `xml:"termType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
918
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
919 Lat *LatlonType `xml:"lat,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
920
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
921 Lon *LatlonType `xml:"lon,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
922
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
923 // VTS/IVS (code) acting as the default reporting (receiving) point (when departing from this llocation)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
924 IvsVTSCode *LocVtsCodeType `xml:"ivsVTSCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
925
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
926 // Nr of possible exits (routes) when departing from this location >1 means a reporting or routepoint has to be specified.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
927 Exits *LocExitsType `xml:"exits,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
928
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
929 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
930
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
931 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
932
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
933 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
934
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
935 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
936
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
937 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
938 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
939
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
940 type Eri_hscodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
941 XMLName xml.Name `xml:"http://rwsreftool/ eri_hscodeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
942
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
943 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
944 HsCode *HsCodeType `xml:"hsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
945
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
946 CodeOld *HsCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
947
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
948 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
949 Loc *GoodNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
950
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
951 NL *GoodNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
952
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
953 DE *GoodNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
954
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
955 FR *GoodNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
956
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
957 EN *GoodNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
958
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
959 BG *GoodNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
960
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
961 CS *GoodNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
962
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
963 DA *GoodNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
964
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
965 EL *GoodNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
966
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
967 ES *GoodNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
968
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
969 ET *GoodNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
970
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
971 FI *GoodNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
972
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
973 HU *GoodNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
974
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
975 IT *GoodNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
976
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
977 LT *GoodNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
978
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
979 LV *GoodNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
980
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
981 PL *GoodNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
982
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
983 PT *GoodNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
984
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
985 RO *GoodNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
986
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
987 SK *GoodNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
988
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
989 SL *GoodNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
990
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
991 SV *GoodNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
992
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
993 HR *GoodNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
994
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
995 RU *GoodNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
996
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
997 SR *GoodNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
998 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
999
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1000 NstCode *NstCodeType `xml:"nstCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1001
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1002 // English (NST2007) description.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1003 NstName *GoodNameType `xml:"nstName,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1004
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1005 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1006
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1007 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1008
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1009 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1010
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1011 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1012
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1013 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1014 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1015
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1016 type Eri_adncodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1017 XMLName xml.Name `xml:"http://rwsreftool/ eri_adncodeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1018
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1019 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1020 AdnCode *AdnCodeType `xml:"adnCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1021
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1022 CodeOld *AdnCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1023
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1024 Unnr *UnnrType `xml:"unnr,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1025
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1026 AdnClass *AdnClassType `xml:"adnClass,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1027
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1028 AdnClassif *AdnClassType `xml:"adnClassif,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1029
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1030 ImoClass *AdnClassType `xml:"imoClass,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1031
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1032 PackGrp *PackGrpType `xml:"packGrp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1033
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1034 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1035 Loc *GoodDgsNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1036
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1037 NL *GoodDgsNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1038
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1039 DE *GoodDgsNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1040
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1041 FR *GoodDgsNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1042
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1043 EN *GoodDgsNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1044
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1045 BG *GoodDgsNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1046
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1047 CS *GoodDgsNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1048
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1049 DA *GoodDgsNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1050
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1051 EL *GoodDgsNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1052
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1053 ES *GoodDgsNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1054
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1055 ET *GoodDgsNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1056
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1057 FI *GoodDgsNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1058
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1059 HU *GoodDgsNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1060
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1061 IT *GoodDgsNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1062
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1063 LT *GoodDgsNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1064
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1065 LV *GoodDgsNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1066
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1067 PL *GoodDgsNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1068
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1069 PT *GoodDgsNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1070
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1071 RO *GoodDgsNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1072
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1073 SK *GoodDgsNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1074
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1075 SL *GoodDgsNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1076
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1077 SV *GoodDgsNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1078
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1079 HR *GoodDgsNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1080
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1081 RU *GoodDgsNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1082
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1083 SR *GoodDgsNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1084 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1085
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1086 Syn struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1087 Loc *GoodSynType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1088
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1089 NL *GoodSynType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1090
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1091 DE *GoodSynType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1092
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1093 FR *GoodSynType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1094
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1095 EN *GoodSynType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1096
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1097 BG *GoodSynType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1098
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1099 CS *GoodSynType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1100
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1101 DA *GoodSynType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1102
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1103 EL *GoodSynType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1104
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1105 ES *GoodSynType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1106
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1107 ET *GoodSynType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1108
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1109 FI *GoodSynType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1110
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1111 HU *GoodSynType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1112
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1113 IT *GoodSynType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1114
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1115 LT *GoodSynType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1116
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1117 LV *GoodSynType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1118
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1119 PL *GoodSynType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1120
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1121 PT *GoodSynType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1122
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1123 RO *GoodSynType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1124
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1125 SK *GoodSynType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1126
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1127 SL *GoodSynType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1128
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1129 SV *GoodSynType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1130
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1131 HR *GoodSynType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1132
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1133 RU *GoodSynType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1134
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1135 SR *GoodSynType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1136 } `xml:"syn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1137
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1138 HsCode *HsCodeType `xml:"hsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1139
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1140 NstCode *NstCodeType `xml:"nstCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1141
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1142 // 0, 1, 2, 3, V
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1143 ConesBulk *ConesType `xml:"conesBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1144
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1145 ConesTank *ConesType `xml:"conesTank,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1146
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1147 ConesCont *ConesType `xml:"conesCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1148
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1149 // 0, B, V
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1150 FlagsBulk *FlagsType `xml:"flagsBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1151
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1152 FlagsTank *FlagsType `xml:"flagsTank,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1153
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1154 WarnCard *WarnCardType `xml:"warnCard,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1155
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1156 WarnId *WarnIdType `xml:"warnId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1157
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1158 Label1 *AdnLabelType `xml:"label1,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1159
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1160 Label2 *AdnLabelType `xml:"label2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1161
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1162 Label3 *AdnLabelType `xml:"label3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1163
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1164 MaxWeightCodeInlandBulkCont *SignalCodeType `xml:"maxWeightCodeInlandBulkCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1165
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1166 // max weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1167 MaxWeightInlandBulkCont *WeightType `xml:"maxWeightInlandBulkCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1168
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1169 SignalCodeInlandCont *SignalCodeType `xml:"signalCodeInlandCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1170
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1171 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1172 MinWeightInlandCont *WeightType `xml:"minWeightInlandCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1173
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1174 SignalCodeInlandExcemp *SignalCodeType `xml:"signalCodeInlandExcemp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1175
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1176 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1177 MinWeightInlandExcemp *WeightType `xml:"minWeightInlandExcemp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1178
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1179 SignalCodeSeaBulk *SignalCodeType `xml:"signalCodeSeaBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1180
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1181 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1182 MinWeightSeaBulk *WeightType `xml:"minWeightSeaBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1183
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1184 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1185
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1186 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1187
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1188 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1189
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1190 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1191
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1192 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1193 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1194
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1195 type Eri_conttypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1196 XMLName xml.Name `xml:"http://rwsreftool/ eri_conttypeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1197
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1198 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1199 ContId *ContIdType `xml:"contId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1200
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1201 CodeOld *ContIdType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1202
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1203 // dimensions in cm
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1204 Length *DimType `xml:"length,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1205
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1206 Width *DimType `xml:"width,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1207
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1208 Height *DimType `xml:"height,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1209
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1210 // empty weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1211 Weight *WeightType `xml:"weight,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1212
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1213 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1214 Loc *ContNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1215
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1216 NL *ContNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1217
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1218 DE *ContNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1219
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1220 FR *ContNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1221
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1222 EN *ContNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1223
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1224 BG *ContNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1225
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1226 CS *ContNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1227
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1228 DA *ContNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1229
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1230 EL *ContNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1231
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1232 ES *ContNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1233
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1234 ET *ContNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1235
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1236 FI *ContNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1237
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1238 HU *ContNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1239
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1240 IT *ContNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1241
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1242 LT *ContNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1243
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1244 LV *ContNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1245
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1246 PL *ContNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1247
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1248 PT *ContNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1249
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1250 RO *ContNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1251
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1252 SK *ContNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1253
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1254 SL *ContNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1255
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1256 SV *ContNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1257
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1258 HR *ContNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1259
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1260 RU *ContNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1261
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1262 SR *ContNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1263 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1264
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1265 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1266
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1267 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1268
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1269 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1270
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1271 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1272
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1273 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1274 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1275
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1276 type Eri_packtypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1277 XMLName xml.Name `xml:"http://rwsreftool/ eri_packtypeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1278
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1279 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1280 PackId *PackIdType `xml:"packId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1281
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1282 CodeOld *PackIdType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1283
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1284 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1285 Loc *PackNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1286
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1287 NL *PackNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1288
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1289 DE *PackNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1290
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1291 FR *PackNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1292
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1293 EN *PackNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1294
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1295 BG *PackNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1296
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1297 CS *PackNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1298
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1299 DA *PackNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1300
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1301 EL *PackNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1302
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1303 ES *PackNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1304
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1305 ET *PackNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1306
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1307 FI *PackNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1308
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1309 HU *PackNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1310
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1311 IT *PackNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1312
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1313 LT *PackNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1314
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1315 LV *PackNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1316
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1317 PL *PackNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1318
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1319 PT *PackNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1320
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1321 RO *PackNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1322
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1323 SK *PackNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1324
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1325 SL *PackNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1326
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1327 SV *PackNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1328
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1329 HR *PackNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1330
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1331 RU *PackNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1332
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1333 SR *PackNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1334 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1335
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1336 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1337
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1338 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1339
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1340 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1341
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1342 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1343
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1344 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1345 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1346
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1347 type Eri_shiptypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1348 XMLName xml.Name `xml:"http://rwsreftool/ eri_shiptypeType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1349
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1350 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1351 ShipType *ShipTypeType `xml:"shipType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1352
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1353 CodeOld *ShipTypeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1354
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1355 DvkType *DvkTypeType `xml:"dvkType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1356
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1357 CraftType *CraftTypeType `xml:"craftType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1358
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1359 // True = transport cominination type, false=single ship
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1360 Combination *CombinationFlagType `xml:"combination,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1361
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1362 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1363 Loc *ShiptypeNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1364
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1365 NL *ShiptypeNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1366
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1367 DE *ShiptypeNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1368
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1369 FR *ShiptypeNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1370
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1371 EN *ShiptypeNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1372
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1373 BG *ShiptypeNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1374
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1375 CS *ShiptypeNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1376
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1377 DA *ShiptypeNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1378
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1379 EL *ShiptypeNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1380
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1381 ES *ShiptypeNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1382
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1383 ET *ShiptypeNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1384
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1385 FI *ShiptypeNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1386
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1387 HU *ShiptypeNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1388
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1389 IT *ShiptypeNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1390
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1391 LT *ShiptypeNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1392
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1393 LV *ShiptypeNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1394
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1395 PL *ShiptypeNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1396
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1397 PT *ShiptypeNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1398
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1399 RO *ShiptypeNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1400
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1401 SK *ShiptypeNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1402
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1403 SL *ShiptypeNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1404
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1405 SV *ShiptypeNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1406
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1407 HR *ShiptypeNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1408
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1409 RU *ShiptypeNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1410
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1411 SR *ShiptypeNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1412 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1413
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1414 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1415
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1416 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1417
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1418 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1419
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1420 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1421
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1422 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1423 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1424
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1425 type Eri_countryType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1426 XMLName xml.Name `xml:"http://rwsreftool/ eri_countryType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1427
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1428 // UN country ISO code 2 chars. Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1429 CountryCode *CountryCodeType `xml:"countryCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1430
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1431 CodeOld *CountryCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1432
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1433 CbsCode *CbscountryCodeType `xml:"cbsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1434
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1435 CountryIsoCode3 *CountryCode3Type `xml:"countryIsoCode3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1436
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1437 CountryIsoNum *CountryIsoNumType `xml:"countryIsoNum,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1438
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1439 LloydsFlag *LloydsflagType `xml:"lloydsFlag,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1440
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1441 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1442 Loc *CountryNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1443
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1444 NL *CountryNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1445
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1446 DE *CountryNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1447
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1448 FR *CountryNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1449
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1450 EN *CountryNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1451
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1452 BG *CountryNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1453
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1454 CS *CountryNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1455
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1456 DA *CountryNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1457
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1458 EL *CountryNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1459
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1460 ES *CountryNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1461
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1462 ET *CountryNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1463
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1464 FI *CountryNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1465
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1466 HU *CountryNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1467
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1468 IT *CountryNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1469
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1470 LT *CountryNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1471
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1472 LV *CountryNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1473
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1474 PL *CountryNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1475
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1476 PT *CountryNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1477
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1478 RO *CountryNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1479
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1480 SK *CountryNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1481
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1482 SL *CountryNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1483
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1484 SV *CountryNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1485
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1486 HR *CountryNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1487
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1488 RU *CountryNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1489
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1490 SR *CountryNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1491 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1492
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1493 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1494
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1495 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1496
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1497 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1498
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1499 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1500
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1501 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1502 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1503
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1504 type Nts_dataType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1505 XMLName xml.Name `xml:"http://rwsreftool/ nts_dataType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1506
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1507 // Just a string (no enum) to return nts data type of the nts_data returned!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1508 // reftype already contains datatype.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1509 Ntstype *NtstypeType `xml:"ntstype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1510
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1511 Ntscode *NtsCodeType `xml:"ntscode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1512
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1513 CodeOld *NtsCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1514
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1515 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1516 Loc *NtsNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1517
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1518 NL *NtsNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1519
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1520 DE *NtsNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1521
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1522 EN *NtsNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1523
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1524 FR *NtsNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1525
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1526 BG *NtsNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1527
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1528 CS *NtsNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1529
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1530 DA *NtsNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1531
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1532 EL *NtsNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1533
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1534 ES *NtsNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1535
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1536 ET *NtsNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1537
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1538 FI *NtsNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1539
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1540 HU *NtsNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1541
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1542 IT *NtsNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1543
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1544 LT *NtsNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1545
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1546 LV *NtsNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1547
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1548 PL *NtsNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1549
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1550 PT *NtsNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1551
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1552 RO *NtsNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1553
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1554 SK *NtsNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1555
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1556 SL *NtsNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1557
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1558 SV *NtsNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1559
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1560 HR *NtsNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1561
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1562 RU *NtsNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1563
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1564 SR *NtsNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1565 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1566
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1567 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1568
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1569 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1570
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1571 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1572
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1573 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1574
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1575 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1576 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1577
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1578 type Ris_idxReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1579 XMLName xml.Name `xml:"http://rwsreftool/ ris_idxReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1580
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1581 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1582 RisidxCode *RisCodeType `xml:"risidxCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1583
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1584 CodeOld *RisCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1585
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1586 UnlocCC *UnlocCCType `xml:"unlocCC,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1587
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1588 UnlocLC *UnlocLCType `xml:"unlocLC,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1589
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1590 WwsectCode *FwCodeType `xml:"wwsectCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1591
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1592 Objcode *RisobjCodeType `xml:"objcode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1593
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1594 Hectomt *KmCodeType `xml:"hectomt,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1595
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1596 Objfunc *RisobjfuncType `xml:"objfunc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1597
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1598 Objname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1599 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1600 } `xml:"objname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1601
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1602 Locname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1603 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1604 } `xml:"locname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1605
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1606 Wwname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1607 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1608 } `xml:"wwname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1609
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1610 Routename struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1611 Loc *RislocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1612 } `xml:"routename,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1613
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1614 Relrisindex *RisCodeType `xml:"relrisindex,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1615
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1616 Sectionnode *RissectnodeType `xml:"sectionnode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1617
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1618 Lat *LatlonType `xml:"lat,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1619
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1620 Lon *LatlonType `xml:"lon,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1621
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1622 Relenc *RisrelencType `xml:"relenc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1623
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1624 Comminfo *RiscomminfoType `xml:"comminfo,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1625
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1626 Gaugeid *RisgaugeidType `xml:"gaugeid,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1627
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1628 Vesselconvlength *DimType `xml:"vesselconvlength,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1629
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1630 Vesselconvbreadth *DimType `xml:"vesselconvbreadth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1631
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1632 Vesselconvdraught *DimType `xml:"vesselconvdraught,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1633
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1634 Vesselconvairdraught *DimType `xml:"vesselconvairdraught,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1635
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1636 Availablelength *DimType `xml:"availablelength,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1637
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1638 Clearancewidth *DimType `xml:"clearancewidth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1639
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1640 Availabledepth *DimType `xml:"availabledepth,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1641
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1642 Clearanceheight *DimType `xml:"clearanceheight,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1643
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1644 Applicabilityfromkm *RisapplikmType `xml:"applicabilityfromkm,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1645
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1646 Applicabilitytokm *RisapplikmType `xml:"applicabilitytokm,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1647
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1648 Reflevel1code *RisreflevelcodeType `xml:"reflevel1code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1649
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1650 Reflevel1value *RisreflevelvalueType `xml:"reflevel1value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1651
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1652 Reflevel2code *RisreflevelcodeType `xml:"reflevel2code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1653
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1654 Reflevel2value *RisreflevelvalueType `xml:"reflevel2value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1655
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1656 Reflevel3code *RisreflevelcodeType `xml:"reflevel3code,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1657
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1658 Reflevel3value *RisreflevelvalueType `xml:"reflevel3value,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1659
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1660 Zeropoint *RiszeropointType `xml:"zeropoint,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1661
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1662 Geodref *RisgeodrefType `xml:"geodref,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1663
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1664 Catoftimesched *RiscatoftimeschedType `xml:"catoftimesched,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1665
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1666 Forshiptype *RisforshiptypeType `xml:"forshiptype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1667
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1668 Foruseofship *RisuseofshipType `xml:"foruseofship,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1669
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1670 LnktoextXMfiletimesched *RislinkextxmlType `xml:"lnktoextXMfiletimesched,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1671
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1672 LnktoextXMfilepastime *RislinkextxmlType `xml:"lnktoextXMfilepastime,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1673
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1674 Vesselconvlength2 *DimType `xml:"vesselconvlength2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1675
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1676 Vesselconvbreadth2 *DimType `xml:"vesselconvbreadth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1677
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1678 Vesselconvdraught2 *DimType `xml:"vesselconvdraught2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1679
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1680 Vesselconvairdraught2 *DimType `xml:"vesselconvairdraught2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1681
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1682 Availablelength2 *DimType `xml:"availablelength2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1683
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1684 Clearancewidth2 *DimType `xml:"clearancewidth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1685
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1686 Availabledepth2 *DimType `xml:"availabledepth2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1687
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1688 Clearanceheight2 *DimType `xml:"clearanceheight2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1689
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1690 Vesselconvlength3 *DimType `xml:"vesselconvlength3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1691
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1692 Vesselconvbreadth3 *DimType `xml:"vesselconvbreadth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1693
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1694 Vesselconvdraught3 *DimType `xml:"vesselconvdraught3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1695
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1696 Vesselconvairdraught3 *DimType `xml:"vesselconvairdraught3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1697
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1698 Availablelength3 *DimType `xml:"availablelength3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1699
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1700 Clearancewidth3 *DimType `xml:"clearancewidth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1701
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1702 Availabledepth3 *DimType `xml:"availabledepth3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1703
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1704 Clearanceheight3 *DimType `xml:"clearanceheight3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1705
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1706 Catoftimesched2 *RiscatoftimeschedType `xml:"catoftimesched2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1707
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1708 Forshiptype2 *RisforshiptypeType `xml:"forshiptype2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1709
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1710 Foruseofship2 *RisuseofshipType `xml:"foruseofship2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1711
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1712 LnktoextXMfiletimesched2 *RislinkextxmlType `xml:"lnktoextXMfiletimesched2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1713
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1714 LnktoextXMfilepastime2 *RislinkextxmlType `xml:"lnktoextXMfilepastime2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1715
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1716 Catoftimesched3 *RiscatoftimeschedType `xml:"catoftimesched3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1717
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1718 Forshiptype3 *RisforshiptypeType `xml:"forshiptype3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1719
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1720 Foruseofship3 *RisuseofshipType `xml:"foruseofship3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1721
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1722 LnktoextXMfiletimesched3 *RislinkextxmlType `xml:"lnktoextXMfiletimesched3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1723
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1724 LnktoextXMfilepastime3 *RislinkextxmlType `xml:"lnktoextXMfilepastime3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1725
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1726 Startdate *LastupdateType `xml:"startdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1727
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1728 Enddate *LastupdateType `xml:"enddate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1729
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1730 Infodate *LastupdateType `xml:"infodate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1731
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1732 // specific Ris idx remarks/reasons for change, as received with the ris idx
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1733 RisidxRemarks *RemarksType `xml:"risidxRemarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1734
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1735 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1736
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1737 // remarks regarding the maintance of the ris idx
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1738 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1739
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1740 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1741
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1742 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1743
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1744 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1745 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1746
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1747 type Eri_locationReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1748 XMLName xml.Name `xml:"http://rwsreftool/ eri_locationReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1749
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1750 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1751 ErilocCode *ErilocCodeType `xml:"erilocCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1752
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1753 CodeOld *ErilocCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1754
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1755 RisCode *RisCodeType `xml:"risCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1756
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1757 LoCode *LoCodeType `xml:"loCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1758
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1759 FwCode *FwCodeType `xml:"fwCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1760
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1761 TermCode *TermCodeType `xml:"termCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1762
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1763 KmCode *KmCodeType `xml:"kmCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1764
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1765 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1766 Loc *ErilocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1767
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1768 NL *ErilocNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1769
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1770 DE *ErilocNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1771
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1772 FR *ErilocNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1773
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1774 EN *ErilocNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1775 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1776
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1777 LocType *LocTypeType `xml:"locType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1778
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1779 Termname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1780 Loc *ErilocNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1781
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1782 NL *ErilocNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1783
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1784 DE *ErilocNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1785
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1786 FR *ErilocNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1787
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1788 EN *ErilocNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1789 } `xml:"termname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1790
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1791 QuayFrom *QuayType `xml:"quayFrom,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1792
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1793 QuayTo *QuayType `xml:"quayTo,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1794
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1795 TermType *LocTypeType `xml:"termType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1796
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1797 Lat *LatlonType `xml:"lat,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1798
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1799 Lon *LatlonType `xml:"lon,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1800
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1801 IvsVTSCode *LocVtsCodeType `xml:"ivsVTSCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1802
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1803 Exits *LocExitsType `xml:"exits,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1804
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1805 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1806
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1807 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1808
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1809 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1810
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1811 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1812
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1813 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1814 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1815
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1816 type Eri_hscodeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1817 XMLName xml.Name `xml:"http://rwsreftool/ eri_hscodeReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1818
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1819 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1820 HsCode *HsCodeType `xml:"hsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1821
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1822 CodeOld *HsCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1823
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1824 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1825 Loc *GoodNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1826
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1827 NL *GoodNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1828
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1829 DE *GoodNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1830
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1831 FR *GoodNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1832
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1833 EN *GoodNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1834
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1835 BG *GoodNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1836
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1837 CS *GoodNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1838
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1839 DA *GoodNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1840
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1841 EL *GoodNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1842
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1843 ES *GoodNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1844
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1845 ET *GoodNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1846
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1847 FI *GoodNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1848
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1849 HU *GoodNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1850
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1851 IT *GoodNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1852
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1853 LT *GoodNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1854
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1855 LV *GoodNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1856
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1857 PL *GoodNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1858
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1859 PT *GoodNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1860
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1861 RO *GoodNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1862
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1863 SK *GoodNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1864
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1865 SL *GoodNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1866
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1867 SV *GoodNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1868
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1869 HR *GoodNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1870
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1871 RU *GoodNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1872
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1873 SR *GoodNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1874 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1875
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1876 NstCode *NstCodeType `xml:"nstCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1877
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1878 NstName *GoodNameType `xml:"nstName,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1879
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1880 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1881
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1882 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1883
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1884 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1885
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1886 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1887
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1888 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1889 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1890
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1891 type Eri_adncodeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1892 XMLName xml.Name `xml:"http://rwsreftool/ eri_adncodeReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1893
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1894 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1895 AdnCode *AdnCodeType `xml:"adnCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1896
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1897 CodeOld *AdnCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1898
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1899 Unnr *UnnrType `xml:"unnr,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1900
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1901 AdnClass *AdnClassType `xml:"adnClass,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1902
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1903 AdnClassif *AdnClassType `xml:"adnClassif,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1904
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1905 ImoClass *AdnClassType `xml:"imoClass,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1906
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1907 PackGrp *PackGrpType `xml:"packGrp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1908
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1909 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1910 Loc *GoodDgsNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1911
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1912 NL *GoodDgsNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1913
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1914 DE *GoodDgsNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1915
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1916 FR *GoodDgsNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1917
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1918 EN *GoodDgsNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1919
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1920 BG *GoodDgsNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1921
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1922 CS *GoodDgsNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1923
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1924 DA *GoodDgsNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1925
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1926 EL *GoodDgsNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1927
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1928 ES *GoodDgsNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1929
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1930 ET *GoodDgsNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1931
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1932 FI *GoodDgsNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1933
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1934 HU *GoodDgsNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1935
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1936 IT *GoodDgsNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1937
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1938 LT *GoodDgsNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1939
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1940 LV *GoodDgsNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1941
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1942 PL *GoodDgsNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1943
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1944 PT *GoodDgsNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1945
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1946 RO *GoodDgsNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1947
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1948 SK *GoodDgsNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1949
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1950 SL *GoodDgsNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1951
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1952 SV *GoodDgsNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1953
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1954 HR *GoodDgsNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1955
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1956 RU *GoodDgsNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1957
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1958 SR *GoodDgsNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1959 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1960
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1961 Syn struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1962 Loc *GoodSynType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1963
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1964 NL *GoodSynType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1965
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1966 DE *GoodSynType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1967
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1968 FR *GoodSynType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1969
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1970 EN *GoodSynType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1971
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1972 BG *GoodSynType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1973
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1974 CS *GoodSynType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1975
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1976 DA *GoodSynType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1977
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1978 EL *GoodSynType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1979
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1980 ES *GoodSynType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1981
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1982 ET *GoodSynType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1983
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1984 FI *GoodSynType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1985
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1986 HU *GoodSynType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1987
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1988 IT *GoodSynType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1989
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1990 LT *GoodSynType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1991
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1992 LV *GoodSynType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1993
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1994 PL *GoodSynType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1995
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1996 PT *GoodSynType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1997
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1998 RO *GoodSynType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1999
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2000 SK *GoodSynType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2001
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2002 SL *GoodSynType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2003
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2004 SV *GoodSynType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2005
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2006 HR *GoodSynType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2007
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2008 RU *GoodSynType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2009
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2010 SR *GoodSynType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2011 } `xml:"syn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2012
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2013 HsCode *HsCodeType `xml:"hsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2014
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2015 NstCode *NstCodeType `xml:"nstCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2016
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2017 // 0, 1, 2, 3, V (Inland)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2018 ConesBulk *ConesType `xml:"conesBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2019
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2020 ConesTank *ConesType `xml:"conesTank,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2021
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2022 ConesCont *ConesType `xml:"conesCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2023
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2024 // 0, B, V (Seagoing)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2025 FlagsBulk *FlagsType `xml:"flagsBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2026
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2027 FlagsTank *FlagsType `xml:"flagsTank,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2028
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2029 WarnCard *WarnCardType `xml:"warnCard,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2030
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2031 WarnId *WarnIdType `xml:"warnId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2032
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2033 Label1 *AdnLabelType `xml:"label1,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2034
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2035 Label2 *AdnLabelType `xml:"label2,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2036
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2037 Label3 *AdnLabelType `xml:"label3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2038
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2039 MaxWeightCodeInlandBulkCont *SignalCodeType `xml:"maxWeightCodeInlandBulkCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2040
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2041 // max weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2042 MaxWeightInlandBulkCont *WeightType `xml:"maxWeightInlandBulkCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2043
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2044 SignalCodeInlandCont *SignalCodeType `xml:"signalCodeInlandCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2045
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2046 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2047 MinWeightInlandCont *WeightType `xml:"minWeightInlandCont,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2048
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2049 SignalCodeInlandExcemp *SignalCodeType `xml:"signalCodeInlandExcemp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2050
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2051 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2052 MinWeightInlandExcemp *WeightType `xml:"minWeightInlandExcemp,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2053
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2054 SignalCodeSeaBulk *SignalCodeType `xml:"signalCodeSeaBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2055
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2056 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2057 MinWeightSeaBulk *WeightType `xml:"minWeightSeaBulk,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2058
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2059 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2060
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2061 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2062
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2063 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2064
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2065 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2066
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2067 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2068 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2069
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2070 type Eri_conttypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2071 XMLName xml.Name `xml:"http://rwsreftool/ eri_conttypeReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2072
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2073 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2074 ContId *ContIdType `xml:"contId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2075
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2076 CodeOld *ContIdType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2077
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2078 // dimensions in cm
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2079 Length *DimType `xml:"length,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2080
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2081 Width *DimType `xml:"width,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2082
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2083 Height *DimType `xml:"height,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2084
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2085 // empty weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2086 Weight *DimType `xml:"weight,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2087
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2088 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2089 Loc *ContNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2090
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2091 NL *ContNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2092
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2093 DE *ContNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2094
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2095 FR *ContNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2096
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2097 EN *ContNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2098
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2099 BG *ContNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2100
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2101 CS *ContNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2102
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2103 DA *ContNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2104
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2105 EL *ContNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2106
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2107 ES *ContNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2108
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2109 ET *ContNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2110
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2111 FI *ContNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2112
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2113 HU *ContNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2114
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2115 IT *ContNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2116
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2117 LT *ContNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2118
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2119 LV *ContNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2120
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2121 PL *ContNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2122
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2123 PT *ContNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2124
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2125 RO *ContNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2126
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2127 SK *ContNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2128
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2129 SL *ContNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2130
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2131 SV *ContNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2132
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2133 HR *ContNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2134
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2135 RU *ContNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2136
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2137 SR *ContNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2138 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2139
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2140 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2141
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2142 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2143
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2144 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2145
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2146 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2147
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2148 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2149 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2150
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2151 type Eri_packtypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2152 XMLName xml.Name `xml:"http://rwsreftool/ eri_packtypeReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2153
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2154 // Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2155 PackId *PackIdType `xml:"packId,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2156
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2157 CodeOld *PackIdType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2158
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2159 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2160 Loc *PackNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2161
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2162 NL *PackNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2163
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2164 DE *PackNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2165
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2166 FR *PackNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2167
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2168 EN *PackNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2169
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2170 BG *PackNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2171
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2172 CS *PackNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2173
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2174 DA *PackNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2175
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2176 EL *PackNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2177
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2178 ES *PackNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2179
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2180 ET *PackNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2181
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2182 FI *PackNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2183
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2184 HU *PackNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2185
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2186 IT *PackNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2187
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2188 LT *PackNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2189
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2190 LV *PackNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2191
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2192 PL *PackNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2193
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2194 PT *PackNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2195
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2196 RO *PackNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2197
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2198 SK *PackNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2199
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2200 SL *PackNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2201
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2202 SV *PackNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2203
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2204 HR *PackNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2205
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2206 RU *PackNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2207
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2208 SR *PackNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2209 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2210
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2211 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2212
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2213 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2214
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2215 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2216
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2217 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2218
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2219 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2220 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2221
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2222 type Eri_shiptypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2223 XMLName xml.Name `xml:"http://rwsreftool/ eri_shiptypeReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2224
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2225 // UN rec 28. Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2226 ShipType *ShipTypeType `xml:"shipType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2227
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2228 CodeOld *ShipTypeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2229
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2230 DvkType *DvkTypeType `xml:"dvkType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2231
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2232 CraftType *CraftTypeType `xml:"craftType,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2233
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2234 // True = transport cominination type, false=single ship
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2235 Combination *CombinationFlagType `xml:"combination,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2236
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2237 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2238 Loc *ShiptypeNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2239
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2240 NL *ShiptypeNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2241
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2242 DE *ShiptypeNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2243
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2244 FR *ShiptypeNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2245
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2246 EN *ShiptypeNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2247
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2248 BG *ShiptypeNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2249
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2250 CS *ShiptypeNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2251
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2252 DA *ShiptypeNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2253
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2254 EL *ShiptypeNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2255
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2256 ES *ShiptypeNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2257
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2258 ET *ShiptypeNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2259
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2260 FI *ShiptypeNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2261
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2262 HU *ShiptypeNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2263
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2264 IT *ShiptypeNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2265
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2266 LT *ShiptypeNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2267
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2268 LV *ShiptypeNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2269
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2270 PL *ShiptypeNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2271
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2272 PT *ShiptypeNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2273
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2274 RO *ShiptypeNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2275
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2276 SK *ShiptypeNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2277
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2278 SL *ShiptypeNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2279
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2280 SV *ShiptypeNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2281
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2282 HR *ShiptypeNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2283
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2284 RU *ShiptypeNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2285
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2286 SR *ShiptypeNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2287 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2288
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2289 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2290
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2291 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2292
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2293 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2294
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2295 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2296
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2297 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2298 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2299
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2300 type Eri_countryReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2301 XMLName xml.Name `xml:"http://rwsreftool/ eri_countryReqMutType"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2302
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2303 // UN country ISO code 2 chars. Be sure to edit, change the basic Simpletypes, dont edit any of the (sub)elements from here!!!
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2304 CountryCode *CountryCodeType `xml:"countryCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2305
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2306 CodeOld *CountryCodeType `xml:"codeOld,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2307
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2308 CbsCode *CbscountryCodeType `xml:"cbsCode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2309
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2310 CountryIsoCode3 *CountryCode3Type `xml:"countryIsoCode3,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2311
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2312 CountryIsoNum *CountryIsoNumType `xml:"countryIsoNum,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2313
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2314 LloydsFlag *LloydsflagType `xml:"lloydsFlag,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2315
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2316 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2317 Loc *CountryNameType `xml:"Loc,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2318
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2319 NL *CountryNameType `xml:"NL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2320
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2321 DE *CountryNameType `xml:"DE,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2322
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2323 FR *CountryNameType `xml:"FR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2324
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2325 EN *CountryNameType `xml:"EN,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2326
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2327 BG *CountryNameType `xml:"BG,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2328
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2329 CS *CountryNameType `xml:"CS,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2330
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2331 DA *CountryNameType `xml:"DA,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2332
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2333 EL *CountryNameType `xml:"EL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2334
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2335 ES *CountryNameType `xml:"ES,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2336
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2337 ET *CountryNameType `xml:"ET,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2338
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2339 FI *CountryNameType `xml:"FI,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2340
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2341 HU *CountryNameType `xml:"HU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2342
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2343 IT *CountryNameType `xml:"IT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2344
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2345 LT *CountryNameType `xml:"LT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2346
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2347 LV *CountryNameType `xml:"LV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2348
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2349 PL *CountryNameType `xml:"PL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2350
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2351 PT *CountryNameType `xml:"PT,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2352
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2353 RO *CountryNameType `xml:"RO,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2354
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2355 SK *CountryNameType `xml:"SK,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2356
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2357 SL *CountryNameType `xml:"SL,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2358
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2359 SV *CountryNameType `xml:"SV,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2360
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2361 HR *CountryNameType `xml:"HR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2362
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2363 RU *CountryNameType `xml:"RU,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2364
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2365 SR *CountryNameType `xml:"SR,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2366 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2367
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2368 Source *SourceType `xml:"source,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2369
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2370 Remarks *RemarksType `xml:"remarks,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2371
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2372 Version *RefrecVersionType `xml:"version,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2373
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2374 Erased *ErasedType `xml:"erased,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2375
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2376 Lastupdate *LastupdateType `xml:"lastupdate,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2377 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2378
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2379 type RefWeb interface {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2380
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2381 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2382 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2383 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2384
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2385 MatchByCode(request *MatchByCode) (*MatchByCodeResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2386
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2387 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2388 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2389 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2390
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2391 MatchByName(request *MatchByName) (*MatchByNameResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2392
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2393 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2394 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2395 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2396
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2397 GetMutations(request *GetMutations) (*GetMutationsResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2398
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2399 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2400 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2401 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2402
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2403 GetDataXML(request *GetDataXML) (*GetDataXMLResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2404
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2405 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2406 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2407 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2408
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2409 GetRisDataXML(request *GetRisDataXML) (*GetRisDataXMLResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2410
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2411 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2412 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2413 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2414
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2415 MutateDataXML(request *MutateDataXML) (*MutateDataXMLResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2416
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2417 // Error can be either of the following types:
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2418 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2419 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2420
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2421 RequestMutationXML(request *RequestMutationXML) (*RequestMutationXMLResponse, error)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2422 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2423
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2424 type refWeb struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2425 client *soap.SOAPClient
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2426 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2427
1810
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2428 func NewRefService(url string, tls bool, auth *soap.BasicAuth) RefWeb {
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2429 return NewRefWeb(soap.NewSOAPClient(url, tls, auth))
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2430 }
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2431
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2432 func NewRefWeb(client *soap.SOAPClient) RefWeb {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2433 return &refWeb{
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2434 client: client,
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2435 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2436 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2437
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2438 func (service *refWeb) MatchByCode(request *MatchByCode) (*MatchByCodeResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2439 response := new(MatchByCodeResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2440 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2441 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2442 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2443 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2444
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2445 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2446 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2447
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2448 func (service *refWeb) MatchByName(request *MatchByName) (*MatchByNameResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2449 response := new(MatchByNameResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2450 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2451 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2452 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2453 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2454
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2455 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2456 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2457
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2458 func (service *refWeb) GetMutations(request *GetMutations) (*GetMutationsResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2459 response := new(GetMutationsResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2460 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2461 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2462 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2463 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2464
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2465 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2466 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2467
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2468 func (service *refWeb) GetDataXML(request *GetDataXML) (*GetDataXMLResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2469 response := new(GetDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2470 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2471 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2472 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2473 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2474
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2475 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2476 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2477
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2478 func (service *refWeb) GetRisDataXML(request *GetRisDataXML) (*GetRisDataXMLResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2479 response := new(GetRisDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2480 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2481 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2482 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2483 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2484
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2485 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2486 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2487
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2488 func (service *refWeb) MutateDataXML(request *MutateDataXML) (*MutateDataXMLResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2489 response := new(MutateDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2490 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2491 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2492 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2493 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2494
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2495 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2496 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2497
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2498 func (service *refWeb) RequestMutationXML(request *RequestMutationXML) (*RequestMutationXMLResponse, error) {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2499 response := new(RequestMutationXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2500 err := service.client.Call("", request, response)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2501 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2502 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2503 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2504
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2505 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2506 }