annotate pkg/soap/erdms/service.go @ 5415:4ad68ab239b7 marking-single-beam

Factored creation of default class breaks in SR import to be reused with markings, too.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 07 Jul 2021 12:01:28 +0200
parents f09f142239a5
children
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
3155
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
121 const LastupdateTypeFormat = "2006-01-02T15:04:05.999Z07:00"
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
122
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
123 func (lut *LastupdateType) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
124 var value string
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
125 if err := d.DecodeElement(&value, &start); err != nil {
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
126 return err
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
127 }
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
128 t, err := time.Parse(LastupdateTypeFormat, value)
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
129 if err != nil {
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
130 return err
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
131 }
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
132 *lut = LastupdateType(t)
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
133 return nil
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
134 }
f09f142239a5 Unmarshal timestamps in ERDMS response
Tom Gottfried <tom@intevation.de>
parents: 1812
diff changeset
135
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
136 // 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
137 type LangType string
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 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
140 LangTypeXX LangType = "%%"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
141
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
142 LangTypeLc LangType = "lc"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
143
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
144 LangTypeNl LangType = "nl"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
145
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
146 LangTypeDe LangType = "de"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
147
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
148 LangTypeFr LangType = "fr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
149
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
150 LangTypeEn LangType = "en"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
151
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
152 LangTypeBg LangType = "bg"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
153
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
154 LangTypeCs LangType = "cs"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
155
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
156 LangTypeDa LangType = "da"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
157
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
158 LangTypeEl LangType = "el"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
159
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
160 LangTypeEs LangType = "es"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
161
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
162 LangTypeEt LangType = "et"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
163
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
164 LangTypeFi LangType = "fi"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
165
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
166 LangTypeHu LangType = "hu"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
167
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
168 LangTypeIt LangType = "it"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
169
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
170 LangTypeLt LangType = "lt"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
171
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
172 LangTypeLv LangType = "lv"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
173
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
174 LangTypePl LangType = "pl"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
175
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
176 LangTypePt LangType = "pt"
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 LangTypeRo LangType = "ro"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
179
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
180 LangTypeSk LangType = "sk"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
181
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
182 LangTypeSl LangType = "sl"
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 LangTypeSv LangType = "sv"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
185
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
186 LangTypeHr LangType = "hr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
187
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
188 LangTypeRu LangType = "ru"
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 LangTypeSr LangType = "sr"
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
191 )
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 // 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
194 type LatlonType float64
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 // 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
197 type LoCodeType 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 // 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
200 type LocExitsType int32
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 // 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
203 type LocVtsCodeType 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 // 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
206 type LocTypeType int32
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 // 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
209 type LloydsflagType 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 // 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
212 type NstCodeType 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 // 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
215 type NtsCodeType 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 // 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
218 type NtsNameType 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 // 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
221 type NtstypeType 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 // 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
224 type PackGrpType string
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 // 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
227 type PackIdType 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 // 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
230 type PackNameType string
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 // 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
233 type PasswordType string
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
234
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
235 // 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
236 type QuayType string
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 // 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
239 type RecCountType int64
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
240
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
241 // 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
242 type ReftypeType string
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 const (
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
245 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
246
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
247 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
248
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
249 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
250
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
251 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
252
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
253 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
254
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
255 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
256
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
257 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
258
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
259 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
260
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
261 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
262
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
263 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
264
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
265 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
266
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
267 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
268
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
269 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
270
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
271 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
272
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
273 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
274
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
275 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
276
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
277 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
278
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
279 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
280
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
281 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
282
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
283 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
284
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
285 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
286
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
287 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
288
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
289 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
290
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
291 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
292
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
293 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
294
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
295 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
296
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
297 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
298
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
299 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
300
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
301 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
302
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
303 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
304
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
305 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
306
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
307 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
308
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
309 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
310
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
311 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
312
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
313 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
314
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
315 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
316
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
317 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
318 )
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 // 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
321 type RefrecVersionType int64
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 // 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
324 type RemarksType 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 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
327 type RisCodeType 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 // 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
330 type RislocNameType 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 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
333 type RisrelencType 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 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
336 type RisobjCodeType string
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 communication information TXTDSC
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
339 type RiscomminfoType 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 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
342 type RisobjfuncType string
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 section node id
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
345 type RissectnodeType 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 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
348 type RisgaugeidType string
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 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
351 type RisapplikmType int64
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 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
354 type RisreflevelcodeType 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 reference level value [cm]
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
357 type RisreflevelvalueType int64
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 geod reference
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
360 type RisgeodrefType 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 // 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
363 type RiszeropointType int64
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 // 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
366 type RiscatoftimeschedType 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 // 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
369 type RisforshiptypeType 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 // 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
372 type RisuseofshipType 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 // 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
375 type RislinkextxmlType 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 // 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
378 type ShipTypeType 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 // shiptype name (textual) description
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
381 type ShiptypeNameType 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 // 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
384 type SourceType 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 // 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
387 type SignalCodeType 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 // 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
390 type TermCodeType string
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 // 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
393 type UnlocCCType 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 // 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
396 type UnlocLCType 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 // 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
399 type UnnrType string
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 // 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
402 type UserNameType string
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 // 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
405 type WeightType int64
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 // 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
408 type WarnIdType string
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 // adn warning card
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
411 type WarnCardType string
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 type MatchByCode struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
414 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
415
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
416 *MatchByCodeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
417 }
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 type MatchByCodeResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
420 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
421
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
422 *MatchByCodeResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
423 }
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 type MatchByName struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
426 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
427
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
428 *MatchByNameType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
429 }
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 type MatchByNameResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
432 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
433
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
434 *MatchByNameResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
435 }
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 type GetDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
438 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
439
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
440 *GetDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
441 }
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 type GetDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
444 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
445
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
446 *GetDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
447 }
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 type GetMutations struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
450 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
451
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
452 *GetMutationsType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
453 }
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 type GetMutationsResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
456 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
457
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
458 *GetMutationsResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
459 }
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 type GetRisDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
462 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
463
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
464 *GetRisDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
465 }
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 type GetRisDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
468 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
469
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
470 *GetRisDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
471 }
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 type MutateDataXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
474 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
475
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
476 *MutateDataXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
477 }
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 type MutateDataXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
480 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
481
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
482 *MutateDataXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
483 }
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 type RequestMutationXML struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
486 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
487
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
488 *RequestMutationXMLType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
489 }
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 type RequestMutationXMLResponse struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
492 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
493
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
494 *RequestMutationXMLResponseType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
495 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
496
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
497 type MatchByCodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
498 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
499
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
500 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
501
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
502 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
503
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
504 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
505 }
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 type MatchByCodeResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
508 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
509
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
510 // 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
511 // (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
512 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
513
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
514 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
515 }
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 type MatchByNameType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
518 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
519
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
520 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
521
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
522 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
523
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
524 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
525
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
526 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
527 }
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 type MatchByNameResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
530 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
531
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
532 // 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
533 // (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
534 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
535
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
536 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
537 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
538
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
539 type GetMutationsType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
540 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
541
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
542 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
543
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
544 // 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
545 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
546
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
547 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
548 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
549
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
550 type GetMutationsResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
551 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
552
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
553 // 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
554 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
555
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
556 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
557 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
558
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
559 type GetDataXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
560 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
561
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
562 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
563
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
564 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
565
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
566 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
567 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
568
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
569 type GetDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
570 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
571
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
572 // 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
573 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
574
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
575 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
576 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
577
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
578 // 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
579 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
580 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
581 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
582 }
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
583
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
584 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
585 // 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
586
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
587 //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
588 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
589
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
590 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
591
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
592 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
593 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
594
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
595 type GetRisDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
596 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
597
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
598 // 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
599 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
600
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
601 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
602 }
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 type MutateDataXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
605 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
606
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
607 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
608
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
609 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
610
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
611 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
612
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
613 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
614 }
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 type MutateDataXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
617 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
618
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
619 *StatReturnType
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
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
622 type RequestMutationXMLType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
623 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
624
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
625 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
626
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
627 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
628
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
629 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
630
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
631 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
632
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
633 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
634 }
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 type RequestMutationXMLResponseType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
637 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
638
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
639 *StatReturnType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
640 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
641
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
642 type ExceptionType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
643 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
644
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
645 // exception code
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
646 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
647
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
648 // exception message in English
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
649 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
650 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
651
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
652 type RefdataReturnType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
653 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
654
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
655 Reftype struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
656 Value *ReftypeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
657 } `xml:"reftype,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
658
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
659 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
660
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
661 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
662
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
663 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
664
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
665 Eri_adncode struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
666 *Eri_adncodeType
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
667 } `xml:"eri_adncode,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
668
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
669 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
670
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
671 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
672
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
673 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
674
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
675 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
676
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
677 // 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
678 // 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
679 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
680 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
681
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
682 type RefdataReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
683 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
684
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
685 // 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
686 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
687
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
688 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
689
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
690 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
691
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
692 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
693
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
694 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
695
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
696 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
697
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
698 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
699
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
700 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
701
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
702 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
703 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
704
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
705 type StatReturnType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
706 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
707
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
708 // 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
709 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
710
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
711 Message struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
712 } `xml:"message,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
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
715 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
716 //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
717
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
718 // 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
719 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
720
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
721 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
722
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
723 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
724
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
725 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
726
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
727 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
728
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
729 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
730
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
731 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
732
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
733 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
734
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
735 Objname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
736 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
737 } `xml:"objname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
738
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
739 Locname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
740 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
741 } `xml:"locname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
742
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
743 Wwname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
744 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
745 } `xml:"wwname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
746
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
747 Routename struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
748 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
749 } `xml:"routename,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
750
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
751 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
752
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
753 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
754
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
755 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
756
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
757 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
758
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
759 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
760
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
761 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
762
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
763 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
764
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
765 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
766
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
767 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
768
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
769 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
770
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
771 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
772
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
773 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
774
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
775 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
776
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
777 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
778
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
779 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
780
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
781 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
782
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
783 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
784
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
785 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
786
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
787 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
788
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
789 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
790
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
791 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
792
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
793 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
794
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
795 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
796
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
797 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
798
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
799 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
800
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
801 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
802
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
803 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
804
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
805 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
806
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
807 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
808
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
809 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
810
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
811 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
812
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
813 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
814
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
815 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
816
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
817 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
818
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
819 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
820
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
821 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
822
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
823 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
824
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
825 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
826
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
827 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
828
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
829 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
830
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
831 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
832
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
833 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
834
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
835 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
836
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
837 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
838
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
839 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
840
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
841 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
842
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
843 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
844
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
845 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
846
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
847 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
848
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
849 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
850
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
851 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
852
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
853 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
854
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
855 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
856
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
857 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
858
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
859 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
860
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
861 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
862
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
863 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
864
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
865 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
866
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
867 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
868
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
869 // 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
870 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
871
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
872 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
873
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
874 // 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
875 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
876
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
877 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
878
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
879 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
880
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
881 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
882 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
883
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
884 type Eri_locationType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
885 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
886
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
887 // 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
888 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
889
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
890 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
891
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
892 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
893
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
894 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
895
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
896 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
897
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
898 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
899
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
900 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
901
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
902 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
903 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
904
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
905 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
906
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
907 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
908
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
909 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
910
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
911 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
912 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
913
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
914 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
915
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
916 Termname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
917 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
918
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
919 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
920
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
921 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
922
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
923 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
924
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
925 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
926 } `xml:"termname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
927
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
928 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
929
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
930 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
931
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
932 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
933
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
934 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
935
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
936 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
937
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
938 // 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
939 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
940
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
941 // 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
942 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
943
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
944 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
945
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
946 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
947
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
948 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
949
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
950 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
951
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
952 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
953 }
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 type Eri_hscodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
956 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
957
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
958 // 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
959 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
960
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
961 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
962
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
963 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
964 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
965
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
966 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
967
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
968 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
969
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
970 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
971
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
972 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
973
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
974 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
975
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
976 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
977
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
978 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
979
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
980 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
981
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
982 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
983
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
984 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
985
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
986 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
987
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
988 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
989
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
990 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
991
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
992 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
993
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
994 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
995
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
996 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
997
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
998 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
999
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1000 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
1001
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1002 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
1003
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1004 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
1005
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1006 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
1007
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1008 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
1009
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1010 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
1011
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1012 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
1013 } `xml:"name,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 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
1016
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1017 // English (NST2007) description.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1018 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
1019
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1020 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
1021
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1022 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
1023
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1024 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
1025
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1026 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
1027
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1028 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
1029 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1030
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1031 type Eri_adncodeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1032 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
1033
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1034 // 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
1035 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
1036
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1037 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
1038
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1039 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
1040
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1041 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
1042
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1043 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
1044
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1045 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
1046
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1047 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
1048
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1049 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1050 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
1051
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1052 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
1053
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1054 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
1055
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1056 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
1057
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1058 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
1059
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1060 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
1061
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1062 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
1063
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1064 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
1065
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1066 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
1067
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1068 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
1069
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1070 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
1071
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1072 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
1073
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1074 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
1075
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1076 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
1077
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1078 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
1079
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1080 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
1081
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1082 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
1083
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1084 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
1085
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1086 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
1087
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1088 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
1089
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1090 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
1091
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1092 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
1093
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1094 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
1095
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1096 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
1097
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1098 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
1099 } `xml:"name,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 Syn struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1102 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
1103
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1104 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
1105
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1106 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
1107
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1108 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
1109
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1110 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
1111
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1112 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
1113
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1114 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
1115
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1116 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
1117
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1118 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
1119
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1120 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
1121
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1122 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
1123
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1124 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
1125
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1126 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
1127
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1128 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
1129
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1130 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
1131
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1132 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
1133
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1134 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
1135
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1136 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
1137
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1138 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
1139
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1140 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
1141
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1142 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
1143
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1144 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
1145
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1146 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
1147
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1148 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
1149
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1150 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
1151 } `xml:"syn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1152
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1153 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
1154
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1155 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
1156
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1157 // 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
1158 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
1159
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1160 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
1161
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1162 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
1163
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1164 // 0, B, V
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1165 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
1166
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1167 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
1168
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1169 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
1170
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1171 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
1172
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1173 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
1174
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1175 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
1176
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1177 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
1178
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1179 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
1180
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1181 // max weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1182 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
1183
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1184 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
1185
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1186 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1187 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
1188
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1189 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
1190
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1191 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1192 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
1193
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1194 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
1195
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1196 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1197 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
1198
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1199 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
1200
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1201 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
1202
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1203 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
1204
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1205 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
1206
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1207 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
1208 }
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 type Eri_conttypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1211 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
1212
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1213 // 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
1214 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
1215
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1216 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
1217
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1218 // dimensions in cm
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1219 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
1220
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1221 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
1222
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1223 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
1224
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1225 // empty weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1226 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
1227
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1228 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1229 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
1230
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1231 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
1232
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1233 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
1234
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1235 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
1236
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1237 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
1238
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1239 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
1240
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1241 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
1242
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1243 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
1244
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1245 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
1246
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1247 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
1248
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1249 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
1250
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1251 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
1252
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1253 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
1254
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1255 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
1256
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1257 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
1258
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1259 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
1260
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1261 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
1262
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1263 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
1264
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1265 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
1266
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1267 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
1268
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1269 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
1270
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1271 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
1272
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1273 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
1274
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1275 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
1276
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1277 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
1278 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1279
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1280 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
1281
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1282 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
1283
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1284 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
1285
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1286 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
1287
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1288 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
1289 }
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 type Eri_packtypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1292 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
1293
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1294 // 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
1295 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
1296
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1297 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
1298
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1299 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1300 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
1301
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1302 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
1303
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1304 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
1305
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1306 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
1307
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1308 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
1309
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1310 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
1311
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1312 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
1313
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1314 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
1315
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1316 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
1317
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1318 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
1319
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1320 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
1321
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1322 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
1323
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1324 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
1325
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1326 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
1327
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1328 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
1329
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1330 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
1331
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1332 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
1333
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1334 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
1335
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1336 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
1337
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1338 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
1339
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1340 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
1341
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1342 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
1343
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1344 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
1345
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1346 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
1347
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1348 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
1349 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1350
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1351 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
1352
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1353 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
1354
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1355 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
1356
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1357 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
1358
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1359 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
1360 }
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 type Eri_shiptypeType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1363 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
1364
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1365 // 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
1366 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
1367
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1368 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
1369
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1370 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
1371
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1372 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
1373
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1374 // 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
1375 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
1376
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1377 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1378 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
1379
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1380 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
1381
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1382 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
1383
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1384 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
1385
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1386 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
1387
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1388 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
1389
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1390 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
1391
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1392 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
1393
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1394 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
1395
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1396 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
1397
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1398 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
1399
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1400 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
1401
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1402 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
1403
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1404 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
1405
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1406 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
1407
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1408 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
1409
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1410 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
1411
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1412 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
1413
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1414 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
1415
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1416 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
1417
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1418 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
1419
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1420 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
1421
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1422 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
1423
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1424 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
1425
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1426 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
1427 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1428
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1429 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
1430
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1431 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
1432
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1433 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
1434
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1435 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
1436
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1437 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
1438 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1439
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1440 type Eri_countryType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1441 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
1442
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1443 // 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
1444 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
1445
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1446 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
1447
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1448 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
1449
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1450 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
1451
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1452 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
1453
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1454 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
1455
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1456 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1457 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
1458
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1459 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
1460
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1461 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
1462
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1463 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
1464
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1465 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
1466
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1467 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
1468
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1469 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
1470
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1471 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
1472
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1473 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
1474
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1475 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
1476
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1477 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
1478
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1479 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
1480
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1481 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
1482
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1483 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
1484
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1485 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
1486
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1487 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
1488
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1489 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
1490
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1491 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
1492
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1493 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
1494
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1495 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
1496
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1497 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
1498
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1499 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
1500
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1501 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
1502
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1503 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
1504
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1505 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
1506 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1507
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1508 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
1509
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1510 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
1511
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1512 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
1513
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1514 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
1515
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1516 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
1517 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1518
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1519 type Nts_dataType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1520 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
1521
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1522 // 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
1523 // reftype already contains datatype.
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1524 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
1525
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1526 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
1527
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1528 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
1529
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1530 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1531 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
1532
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1533 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
1534
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1535 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
1536
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1537 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
1538
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1539 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
1540
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1541 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
1542
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1543 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
1544
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1545 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
1546
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1547 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
1548
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1549 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
1550
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1551 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
1552
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1553 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
1554
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1555 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
1556
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1557 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
1558
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1559 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
1560
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1561 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
1562
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1563 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
1564
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1565 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
1566
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1567 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
1568
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1569 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
1570
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1571 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
1572
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1573 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
1574
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1575 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
1576
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1577 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
1578
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1579 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
1580 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1581
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1582 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
1583
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1584 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
1585
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1586 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
1587
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1588 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
1589
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1590 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
1591 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1592
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1593 type Ris_idxReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1594 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
1595
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1596 // 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
1597 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
1598
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1599 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
1600
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1601 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
1602
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1603 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
1604
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1605 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
1606
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1607 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
1608
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1609 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
1610
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1611 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
1612
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1613 Objname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1614 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
1615 } `xml:"objname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1616
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1617 Locname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1618 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
1619 } `xml:"locname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1620
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1621 Wwname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1622 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
1623 } `xml:"wwname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1624
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1625 Routename struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1626 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
1627 } `xml:"routename,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1628
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1629 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
1630
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1631 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
1632
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1633 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
1634
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1635 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
1636
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1637 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
1638
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1639 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
1640
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1641 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
1642
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1643 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
1644
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1645 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
1646
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1647 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
1648
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1649 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
1650
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1651 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
1652
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1653 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
1654
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1655 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
1656
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1657 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
1658
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1659 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
1660
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1661 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
1662
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1663 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
1664
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1665 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
1666
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1667 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
1668
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1669 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
1670
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1671 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
1672
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1673 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
1674
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1675 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
1676
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1677 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
1678
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1679 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
1680
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1681 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
1682
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1683 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
1684
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1685 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
1686
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1687 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
1688
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1689 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
1690
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1691 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
1692
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1693 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
1694
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1695 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
1696
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1697 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
1698
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1699 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
1700
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1701 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
1702
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1703 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
1704
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1705 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
1706
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1707 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
1708
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1709 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
1710
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1711 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
1712
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1713 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
1714
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1715 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
1716
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1717 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
1718
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1719 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
1720
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1721 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
1722
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1723 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
1724
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1725 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
1726
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1727 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
1728
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1729 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
1730
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1731 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
1732
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1733 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
1734
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1735 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
1736
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1737 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
1738
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1739 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
1740
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1741 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
1742
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1743 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
1744
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1745 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
1746
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1747 // 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
1748 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
1749
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1750 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
1751
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1752 // 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
1753 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
1754
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1755 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
1756
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1757 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
1758
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1759 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
1760 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1761
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1762 type Eri_locationReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1763 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
1764
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1765 // 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
1766 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
1767
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1768 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
1769
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1770 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
1771
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1772 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
1773
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1774 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
1775
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1776 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
1777
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1778 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
1779
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1780 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1781 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
1782
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1783 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
1784
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1785 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
1786
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1787 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
1788
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1789 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
1790 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1791
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1792 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
1793
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1794 Termname struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1795 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
1796
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1797 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
1798
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1799 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
1800
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1801 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
1802
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1803 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
1804 } `xml:"termname,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1805
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1806 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
1807
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1808 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
1809
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1810 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
1811
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1812 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
1813
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1814 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
1815
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1816 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
1817
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1818 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
1819
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1820 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
1821
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1822 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
1823
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1824 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
1825
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1826 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
1827
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1828 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
1829 }
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 type Eri_hscodeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1832 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
1833
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1834 // 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
1835 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
1836
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1837 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
1838
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1839 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1840 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
1841
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1842 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
1843
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1844 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
1845
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1846 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
1847
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1848 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
1849
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1850 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
1851
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1852 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
1853
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1854 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
1855
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1856 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
1857
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1858 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
1859
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1860 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
1861
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1862 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
1863
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1864 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
1865
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1866 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
1867
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1868 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
1869
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1870 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
1871
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1872 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
1873
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1874 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
1875
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1876 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
1877
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1878 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
1879
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1880 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
1881
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1882 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
1883
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1884 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
1885
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1886 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
1887
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1888 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
1889 } `xml:"name,omitempty"`
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 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
1892
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1893 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
1894
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1895 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
1896
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1897 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
1898
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1899 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
1900
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1901 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
1902
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1903 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
1904 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1905
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1906 type Eri_adncodeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1907 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
1908
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1909 // 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
1910 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
1911
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1912 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
1913
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1914 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
1915
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1916 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
1917
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1918 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
1919
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1920 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
1921
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1922 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
1923
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1924 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1925 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
1926
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1927 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
1928
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1929 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
1930
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1931 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
1932
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1933 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
1934
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1935 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
1936
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1937 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
1938
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1939 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
1940
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1941 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
1942
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1943 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
1944
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1945 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
1946
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1947 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
1948
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1949 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
1950
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1951 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
1952
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1953 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
1954
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1955 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
1956
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1957 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
1958
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1959 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
1960
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1961 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
1962
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1963 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
1964
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1965 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
1966
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1967 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
1968
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1969 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
1970
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1971 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
1972
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1973 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
1974 } `xml:"name,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 Syn struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1977 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
1978
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1979 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
1980
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1981 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
1982
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1983 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
1984
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1985 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
1986
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1987 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
1988
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1989 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
1990
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1991 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
1992
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1993 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
1994
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1995 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
1996
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1997 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
1998
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1999 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
2000
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2001 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
2002
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2003 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
2004
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2005 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
2006
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2007 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
2008
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2009 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
2010
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2011 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
2012
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2013 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
2014
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2015 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
2016
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2017 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
2018
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2019 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
2020
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2021 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
2022
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2023 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
2024
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2025 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
2026 } `xml:"syn,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2027
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2028 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
2029
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2030 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
2031
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2032 // 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
2033 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
2034
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2035 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
2036
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2037 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
2038
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2039 // 0, B, V (Seagoing)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2040 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
2041
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2042 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
2043
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2044 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
2045
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2046 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
2047
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2048 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
2049
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2050 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
2051
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2052 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
2053
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2054 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
2055
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2056 // max weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2057 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
2058
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2059 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
2060
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2061 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2062 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
2063
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2064 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
2065
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2066 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2067 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
2068
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2069 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
2070
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2071 // min weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2072 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
2073
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2074 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
2075
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2076 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
2077
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2078 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
2079
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2080 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
2081
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2082 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
2083 }
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 type Eri_conttypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2086 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
2087
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2088 // 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
2089 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
2090
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2091 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
2092
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2093 // dimensions in cm
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2094 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
2095
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2096 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
2097
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2098 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
2099
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2100 // empty weight in kg
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2101 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
2102
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2103 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2104 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
2105
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2106 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
2107
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2108 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
2109
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2110 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
2111
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2112 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
2113
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2114 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
2115
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2116 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
2117
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2118 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
2119
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2120 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
2121
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2122 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
2123
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2124 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
2125
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2126 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
2127
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2128 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
2129
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2130 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
2131
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2132 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
2133
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2134 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
2135
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2136 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
2137
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2138 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
2139
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2140 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
2141
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2142 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
2143
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2144 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
2145
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2146 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
2147
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2148 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
2149
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2150 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
2151
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2152 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
2153 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2154
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2155 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
2156
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2157 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
2158
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2159 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
2160
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2161 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
2162
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2163 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
2164 }
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 type Eri_packtypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2167 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
2168
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2169 // 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
2170 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
2171
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2172 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
2173
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2174 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2175 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
2176
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2177 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
2178
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2179 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
2180
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2181 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
2182
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2183 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
2184
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2185 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
2186
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2187 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
2188
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2189 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
2190
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2191 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
2192
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2193 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
2194
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2195 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
2196
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2197 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
2198
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2199 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
2200
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2201 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
2202
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2203 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
2204
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2205 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
2206
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2207 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
2208
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2209 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
2210
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2211 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
2212
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2213 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
2214
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2215 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
2216
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2217 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
2218
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2219 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
2220
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2221 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
2222
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2223 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
2224 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2225
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2226 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
2227
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2228 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
2229
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2230 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
2231
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2232 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
2233
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2234 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
2235 }
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 type Eri_shiptypeReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2238 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
2239
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2240 // 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
2241 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
2242
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2243 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
2244
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2245 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
2246
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2247 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
2248
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2249 // 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
2250 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
2251
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2252 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2253 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
2254
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2255 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
2256
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2257 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
2258
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2259 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
2260
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2261 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
2262
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2263 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
2264
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2265 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
2266
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2267 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
2268
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2269 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
2270
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2271 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
2272
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2273 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
2274
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2275 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
2276
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2277 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
2278
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2279 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
2280
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2281 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
2282
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2283 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
2284
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2285 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
2286
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2287 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
2288
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2289 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
2290
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2291 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
2292
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2293 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
2294
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2295 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
2296
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2297 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
2298
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2299 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
2300
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2301 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
2302 } `xml:"name,omitempty"`
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2303
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2304 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
2305
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2306 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
2307
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2308 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
2309
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2310 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
2311
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2312 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
2313 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2314
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2315 type Eri_countryReqMutType struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2316 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
2317
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2318 // 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
2319 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
2320
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2321 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
2322
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2323 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
2324
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2325 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
2326
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2327 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
2328
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2329 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
2330
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2331 Name struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2332 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
2333
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2334 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
2335
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2336 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
2337
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2338 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
2339
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2340 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
2341
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2342 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
2343
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2344 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
2345
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2346 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
2347
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2348 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
2349
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2350 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
2351
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2352 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
2353
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2354 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
2355
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2356 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
2357
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2358 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
2359
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2360 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
2361
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2362 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
2363
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2364 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
2365
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2366 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
2367
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2368 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
2369
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2370 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
2371
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2372 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
2373
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2374 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
2375
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2376 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
2377
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2378 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
2379
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2380 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
2381 } `xml:"name,omitempty"`
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 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
2384
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2385 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
2386
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2387 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
2388
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2389 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
2390
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2391 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
2392 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2393
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2394 type RefWeb interface {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2395
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2396 // 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
2397 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2398 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2399
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2400 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
2401
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2402 // 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
2403 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2404 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2405
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2406 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
2407
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2408 // 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
2409 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2410 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2411
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2412 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
2413
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2414 // 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
2415 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2416 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2417
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2418 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
2419
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2420 // 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
2421 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2422 // - exception
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 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
2425
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2426 // 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
2427 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2428 // - exception
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2429
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2430 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
2431
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2432 // 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
2433 //
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2434 // - exception
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 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
2437 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2438
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2439 type refWeb struct {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2440 client *soap.SOAPClient
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2441 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2442
1810
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2443 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
2444 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
2445 }
7ee9bdaac336 Waterway gauge import: Added support for username/password.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 1799
diff changeset
2446
1799
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2447 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
2448 return &refWeb{
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2449 client: client,
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2450 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2451 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2452
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2453 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
2454 response := new(MatchByCodeResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2455 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
2456 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2457 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2458 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2459
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2460 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2461 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2462
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2463 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
2464 response := new(MatchByNameResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2465 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
2466 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2467 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2468 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2469
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2470 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2471 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2472
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2473 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
2474 response := new(GetMutationsResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2475 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
2476 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2477 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2478 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2479
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2480 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2481 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2482
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2483 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
2484 response := new(GetDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2485 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
2486 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2487 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2488 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2489
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2490 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2491 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2492
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2493 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
2494 response := new(GetRisDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2495 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
2496 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2497 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2498 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2499
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2500 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2501 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2502
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2503 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
2504 response := new(MutateDataXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2505 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
2506 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2507 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2508 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2509
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2510 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2511 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2512
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2513 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
2514 response := new(RequestMutationXMLResponse)
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2515 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
2516 if err != nil {
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2517 return nil, err
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2518 }
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2519
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2520 return response, nil
0e387e0e0d7c Added SOAP interface for ERDMS service. Needs work (namespaces?).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2521 }