| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::FeedbackRatingDetailCodeType
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.
Detailed seller rating in the area of "item as described."
Detailed seller rating in the area of "communication."
Detailed seller rating in the area of "shipping time." Inapplicable to motor vehicle items.
Detailed seller rating in the area of "charges for shipping and handling." Inapplicable to motor vehicle items.
(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;