The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

GeoIP2::Record::Continent - Contains data for the continent record associated with an IP address

VERSION

version 0.0200

SYNOPSIS

  use 5.008;

  use GeoIP2::WebService::Client;

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

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

  my $continent_rec = $city->continent();
  say $continent_rec->name();

DESCRIPTION

This class contains the continent-level data associated with an IP address.

This record is returned by all the end points.

METHODS

This class provides the following methods:

$continent_rec->continent_code()

This returns a two character continent code like "NA" (North America) or "OC" (Oceania).

This attribute is returned by all end points.

$continent_rec->geoname_id()

This returns a geoname_id for the continent.

This attribute is returned by all end points.

$continent_rec->name()

This returns a name for the continent. The language chosen depends on the languages argument that was passed to the record's constructor. This will be passed through from the GeoIP2::WebService::Client object you used to fetch the data that populated this record.

If the record does not have a name in any of languages you asked for, this method returns undef.

This attribute is returned by all end points.

$continent_rec->names()

This returns a hash reference where the keys are language codes and the values are names. See GeoIP2::WebService::Client for a list of the possible language codes.

This attribute is returned by all end points.

AUTHOR

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2013 by MaxMind, Inc..

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)