| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::BuyerSatisfactionStatusCodeType
Buyer satisfaction status.
You are doing a good job as an eBay seller. Buyers have been satisfied with your customer service. Be sure to continue providing members with a positive buying experience.
You need to work on your customer service. Some of your buyers have not been satisfied with your service. Improve your customer service to earn a higher buyer satisfaction rating.
You need to improve your selling practices immediately. Too many of your customers have not been satisfied, and you are at risk of losing your eBay account.
Your selling practices are unacceptable. Improve your selling practices immediately. Your account may be suspended because of your unacceptable customer service.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::BuyerSatisfactionStatusCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BuyerSatisfactionStatusCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Good => scalar('Good');
use constant NeedsWork => scalar('NeedsWork');
use constant Poor => scalar('Poor');
use constant Unacceptable => scalar('Unacceptable');
use constant CustomCode => scalar('CustomCode'); 1;