From: ivan Date: Tue, 17 Dec 2002 14:36:29 +0000 (+0000) Subject: s/echeck/check/ and doc update X-Git-Tag: BUSINESS_ONLINEPAYMENT_JETTIS_0_02~2 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-Jettis.git;a=commitdiff_plain;h=45300d91a7fee7fe229547d51ce72f2243d459ec s/echeck/check/ and doc update --- diff --git a/Jettis.pm b/Jettis.pm index 3da3b45..673bf67 100644 --- a/Jettis.pm +++ b/Jettis.pm @@ -194,7 +194,7 @@ sub submit { } my $type = lc($content{'type'}); - if ( $type eq 'echeck' ) { + if ( $type eq 'check' ) { } else { croak "$type not (yet) supported"; } @@ -270,15 +270,16 @@ Business::OnlinePayment::Jettis - Jettis backend for Business::OnlinePayment my $tx = new Business::OnlinePayment("Jettis"); $tx->content( - type => 'ECHECK', + type => 'CHECK', login => 'test', #ClientID action => 'Normal Authorization', description => 'Business::OnlinePayment test', amount => '49.95', invoice_number => '100100', name => 'Tofu Beast', - card_number => '4007000000027', - expiration => '09/02', + account_number => '12345', + routing_code => '123456789', + bank_name => 'First National Test Bank', ); $tx->submit(); @@ -294,7 +295,7 @@ For detailed information see L. =head1 NOTE -This module only implements 'ECHECK' (ACH) functionality at this time. Credit +This module only implements 'CHECK' (ACH) functionality at this time. Credit card transactions are not (yet) supported. =head1 COMPATIBILITY