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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::SearchResultValuesCodeType

DESCRIPTION

Top

SYNOPSIS

Top

Enums:

Top

Escrow

New

(out) Indicates items listed one day or less earlier than the current query. If the listing is no more than one day old, New returns a value of true.

CharityListing

(out) Indicates that the seller has chosen to use eBay Giving Works to donate a percentage of the item purchase price to a selected nonprofit organization. Not applicable for eBay Motors, international sites, and Real Estate and Tickets listings.

Picture

Gift

CustomCode


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::SearchResultValuesCodeType;

use strict;
use warnings;  

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


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



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



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



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



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



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







1;