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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::INEscrowWorkflowTimelineCodeType

DESCRIPTION

Top

Used to indicate whether Default, WorkFlow A or WorkFlow B is applicable for a category.

SYNOPSIS

Top

Enums:

Top

Default

Default Escrow timelines apply.

WorkflowA

Special Escrow timelines for Workflow A applies.

WorkflowB

Special Escrow timelines for Workflow B applies.

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