NAME
Business::Shipping::UPS_Online::Tracking
EXAMPLE
my $results = $tracker->results();
# The results hash will contain this type of information
{ # Date the package was picked up pickup_date => '...',
# Scheduled delivery date (YYYYMMDD)
scheduled_delivery_date
=>
'...'
,
# Scheduled delivery time (HHMMSS)
scheduled_delivery_time
=>
'...'
,
# Rescheduled delivery date (YYYYMMDD)
rescheduled_delivery_date
=>
'...'
,
# Rescheduled delivery time (HHMMSS)
rescheduled_delivery_time
=>
'...'
,
# Shipment method code and description for package
service_code
=>
'...'
,
service_description
=>
'...'
,
# 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
=>
'...'
,
description
=>
'...'
,
code
=>
'...'
,
signedforbyname
=>
'...'
,
},
# Code of activity
status_code
=>
'...'
,
status_description
=>
'...'
,
# Date of activity (YYYYMMDD)
date
=>
'...'
,
# Time of activity (HHMMSS)
time
=>
'...'
,
}
],
}
AUTHOR
Rusty Conover <rconover@infogears.com>
COPYRIGHT AND LICENCE
Copyright 2004-2007 Infogears Inc. Portions Copyright 2003-2011 Daniel Browning <db@kavod.com>. 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.