The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Google::Checkout::Command::ArchiveOrder

SYNOPSIS

  use Google::Checkout::General::GCO;
  use Google::Checkout::Command::ArchiveOrder;
  use Google::Checkout::General::Util qw/is_gco_error/;

  my $gco = Google::Checkout::General::GCO->new;

  my $archive = Google::Checkout::Command::ArchiveOrder->new(order_number => 1234);
  my $response = $gco->command($archive);
  die $response if is_gco_error($response);
  print $response,"\n\n";

DESCRIPTION

A sub-class of Google::Checkout::Command::GCOCommand. This module is used to archive an order.

new ORDER_NUMER => ...

Constructor. Takes a Google order number

to_xml

Returns the XML that will be sent to Google Checkout. Note that this function should not be used directly. Instead, it's called indirectly by the Google::Checkout::General::GCO object internally.

COPYRIGHT

Copyright 2006 Google. All rights reserved.

SEE ALSO

Google::Checkout::Command::GCOCommand