NAME

Handel::Order::Item - Module representing an indivudal order line item

SYNOPSIS

my $order = Handel::Order->new({
    id => '12345678-9098-7654-322-345678909876'
});

my $iterator = $order->items;
while (my $item = $iterator->next) {
    print $item->sku;
    print $item->price;
    print $item->total;
};

METHOS

description

Gets/sets the item description

id

Gets/sets the item id

price

Gets/sets the item price

quantity

Gets/sets the item quantity

sku

Gets/sets the item sku

total

Gets/sets the item total

AUTHOR

Christopher H. Laco
CPAN ID: CLACO
claco@chrislaco.com
http://today.icantfocus.com/blog/