| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::INEscrowWorkflowTimelineCodeType
Used to indicate whether Default, WorkFlow A or WorkFlow B is applicable for a category.
Default Escrow timelines apply.
Special Escrow timelines for Workflow A applies.
Special Escrow timelines for Workflow B applies.
(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::INEscrowWorkflowTimelineCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. INEscrowWorkflowTimelineCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Default => scalar('Default');
use constant WorkflowA => scalar('WorkflowA');
use constant WorkflowB => scalar('WorkflowB');
use constant CustomCode => scalar('CustomCode'); 1;