initial commit
[Geo-EZLocate.git] / EZLocate / Types / MatchTypeSequence.pm
1 package Geo::EZLocate::Types::MatchTypeSequence;
2 use strict;
3 use warnings;
4
5
6 __PACKAGE__->_set_element_form_qualified(0);
7
8 sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' };
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 %types_of :ATTR(:get<types>);
25
26 __PACKAGE__->_factory(
27     [ qw(        types
28
29     ) ],
30     {
31         'types' => \%types_of,
32     },
33     {
34         'types' => 'Geo::EZLocate::Types::MatchType',
35     },
36     {
37
38         'types' => 'types',
39     }
40 );
41
42 } # end BLOCK
43
44
45
46
47
48
49
50 1;
51
52
53 =pod
54
55 =head1 NAME
56
57 Geo::EZLocate::Types::MatchTypeSequence
58
59 =head1 DESCRIPTION
60
61 Perl data type class for the XML Schema defined complexType
62 MatchTypeSequence from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1.
63
64
65
66
67
68
69 =head2 PROPERTIES
70
71 The following properties may be accessed using get_PROPERTY / set_PROPERTY
72 methods:
73
74 =over
75
76 =item * types
77
78
79
80
81 =back
82
83
84 =head1 METHODS
85
86 =head2 new
87
88 Constructor. The following data structure may be passed to new():
89
90  { # Geo::EZLocate::Types::MatchTypeSequence
91    types =>  { # Geo::EZLocate::Types::MatchType
92      name =>  $some_value, # string
93      description =>  $some_value, # string
94      id =>  $some_value, # int
95    },
96  },
97
98
99
100
101 =head1 AUTHOR
102
103 Generated by SOAP::WSDL
104
105 =cut
106