| Business-UPS-Tracking documentation | view source | Contained in the Business-UPS-Tracking distribution. |
Business::UPS::Tracking::Response - A response from the UPS webservice
my $response = $request->run(); my $shipment = $response->shipment->[0]; say $shipment->ScheduledDelivery;
This class represents a UPS tracking response. This class glues a Business::UPS::Tracking::Request object and a Business::UPS::Tracking::Shipment object togheter. All methods and accessors available in Business::UPS::Tracking::Shipment can also be accessed via this class.
The request that lead to this response. Business::UPS::Tracking::Request object.
Parsed xml document. XML::LibXML::Document object
Array reference of shipments in the response ( Business::UPS::Tracking::Shipment::SmallPackage or Business::UPS::Tracking::Shipment::Freight objects)
Customer context as supplied in the request
| Business-UPS-Tracking documentation | view source | Contained in the Business-UPS-Tracking distribution. |