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

NAME

WebService::MinFraud::Model::Chargeback - Model class for minFraud Chargeback

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 = { ip_address => '24.24.24.24' } ;
  my $chargeback = $client->chargeback($request);

  say $chargeback->isa('WebService::MinFraud::Model::Chargeback');

DESCRIPTION

This class provides an interface consistent with the fraud services' model interfaces.

The Chargeback API will not return any content. See API documentation for more details.

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.