|
NAMEGoogle::Checkout::Command::RefundOrder SYNOPSIS use Google::Checkout::General::GCO;
use Google::Checkout::Command::RefundOrder;
use Google::Checkout::General::Util qw/is_gco_error/;
my $gco = Google::Checkout::General::GCO->new;
my $refund_order = Google::Checkout::Command::RefundOrder->new(
order_number => 156310171628413,
amount => 5,
comment => "Refund to user",
reason => "User wants to refund");
my $response = $gco->command($refund_order);
die $response if is_gco_error($response);
print $response,"\n\n";
DESCRIPTIONA sub-class of "Google::Checkout::Command::GCOCommand". This module is used to refund an order.
COPYRIGHTCopyright 2006 Google. All rights reserved. SEE ALSOGoogle::Checkout::Command::GCOCommand
|