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::Notification::OrderStateChange(3) User Contributed Perl Documentation Google::Checkout::Notification::OrderStateChange(3)

Google::Checkout::Notification::OrderStateChange

  use Google::Checkout::General::GCO;
  use Google::Checkout::Notification::OrderStateChange;
  use Google::Checkout::General::Util qw/is_gco_error/;

  my $xml = "/xml/order_state_change_notification.xml";

  #--
  #-- $xml can either be a file or a complete XML doc string
  #--
  my $state_change = Google::Checkout::Notification::OrderStateChange->new(xml => $xml);
  die $state_change if is_gco_error $state_change;

  print $state_change->get_new_fulfillment_order_state, "\n",
        $state_change->get_previous_fulfillment_order_state, "\n",
        $state_change->get_new_financial_order_state, "\n", 
        $state_change->get_previous_financial_order_state, "\n",
        $state_change->get_reason,"\n";

Sub-class of "google::Checkout::Notification::GCONotification". This module can be used to extract various state change information when the order state change notification is received.
new XML => ...
Constructor. Takes either a XML file or XML doc as data string. If the XML is invalid (syntax error for example), "Google::Checkout::General::Error" is returned.
type
Always return "Google::Checkout::XML::Constants::ORDER_STATE_CHANGE_NOTIFICATION".
get_new_fulfillment_order_state
Returns the new fulfillment order state.
get_new_financial_order_state
Returns the new financial order state.
get_previous_fulfillment_order_state
Returns the previous filfillment order state.
get_previous_financial_order_state
Returns the previous financial order state.
get_reason
Returns the reason for the state change.

Copyright 2006 Google. All rights reserved.

Google::Checkout::Notification::GCONotification
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.