initial import
[Net-DashCS.git] / lib / Net / DashCS / Types / legacyLocationData.pm
1 package Net::DashCS::Types::legacyLocationData;
2 use strict;
3 use warnings;
4
5
6 __PACKAGE__->_set_element_form_qualified(0);
7
8 sub get_xmlns { 'http://dashcs.com/api/v1/emergency' };
9
10 our $XML_ATTRIBUTE_CLASS;
11 undef $XML_ATTRIBUTE_CLASS;
12
13 sub __get_attr_class {
14     return $XML_ATTRIBUTE_CLASS;
15 }
16
17 use Class::Std::Fast::Storable constructor => 'none';
18 use base qw(SOAP::WSDL::XSD::Typelib::ComplexType);
19
20 Class::Std::initialize();
21
22 { # BLOCK to scope variables
23
24 my %housenumber_of :ATTR(:get<housenumber>);
25 my %predirectional_of :ATTR(:get<predirectional>);
26 my %streetname_of :ATTR(:get<streetname>);
27 my %suite_of :ATTR(:get<suite>);
28
29 __PACKAGE__->_factory(
30     [ qw(        housenumber
31         predirectional
32         streetname
33         suite
34
35     ) ],
36     {
37         'housenumber' => \%housenumber_of,
38         'predirectional' => \%predirectional_of,
39         'streetname' => \%streetname_of,
40         'suite' => \%suite_of,
41     },
42     {
43         'housenumber' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
44         'predirectional' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
45         'streetname' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
46         'suite' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
47     },
48     {
49
50         'housenumber' => 'housenumber',
51         'predirectional' => 'predirectional',
52         'streetname' => 'streetname',
53         'suite' => 'suite',
54     }
55 );
56
57 } # end BLOCK
58
59
60
61
62
63
64
65 1;
66
67
68 =pod
69
70 =head1 NAME
71
72 Net::DashCS::Types::legacyLocationData
73
74 =head1 DESCRIPTION
75
76 Perl data type class for the XML Schema defined complexType
77 legacyLocationData from the namespace http://dashcs.com/api/v1/emergency.
78
79
80
81
82
83
84 =head2 PROPERTIES
85
86 The following properties may be accessed using get_PROPERTY / set_PROPERTY
87 methods:
88
89 =over
90
91 =item * housenumber
92
93
94 =item * predirectional
95
96
97 =item * streetname
98
99
100 =item * suite
101
102
103
104
105 =back
106
107
108 =head1 METHODS
109
110 =head2 new
111
112 Constructor. The following data structure may be passed to new():
113
114  { # Net::DashCS::Types::legacyLocationData
115    housenumber =>  $some_value, # string
116    predirectional =>  $some_value, # string
117    streetname =>  $some_value, # string
118    suite =>  $some_value, # string
119  },
120
121
122
123
124 =head1 AUTHOR
125
126 Generated by SOAP::WSDL
127
128 =cut
129