| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DaysCodeType
Specifies the range of days the seller can be contacted.
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.
Seller can be contacted any day during the specified contact hours.
Seller can be contacted Monday through Friday during the specified contact hours.
Seller can be contacted Saturday or Sunday during the specified contact hours.
(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;