| Business-UPS-Tracking documentation | Contained in the Business-UPS-Tracking distribution. |
Business::UPS::Tracking::Shipment::Freight - A freight shipment
This class has not yet been implemented (patches welcome). If you need to
work with freight shipments you still can access the xml tree via
$shipment->xml.
This class represents an freight shipment and extends Business::UPS::Tracking::Shipment. Usually it is created automatically from a Business::UPS::Tracking::Response object.
Returns 'Freight'
Moose meta method
| Business-UPS-Tracking documentation | Contained in the Business-UPS-Tracking distribution. |
# ============================================================================ package Business::UPS::Tracking::Shipment::Freight; # ============================================================================ use utf8; use 5.0100; use Moose; extends 'Business::UPS::Tracking::Shipment'; __PACKAGE__->meta->error_class("Business::UPS::Tracking::Exception"); our $VERSION = $Business::UPS::Tracking::VERISON;
sub BUILD { warn('Business::UPS::Tracking::Shipment::Freight not yet implemented'); return; }
sub ShipmentType { return 'Freight'; }
__PACKAGE__->meta->make_immutable; no Moose; 1;