initial commit
[Geo-EZLocate.git] / EZLocate / Types / Record.pm
1 package Geo::EZLocate::Types::Record;
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 %nv_of :ATTR(:get<nv>);
25
26 __PACKAGE__->_factory(
27     [ qw(        nv
28
29     ) ],
30     {
31         'nv' => \%nv_of,
32     },
33     {
34         'nv' => 'Geo::EZLocate::Types::NameValue',
35     },
36     {
37
38         'nv' => 'nv',
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::Record
58
59 =head1 DESCRIPTION
60
61 Perl data type class for the XML Schema defined complexType
62 Record 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 * nv
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::Record
91    nv =>  { # Geo::EZLocate::Types::NameValue
92      name =>  $some_value, # string
93      value =>  $some_value, # string
94    },
95  },
96
97
98
99
100 =head1 AUTHOR
101
102 Generated by SOAP::WSDL
103
104 =cut
105