logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

GeoIP2::Record::Postal - Contains data for the postal code record associated with an IP address

Authors

       •   Dave Rolsky <drolsky@maxmind.com>

       •   Greg Oschwald <goschwald@maxmind.com>

       •   Mark Fowler <mfowler@maxmind.com>

       •   Olaf Alders <oalders@maxmind.com>

Description

       This class contains the postal code data associated with an IP address.

       This record is returned by all the end points except the Country end point.

Methods

       This class provides the following methods:

   $postal_rec->code()
       This returns the postal code associated with the IP address. Postal codes are not available for all
       countries. In some countries, this will only contain part of the postal code.

       This attribute is returned by all end points except the Country end point.

   $postal_rec->confidence()
       This returns a value from 0-100 indicating MaxMind's confidence that the postal code is correct.

       This attribute is only available from the Insights end point and the GeoIP2 Enterprise database.

Name

       GeoIP2::Record::Postal - Contains data for the postal code record associated with an IP address

Support

       Bugs may be submitted through <https://github.com/maxmind/GeoIP2-perl/issues>.

Synopsis

         use 5.008;

         use GeoIP2::WebService::Client;

         my $client = GeoIP2::WebService::Client->new(
             account_id  => 42,
             license_key => 'abcdef123456',
         );

         my $insights = $client->insights( ip => '24.24.24.24' );

         my $postal_rec = $insights->postal();
         print $postal_rec->code(), "\n";

Version

       version 2.006002

See Also