The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::MinFraud::Record::Country - Contains data for the country record associated with an IP address

VERSION

version 1.009001

SYNOPSIS

  use 5.010;

  use WebService::MinFraud::Client;

  my $client = WebService::MinFraud::Client->new(
      account_id  => 42,
      license_key => 'abcdef123456',
  );
  my $request  = { device => { ip_address => '24.24.24.24' } };
  my $insights = $client->insights($request);
  my $country  = $insights->ip_address->country;
  say $country->is_high_risk;

DESCRIPTION

This class contains the country data associated with a transaction.

This record is returned by the Insights web service.

METHODS

This class provides the same methods as GeoIP2::Record::Country in addition to:

is_high_risk

Returns a boolean indicating whether the country of the ip_address is considered high risk.

PREDICATE METHODS

The following predicate methods are available, which return true if the related data was present in the response body, false if otherwise:

has_is_high_risk

SUPPORT

Bugs may be submitted through https://github.com/maxmind/minfraud-api-perl/issues.

AUTHOR

Mateu Hunter <mhunter@maxmind.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 - 2019 by MaxMind, Inc.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.