| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DisputeMessageSourceCodeType
Defines who added a message to a dispute. Used for both Unpaid Item and Item Not Received disputes.
(out) The buyer of the item under dispute.
(out) The seller of the item under dispute.
(out) eBay, either an administrator or the site itself.
(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::DisputeMessageSourceCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DisputeMessageSourceCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Buyer => scalar('Buyer');
use constant Seller => scalar('Seller');
use constant eBay => scalar('eBay');
use constant CustomCode => scalar('CustomCode'); 1;