Address-PostCode-UK

 view release on metacpan or  search on metacpan

lib/Address/PostCode/UK.pm  view on Meta::CPAN

Address::PostCode::UK - Interface to the UK PostCode.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use JSON;
use Data::Dumper;
use Address::PostCode::UserAgent;
use Address::PostCode::UK::Location;
use Address::PostCode::UK::Place;
use Address::PostCode::UK::Place::Geo;
use Address::PostCode::UK::Place::Ward;
use Address::PostCode::UK::Place::Council;
use Address::PostCode::UK::Place::Constituency;

use Moo;
use namespace::autoclean;

lib/Address/PostCode/UK/Location.pm  view on Meta::CPAN


Address::PostCode::UK::Location - Represent 'location' for Address::PostCode::UK.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'lat'      => (is => 'ro');
has 'lng'      => (is => 'ro');
has 'distance' => (is => 'ro');
has 'postcode' => (is => 'ro');
has 'uri'      => (is => 'ro');

lib/Address/PostCode/UK/Place.pm  view on Meta::CPAN


Address::PostCode::UK::Place - Placeholder for 'place' for Address::PostCode::UK.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'geo'          => (is => 'ro');
has 'council'      => (is => 'ro');
has 'ward'         => (is => 'ro');
has 'constituency' => (is => 'ro');

=head1 METHODS

lib/Address/PostCode/UK/Place/Constituency.pm  view on Meta::CPAN


Address::PostCode::UK::Place::Constituency - Placeholder for 'constituency' of the Address::PostCode::UK::Place.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

lib/Address/PostCode/UK/Place/Council.pm  view on Meta::CPAN


Address::PostCode::UK::Place::Council - Placeholder for 'council' of the Address::PostCode::UK::Place.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

lib/Address/PostCode/UK/Place/Geo.pm  view on Meta::CPAN


Address::PostCode::UK::Place::Geo - Placeholder for 'geo' of the Address::PostCode::UK::Place.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'lat'      => (is => 'ro');
has 'lng'      => (is => 'ro');
has 'easting'  => (is => 'ro');
has 'northing' => (is => 'ro');
has 'geohash'  => (is => 'ro');

lib/Address/PostCode/UK/Place/Ward.pm  view on Meta::CPAN


Address::PostCode::UK::Place::Ward - Placeholder for 'ward' of the Address::PostCode::UK::Place.

=head1 VERSION

Version 0.18

=cut

use 5.006;
use Data::Dumper;

use Moo;
use namespace::autoclean;

has 'title' => (is => 'ro');
has 'uri'   => (is => 'ro');
has 'code'  => (is => 'ro');

=head1 METHODS

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.572 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )