
Business::Payment::CreditCard - Credit Card object

use Business::Payment::CreditCard;
my $bp = Business::Payment::CreditCard->new(
number => '4111111111111111'
);

Business::Payment::CreditCard provides a model for passing Credit Card information to a Charge.

Set/Get the Card Security Code for this Credit Card. This is also referred to as the CVV, CVV2, CVVC, CVC, V-Code or CCV.
http://en.wikipedia.org/wiki/Card_Verification_Value
Set/Get the expiration for this Credit Card. Expects a DateTime object, but can coerce a String.
Set/Get the credit card number.

Returns a stringified version of the expiration date using the supplied format. (See DateTime's strftime)

Jay Shirley, <jshirley@cpan.org>

Copyright 2009 Cold Hard Code, LLC, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.