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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::URLTypeCodeType

DESCRIPTION

Top

A compressed, representative title for the eBay URL.

SYNOPSIS

Top

Enums:

Top

ViewItemURL

URL Prefix for viewing a particular listing. Just add an item id.

ViewUserURL

URL Prefix for viewing the feedback for a particular userid. Just add a userid.

MyeBayURL

Full URL for an eBay login page.

MyeBayBiddingURL

Full URL for viewing the items on which the user is bidding.

MyeBayNotWonURL

Full URL for viewing the items on which the user bid but did not win.

MyeBayWonURL

Full URL for viewing the items on which the user bid and also won.

MyeBayWatchingURL

Full URL for viewing the items the user is currently watching.

eBayStoreURL

Full URL for eBay Stores.

SmallLogoURL

Full URL for the small version of the "An eBay Marketplace" logo.

MediumLogoURL

Full URL for the medium version of the "An eBay Marketplace" logo.

LargeLogoURL

Full URL for the large version of the "An eBay Marketplace" logo.

CustomCode

Reserved for future use.


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

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

use strict;
use warnings;  

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


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



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



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



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



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



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



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



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



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



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



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



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







1;