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