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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::BuyerSatisfactionStatusCodeType

DESCRIPTION

Top

Buyer satisfaction status.

SYNOPSIS

Top

Enums:

Top

Good

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.

NeedsWork

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.

Poor

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.

Unacceptable

Your selling practices are unacceptable. Improve your selling practices immediately. Your account may be suspended because of your unacceptable customer service.

CustomCode

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;