Daniel Browning > Business-Shipping > Business::Shipping::USPS_Online::Tracking

Download:
Business-Shipping-2.03.tar.gz

Annotate this POD

CPAN RT

New  1
Open  2
View Bugs
Report a bug
Source  

NAME ^

Business::Shipping::USPS_Online::Tracking - A USPS module for Tracking Packages

See Tracking.pm POD for usage information.

EXAMPLE

my $results = $tracker->results();

# The results hash will contain this type of information

{ # Summary will contain the latest activity entry, a copy of activity->[0] summary => { }, # Activity of the package in transit, newest entries first. activity => [ { # Address information of the activity address => { city => '...', state => '...', zip => '...', country => '...', signedforbyname => '...', },

    # Description of activity
    status_description => '...',
    
    # Date of activity (YYYYMMDD)
    date => '...',
    # Time of activity (HHMMSS)
    time => '...',
  }
 
  ],
}

COPYRIGHT AND LICENCE ^

Copyright (c) 2004 InfoGears Inc. http://www.infogears.com All rights reserved.

Portions Copyright (c) 2003-2004 Kavod Technologies, Dan Browning. All rights reserved.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. See LICENSE for more info.