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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AdFormatLeadStatusCodeType

DESCRIPTION

Top

Contains information about the status of email correspondence for the lead.

SYNOPSIS

Top

Enums:

Top

New

A new message from a prospective buyer that the seller has not yet responded to.

Responded

A message from a prospective buyer that the seller has responded to.

CustomCode

(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::AdFormatLeadStatusCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. AdFormatLeadStatusCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant New => scalar('New');



use constant Responded => scalar('Responded');



use constant CustomCode => scalar('CustomCode');







1;