eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType - eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType

DESCRIPTION

Top

Applicable to sites that support the Detailed Seller Ratings feature. The FeedbackRatingDetailCodeType is the list of areas for detailed seller ratings. When buyers leave an overall Feedback rating (positive, neutral, or negative) for a seller, they also can leave ratings in four areas: item as described, communication, shipping time, and charges for shipping and handling. Users retrieve detailed ratings as averages of the ratings left by buyers.

SYNOPSIS

Top

Enums:

Top

ItemAsDescribed

Detailed seller rating in the area of "item as described."

Communication

Detailed seller rating in the area of "communication."

ShippingTime

Detailed seller rating in the area of "shipping time." Inapplicable to motor vehicle items.

ShippingAndHandlingCharges

Detailed seller rating in the area of "charges for shipping and handling." Inapplicable to motor vehicle items.

CustomCode

(out) Reserved for internal or future use.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. FeedbackRatingDetailCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant ItemAsDescribed => scalar('ItemAsDescribed');



use constant Communication => scalar('Communication');



use constant ShippingTime => scalar('ShippingTime');



use constant ShippingAndHandlingCharges => scalar('ShippingAndHandlingCharges');



use constant CustomCode => scalar('CustomCode');







1;