|
NAMEGoogle::Checkout::Command::SendBuyerMessage SYNOPSIS use Google::Checkout::General::GCO;
use Google::Checkout::Command::SendBuyerMessage;
use Google::Checkout::General::Util qw/is_gco_error/;
my $gco = Google::Checkout::General::GCO->new;
my $send_message = Google::Checkout::Command::SendBuyerMessage->new(
order_number => 156310171628413,
message => "Message to buyer",
send_email => 1);
my $response = $gco->command($send_message);
die $response if is_gco_error($response);
print $response,"\n\n";
DESCRIPTIONA sub-class of "Google::Checkout::Command::GCOCommand". This module is used to send messages to buyer.
COPYRIGHTCopyright 2006 Google. All rights reserved. SEE ALSOGoogle::Checkout::Command::GCOCommand
|