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::MaxMind - Contains data for the maxmind record returned from a web service query

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 maxmind record data returned from a web service query.

       Unlike other record classes, the data in this record is associated with your MaxMind account, not with an
       IP address.

       This record is returned by all the end points.

Methods

       This class provides the following methods:

   $maxmind_rec->queries_remaining()
       The number of queries remaining for the end point you just queried. Note that this is an approximation as
       query counts are only periodically synced across all of MaxMind's servers.

Name

       GeoIP2::Record::MaxMind - Contains data for the maxmind record returned from a web service query

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 $maxmind_rec = $insights->maxmind();
         print $maxmind_rec->queries_remaining(), "\n";

Version

       version 2.006002

See Also