Business-OnlinePayment-IPPay
view release on metacpan or search on metacpan
$content{'TransactionType'} = $actions{$action} || $action;
} elsif ($self->transaction_type eq 'ECHECK') {
$content{'TransactionType'} = $check_actions{$action} || $action;
# ACCOUNT TYPE MAP
my %account_types = ('personal checking' => 'CHECKING',
'personal savings' => 'SAVINGS',
'business checking' => 'CHECKING',
'business savings' => 'SAVINGS',
#not technically B:OP valid i guess?
'checking' => 'CHECKING',
'savings' => 'SAVINGS',
);
$content{'account_type'} = $account_types{lc($content{'account_type'})}
|| $content{'account_type'};
}
$content{Origin} = 'RECURRING'
if ($content{recurring_billing} &&$content{recurring_billing} eq 'YES' );
( run in 0.283 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )