| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::FeedbackResponseCodeType
Types of feedback responses.
A reply to feedback left by another user.
A follow-up to a feedback comment left for another user.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::FeedbackResponseCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. FeedbackResponseCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Reply => scalar('Reply');
use constant FollowUp => scalar('FollowUp');
use constant CustomCode => scalar('CustomCode'); 1;