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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::DaysCodeType

DESCRIPTION

Top

Specifies the range of days the seller can be contacted.

SYNOPSIS

Top

Enums:

Top

None

Seller does not want to be contacted. Contact hours will not be supported for any days. If contact hours are specified, they will be ignored.

EveryDay

Seller can be contacted any day during the specified contact hours.

Weekdays

Seller can be contacted Monday through Friday during the specified contact hours.

Weekends

Seller can be contacted Saturday or Sunday during the specified contact hours.

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

use strict;
use warnings;  

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


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



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



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



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



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







1;