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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::PaymentMethodSearchCodeType

DESCRIPTION

Top

Used for specifying items for which a specific payment method or methods are accepted.

SYNOPSIS

Top

Enums:

Top

PayPal

PayPal payment method.

PaisaPay

PaisaPay payment method. The PaisaPay payment method is only for the India site (site ID 203).

PayPalOrPaisaPay

Either the PayPal or the PaisaPay payment method. The PaisaPay payment method is only for the India site (site ID 203).

CustomCode

PaisaPayEscrowEMI

PaisaPayEscrowEMI (Equal Monthly Installments) payment method. The PaisaPayEscrowEMI payment method is only for the India site (site ID 203).


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::PaymentMethodSearchCodeType;

use strict;
use warnings;  

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


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



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



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



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



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







1;