Deprecated.
NAME
WebService::MinFraud::Record::Email - Contains data for the email associated with a transaction
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 $email = $insights->email;
say $email->is_high_risk;
DESCRIPTION
This class contains the data for the email associated with a transaction.
METHODS
This class provides the following methods:
first_seen
A date string (e.g. 2017-04-24) to identify the date an email address was first seen by MaxMind. This is expressed using the ISO 8601 date format YYYY-MM-DD.
is_free
This property is true if MaxMind believes that this email is hosted by a free email provider such as Gmail or Yahoo! Mail.
is_high_risk
This field is true if MaxMind believes that this email is likely to be used for fraud. Note that this is also factored into the overall risk_score in the response as well.
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.