summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorivan <ivan>2010-01-19 22:34:48 +0000
committerivan <ivan>2010-01-19 22:34:48 +0000
commit9ed134840a3aa39429a8763dc9d0f6bc4cca8f08 (patch)
treeb0d73eae27585d86421c08c01a495ce5020ad662 /lib
parent2e165040cb45be2dbb4d68ff1f99b7a38c08114c (diff)
doc: in synopsis example, move merchant_id/terminal_id from content
call to new constructor, and add currency. also indent the example code so it formats properly
Diffstat (limited to 'lib')
-rw-r--r--lib/Business/OnlinePayment/PaymenTech.pm52
1 files changed, 26 insertions, 26 deletions
diff --git a/lib/Business/OnlinePayment/PaymenTech.pm b/lib/Business/OnlinePayment/PaymenTech.pm
index 82b50d3..8ce9a1e 100644
--- a/lib/Business/OnlinePayment/PaymenTech.pm
+++ b/lib/Business/OnlinePayment/PaymenTech.pm
@@ -8,7 +8,7 @@ use Tie::IxHash;
use vars qw($VERSION $DEBUG @ISA $me);
@ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '2.02';
+$VERSION = '2.03_01';
$DEBUG = 0;
$me='Business::OnlinePayment::PaymenTech';
@@ -285,31 +285,31 @@ Business::OnlinePayment::PaymenTech - Chase Paymentech backend for Business::Onl
=head1 SYNOPSIS
-$trans = new Business::OnlinePayment('PaymenTech');
-$trans->content(
- login => "login",
- password => "password",
- merchant_id => "000111222333",
- terminal_id => "001",
- type => "CC",
- card_number => "5500000000000004",
- expiration => "0211",
- address => "123 Anystreet",
- city => "Sacramento",
- zip => "95824",
- action => "Normal Authorization",
- amount => "24.99",
-
-);
-
-$trans->submit;
-if($trans->is_approved) {
- print "Approved: ".$trans->authorization;
-
-} else {
- print "Failed: ".$trans->error_message;
-
-}
+ $trans = new Business::OnlinePayment('PaymenTech',
+ merchant_id => "000111222333",
+ terminal_id => "001",
+ currency => "USD", # CAD, MXN
+ );
+
+ $trans->content(
+ login => "login",
+ password => "password",
+ type => "CC",
+ card_number => "5500000000000004",
+ expiration => "0211",
+ address => "123 Anystreet",
+ city => "Sacramento",
+ zip => "95824",
+ action => "Normal Authorization",
+ amount => "24.99",
+ );
+
+ $trans->submit;
+ if($trans->is_approved) {
+ print "Approved: ".$trans->authorization;
+ } else {
+ print "Failed: ".$trans->error_message;
+ }
=head1 NOTES