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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::AddressOwnerCodeType

DESCRIPTION

Top

Indicates who owns the user's address.

SYNOPSIS

Top

Enums:

Top

PayPal

PayPal owns the address.

eBay

eBay owns the address.

CustomCode

Reserved for internal or future use.


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

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

use strict;
use warnings;  

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


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



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



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







1;