diff options
author | Mark Wells <mark@freeside.biz> | 2012-11-02 14:28:31 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-11-02 14:28:31 -0700 |
commit | 7be09bed7f9acdf8a20362c49831dfb39fc4e7a4 (patch) | |
tree | 51ed1f3337fd567897a12553fe6a6ae2ced3ce7c /EZLocate/Types |
initial commit
Diffstat (limited to 'EZLocate/Types')
-rw-r--r-- | EZLocate/Types/Geocode.pm | 116 | ||||
-rw-r--r-- | EZLocate/Types/GeocodeSequence.pm | 110 | ||||
-rw-r--r-- | EZLocate/Types/MatchType.pm | 120 | ||||
-rw-r--r-- | EZLocate/Types/MatchTypeSequence.pm | 106 | ||||
-rw-r--r-- | EZLocate/Types/NameValue.pm | 111 | ||||
-rw-r--r-- | EZLocate/Types/OutputField.pm | 120 | ||||
-rw-r--r-- | EZLocate/Types/OutputFieldSequence.pm | 106 | ||||
-rw-r--r-- | EZLocate/Types/Record.pm | 105 | ||||
-rw-r--r-- | EZLocate/Types/RecordSequence.pm | 107 |
9 files changed, 1001 insertions, 0 deletions
diff --git a/EZLocate/Types/Geocode.pm b/EZLocate/Types/Geocode.pm new file mode 100644 index 0000000..f5741c1 --- /dev/null +++ b/EZLocate/Types/Geocode.pm @@ -0,0 +1,116 @@ +package Geo::EZLocate::Types::Geocode; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %resultCode_of :ATTR(:get<resultCode>); +my %mAttributes_of :ATTR(:get<mAttributes>); + +__PACKAGE__->_factory( + [ qw( resultCode + mAttributes + + ) ], + { + 'resultCode' => \%resultCode_of, + 'mAttributes' => \%mAttributes_of, + }, + { + 'resultCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::int', + 'mAttributes' => 'Geo::EZLocate::Types::Record', + }, + { + + 'resultCode' => 'resultCode', + 'mAttributes' => 'mAttributes', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::Geocode + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +Geocode from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * resultCode + + +=item * mAttributes + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::Geocode + resultCode => $some_value, # int + mAttributes => { # Geo::EZLocate::Types::Record + nv => { # Geo::EZLocate::Types::NameValue + name => $some_value, # string + value => $some_value, # string + }, + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/GeocodeSequence.pm b/EZLocate/Types/GeocodeSequence.pm new file mode 100644 index 0000000..b07fde4 --- /dev/null +++ b/EZLocate/Types/GeocodeSequence.pm @@ -0,0 +1,110 @@ +package Geo::EZLocate::Types::GeocodeSequence; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %sequence_of :ATTR(:get<sequence>); + +__PACKAGE__->_factory( + [ qw( sequence + + ) ], + { + 'sequence' => \%sequence_of, + }, + { + 'sequence' => 'Geo::EZLocate::Types::Geocode', + }, + { + + 'sequence' => 'sequence', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::GeocodeSequence + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +GeocodeSequence from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * sequence + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::GeocodeSequence + sequence => { # Geo::EZLocate::Types::Geocode + resultCode => $some_value, # int + mAttributes => { # Geo::EZLocate::Types::Record + nv => { # Geo::EZLocate::Types::NameValue + name => $some_value, # string + value => $some_value, # string + }, + }, + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/MatchType.pm b/EZLocate/Types/MatchType.pm new file mode 100644 index 0000000..997c60c --- /dev/null +++ b/EZLocate/Types/MatchType.pm @@ -0,0 +1,120 @@ +package Geo::EZLocate::Types::MatchType; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %name_of :ATTR(:get<name>); +my %description_of :ATTR(:get<description>); +my %id_of :ATTR(:get<id>); + +__PACKAGE__->_factory( + [ qw( name + description + id + + ) ], + { + 'name' => \%name_of, + 'description' => \%description_of, + 'id' => \%id_of, + }, + { + 'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + 'description' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + 'id' => 'SOAP::WSDL::XSD::Typelib::Builtin::int', + }, + { + + 'name' => 'name', + 'description' => 'description', + 'id' => 'id', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::MatchType + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +MatchType from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * name + + +=item * description + + +=item * id + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::MatchType + name => $some_value, # string + description => $some_value, # string + id => $some_value, # int + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/MatchTypeSequence.pm b/EZLocate/Types/MatchTypeSequence.pm new file mode 100644 index 0000000..1ccfb56 --- /dev/null +++ b/EZLocate/Types/MatchTypeSequence.pm @@ -0,0 +1,106 @@ +package Geo::EZLocate::Types::MatchTypeSequence; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %types_of :ATTR(:get<types>); + +__PACKAGE__->_factory( + [ qw( types + + ) ], + { + 'types' => \%types_of, + }, + { + 'types' => 'Geo::EZLocate::Types::MatchType', + }, + { + + 'types' => 'types', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::MatchTypeSequence + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +MatchTypeSequence from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * types + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::MatchTypeSequence + types => { # Geo::EZLocate::Types::MatchType + name => $some_value, # string + description => $some_value, # string + id => $some_value, # int + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/NameValue.pm b/EZLocate/Types/NameValue.pm new file mode 100644 index 0000000..98070a7 --- /dev/null +++ b/EZLocate/Types/NameValue.pm @@ -0,0 +1,111 @@ +package Geo::EZLocate::Types::NameValue; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %name_of :ATTR(:get<name>); +my %value_of :ATTR(:get<value>); + +__PACKAGE__->_factory( + [ qw( name + value + + ) ], + { + 'name' => \%name_of, + 'value' => \%value_of, + }, + { + 'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + 'value' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + }, + { + + 'name' => 'name', + 'value' => 'value', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::NameValue + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +NameValue from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * name + + +=item * value + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::NameValue + name => $some_value, # string + value => $some_value, # string + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/OutputField.pm b/EZLocate/Types/OutputField.pm new file mode 100644 index 0000000..b7e237e --- /dev/null +++ b/EZLocate/Types/OutputField.pm @@ -0,0 +1,120 @@ +package Geo::EZLocate::Types::OutputField; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %name_of :ATTR(:get<name>); +my %description_of :ATTR(:get<description>); +my %type_of :ATTR(:get<type>); + +__PACKAGE__->_factory( + [ qw( name + description + type + + ) ], + { + 'name' => \%name_of, + 'description' => \%description_of, + 'type' => \%type_of, + }, + { + 'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + 'description' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', + 'type' => 'SOAP::WSDL::XSD::Typelib::Builtin::int', + }, + { + + 'name' => 'name', + 'description' => 'description', + 'type' => 'type', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::OutputField + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +OutputField from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * name + + +=item * description + + +=item * type + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::OutputField + name => $some_value, # string + description => $some_value, # string + type => $some_value, # int + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/OutputFieldSequence.pm b/EZLocate/Types/OutputFieldSequence.pm new file mode 100644 index 0000000..eb79a5a --- /dev/null +++ b/EZLocate/Types/OutputFieldSequence.pm @@ -0,0 +1,106 @@ +package Geo::EZLocate::Types::OutputFieldSequence; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %fields_of :ATTR(:get<fields>); + +__PACKAGE__->_factory( + [ qw( fields + + ) ], + { + 'fields' => \%fields_of, + }, + { + 'fields' => 'Geo::EZLocate::Types::OutputField', + }, + { + + 'fields' => 'fields', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::OutputFieldSequence + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +OutputFieldSequence from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * fields + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::OutputFieldSequence + fields => { # Geo::EZLocate::Types::OutputField + name => $some_value, # string + description => $some_value, # string + type => $some_value, # int + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/Record.pm b/EZLocate/Types/Record.pm new file mode 100644 index 0000000..96f2c90 --- /dev/null +++ b/EZLocate/Types/Record.pm @@ -0,0 +1,105 @@ +package Geo::EZLocate::Types::Record; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %nv_of :ATTR(:get<nv>); + +__PACKAGE__->_factory( + [ qw( nv + + ) ], + { + 'nv' => \%nv_of, + }, + { + 'nv' => 'Geo::EZLocate::Types::NameValue', + }, + { + + 'nv' => 'nv', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::Record + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +Record from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * nv + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::Record + nv => { # Geo::EZLocate::Types::NameValue + name => $some_value, # string + value => $some_value, # string + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + diff --git a/EZLocate/Types/RecordSequence.pm b/EZLocate/Types/RecordSequence.pm new file mode 100644 index 0000000..c5293d8 --- /dev/null +++ b/EZLocate/Types/RecordSequence.pm @@ -0,0 +1,107 @@ +package Geo::EZLocate::Types::RecordSequence; +use strict; +use warnings; + + +__PACKAGE__->_set_element_form_qualified(0); + +sub get_xmlns { 'http://ezlocate.na.teleatlas.com/Geocoding.xsd1' }; + +our $XML_ATTRIBUTE_CLASS; +undef $XML_ATTRIBUTE_CLASS; + +sub __get_attr_class { + return $XML_ATTRIBUTE_CLASS; +} + +use Class::Std::Fast::Storable constructor => 'none'; +use base qw(SOAP::WSDL::XSD::Typelib::ComplexType); + +Class::Std::initialize(); + +{ # BLOCK to scope variables + +my %record_of :ATTR(:get<record>); + +__PACKAGE__->_factory( + [ qw( record + + ) ], + { + 'record' => \%record_of, + }, + { + 'record' => 'Geo::EZLocate::Types::Record', + }, + { + + 'record' => 'record', + } +); + +} # end BLOCK + + + + + + + +1; + + +=pod + +=head1 NAME + +Geo::EZLocate::Types::RecordSequence + +=head1 DESCRIPTION + +Perl data type class for the XML Schema defined complexType +RecordSequence from the namespace http://ezlocate.na.teleatlas.com/Geocoding.xsd1. + + + + + + +=head2 PROPERTIES + +The following properties may be accessed using get_PROPERTY / set_PROPERTY +methods: + +=over + +=item * record + + + + +=back + + +=head1 METHODS + +=head2 new + +Constructor. The following data structure may be passed to new(): + + { # Geo::EZLocate::Types::RecordSequence + record => { # Geo::EZLocate::Types::Record + nv => { # Geo::EZLocate::Types::NameValue + name => $some_value, # string + value => $some_value, # string + }, + }, + }, + + + + +=head1 AUTHOR + +Generated by SOAP::WSDL + +=cut + |