package Business::CyberSource::Request::Authorization; use strict; use warnings; use namespace::autoclean; our $VERSION = '0.006014'; # VERSION use Moose; extends 'Business::CyberSource::Request'; with qw( Business::CyberSource::Request::Role::BillingInfo Business::CyberSource::Request::Role::CreditCardInfo Business::CyberSource::Request::Role::BusinessRules Business::CyberSource::Request::Role::DCC Business::CyberSource::Request::Role::TaxService ); has '+service' => ( remote_name => 'ccAuthService' ); __PACKAGE__->meta->make_immutable; 1; # ABSTRACT: CyberSource Authorization Request object __END__ =pod =head1 NAME Business::CyberSource::Request::Authorization - CyberSource Authorization Request object =head1 VERSION version 0.006014 =head1 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, }, }, }); =head1 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. =head1 EXTENDS L =head1 WITH =over =item L =item L =item L =item L =back =for Pod::Coverage BUILD =head1 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. =head1 AUTHOR Caleb Cushing =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2012 by HostGator.com. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut