| Business-Shipping documentation | Contained in the Business-Shipping distribution. |
Business::Shipping::Package - Abstract class
Represents package-level information (e.g. weight). Subclasses provide real implementation.
Accessor for weight.
Package ID (for unique identification in a list of packages).
Daniel Browning, db@kavod.com, http://www.kavod.com/
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.
| Business-Shipping documentation | Contained in the Business-Shipping distribution. |
package Business::Shipping::Package;
use Any::Moose; use version; our $VERSION = qv('400');
extends 'Business::Shipping'; has 'weight' => (is => 'rw'); has 'id' => (is => 'rw'); has 'charges' => (is => 'rw'); has 'dimensional_weight' => (is => 'rw'); __PACKAGE__->meta()->make_immutable(); 1; __END__