XAO::DO::Data::Category - category description


XAO-Commerce documentation Contained in the XAO-Commerce distribution.

Index


Code Index:

NAME

Top

XAO::DO::Data::Category - category description

DESCRIPTION

Top

Category objects are stored in /Categories and have the following properties:

category_id

Internal category ID. Up to 30 characters.

description

Long category description, up to 2000 characters (optional).

image_url

Image URL, up to 200 characters (optional).

name

Category name, up to 40 characters.

parent_id

The id of upper level category. Empty or undefined if current category is on top level.

thumbnail_url

Image thumbnail URL, up to 200 characters (optional).

AUTHORS

Top

Copyright (c) 2001-2002 XAO Inc.

Andrew Maltsev <am@xao.com>


XAO-Commerce documentation Contained in the XAO-Commerce distribution.

###############################################################################
package XAO::DO::Data::Category;
use strict;
use XAO::Objects;
use base XAO::Objects->load(objname => 'FS::Hash');
###############################################################################
1;
__END__