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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::DateSpecifierCodeType

DESCRIPTION

Top

Specifies a subcomponent of a date. Useful in cases when it is helpful to allow separate text fields or drop-down lists to be rendered for each date subcomponent. (For example, when calling GetProductSearchResults, you use date specifiers to indicate the date subcomponent that the attribute represents.)

SYNOPSIS

Top

Enums:

Top

M

(in) The month subcomponent of a date.

D

(in) The day subcomponent of a date.

Y

(in) The year subcomponent of a date.

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::DateSpecifierCodeType;

use strict;
use warnings;  

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


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



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



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



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







1;