GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Google::Checkout::Command::AddTrackingData(3) User Contributed Perl Documentation Google::Checkout::Command::AddTrackingData(3)

Google::Checkout::Command::AddTrackingData

  use Google::Checkout::General::GCO;
  use Google::Checkout::Command::AddTrackingData;
  use Google::Checkout::XML::Constants;
  use Google::Checkout::General::Util qw/is_gco_error/;

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

  #--
  #-- Create a add trcking data (DHL carrier with tracking number 5678) command
  #--
  my $add_tracking = Google::Checkout::Command::AddTrackingData->new(
                     order_number    => 156310171628413,
                     carrier         => Google::Checkout::XML::Constants::DHL,
                     tracking_number => 5678);
  my $response = $gco->command($add_tracking, $run_diagnose);
  die $response if is_gco_error($response);
  print $response,"\n\n";

A sub-class of "Google::Checkout::Command::DeliverOrder". This module is used to add tracking data to an order.
new ORDER_NUMBER => ..., CARRIER => ..., TRACKING_NUMBER => ...
Constructor. Takes a Google order number, a tracking number and a carrier.
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 2006 Google. All rights reserved.

Google::Checkout::General::GCO Google::Checkout::Command::DeliverOrder
2007-09-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.