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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::DepositTypeCodeType

DESCRIPTION

Top

For vehicles listed through the US eBay Motors site, DepositType indicates how the buyer should pay the deposit amount. It is used in conjunction with a buyer payment method (BuyerPaymentMethodCodeType).

SYNOPSIS

Top

Enums:

Top

None

(out) No deposit needed.

OtherMethod

(out) Pay the deposit using PayPal, and then use any of the other specified payment methods to pay the balance.

FastDeposit

(out) No longer used.

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

use strict;
use warnings;  

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


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



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



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



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







1;