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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::ClassifiedAdPaymentMethodEnabledCodeType

DESCRIPTION

Top

Used to indicate whether the payment method will be displayed for a category belonging to the Lead Generation Format.

SYNOPSIS

Top

Enums:

Top

EnabledWithCheckout

Display the payment method and permit checkout.

EnabledWithoutCheckout

Display the payment method and suppress checkout.

NotSupported

Do not display the payment method.

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

use strict;
use warnings;  

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


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



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



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



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







1;