| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::MessageTypeCodeType
Member to Member message initiated by bidder/potential bidder to a seller of a particular item.
Member to Member message initiated as a response to an Ask A Question message.
Member to Member message initiated by any eBay member to another eBay member.
Member message between transaction partners within 90 days after the transaction.
Member to Member message initiated as a response to a Contact eBay Member message.
Member to Member message initiated by any eBay member to another eBay member who has posted on a community forum within the past 7 days.
Reserved for future or internal use.
All message types.
Member to Member message initiated by sellers to their bidders during an active listing.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::MessageTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. MessageTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant AskSellerQuestion => scalar('AskSellerQuestion');
use constant ResponseToASQQuestion => scalar('ResponseToASQQuestion');
use constant ContactEbayMember => scalar('ContactEbayMember');
use constant ContactTransactionPartner => scalar('ContactTransactionPartner');
use constant ResponseToContacteBayMember => scalar('ResponseToContacteBayMember');
use constant ContacteBayMemberViaCommunityLink => scalar('ContacteBayMemberViaCommunityLink');
use constant CustomCode => scalar('CustomCode');
use constant All => scalar('All');
use constant ContactMyBidder => scalar('ContactMyBidder'); 1;