|
NAMEGoogle::Checkout::Notification::RefundAmount SYNOPSIS use Google::Checkout::General::GCO;
use Google::Checkout::Notification::RefundAmount;
use Google::Checkout::General::Util qw/is_gco_error/;
my $xml = "/xml/refund_amount_notification.xml";
#--
#-- $xml can either be a file or a complete XML doc string
#--
my $refund = Google::Checkout::Notification::RefundAmount->new(xml => $xml);
die $refund if is_gco_error $refund;
print $refund->get_latest_refund_amount, "\n",
$refund->get_total_refund_amount, "\n";
DESCRIPTIONSub-class of "Google::Checkout::Notification::GCONotification". This module can be used to extract various refund information when the refund amount notification is received.
COPYRIGHTCopyright 2006 Google. All rights reserved. SEE ALSOGoogle::Checkout::Notification::GCONotification
|