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

NAME

Business::CyberSource::Request::Authorization - CyberSource Authorization Request object

VERSION

version 0.006001

SYNOPSIS

        use Business::CyberSource::Request::Authorization;

        Business::CyberSource::Request::Authorization->new({
                reference_code => '42',
                bill_to => {
                        first_name  => 'Caleb',
                        last_name   => 'Cushing',
                        street      => '100 somewhere st',
                        city        => 'Houston',
                        state       => 'TX',
                        postal_code => '77064',
                        country     => 'US',
                        email       => 'xenoterracide@gmail.com',
                },
                purchase_totals => {
                        currency => 'USD',
                        total    => 5.00,
                },
                card => {
                        account_number => '4111111111111111',
                        expiration => {
                                month => 9,
                                year  => 2025,
                        },
                },
        });

DESCRIPTION

Offline authorization means that when you submit an order using a credit card, you will not know if the funds are available until you capture the order and receive confirmation of payment. You typically will not ship the goods until you receive this payment confirmation. For offline credit cards, it will take typically five days longer to receive payment confirmation than for online cards.

EXTENDS

Business::CyberSource::Request

WITH

Business::CyberSource::Request::Role::BillingInfo
Business::CyberSource::Request::Role::CreditCardInfo
Business::CyberSource::Request::Role::BusinessRules
Business::CyberSource::Request::Role::DCC

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/xenoterracide/Business-CyberSource/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Caleb Cushing <xenoterracide@gmail.com>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 by Caleb Cushing.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)