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

WebService::MinFraud::Validator - Validation for the minFraud requests

VERSION

version 0.004000

SYNOPSIS

    use 5.010;

    use WebService::MinFraud::Validator;

    my $validator = WebService::MinFraud::Validator->new;
    my $request = { device => { ip_address => '24.24.24.24' } };
    $validator->validate_request($request);

DESCRIPTION

This module defines the request schema for the minFraud API. In addition, it provides a validate_request method that is used to validate any request passed to the score or insights methods.

METHODS

validate_request

This method takes a minFraud request as a HashRef and validates it against the minFraud request schema. If the request HashRef fails validation, an exception is thrown, which is a string containing all of the validation errors.

AUTHOR

Mateu Hunter <mhunter@maxmind.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 - 2016 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.