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

NAME

WebService::MinFraud::Record::ScoreIPAddress - Contains data for the IP address's risk

VERSION

version 1.007000

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 $score      = $client->score($request);
  my $ip_address = $score->ip_address;
  say $ip_address->risk;

DESCRIPTION

This class contains the risk for the given ip_address.

METHODS

This class provides the following method:

risk

Returns the risk associated with the IP address. The value ranges from 0.01 to 99. A higher value indicates a higher risk. The IP address risk is distinct from the value returned by risk_score methods of WebService::MinFraud::Model::Insights and WebService::MinFraud::Model::Score modules.

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_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 - 2018 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.