| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::URLTypeCodeType
A compressed, representative title for the eBay URL.
URL Prefix for viewing a particular listing. Just add an item id.
URL Prefix for viewing the feedback for a particular userid. Just add a userid.
Full URL for an eBay login page.
Full URL for viewing the items on which the user is bidding.
Full URL for viewing the items on which the user bid but did not win.
Full URL for viewing the items on which the user bid and also won.
Full URL for viewing the items the user is currently watching.
Full URL for eBay Stores.
Full URL for the small version of the "An eBay Marketplace" logo.
Full URL for the medium version of the "An eBay Marketplace" logo.
Full URL for the large version of the "An eBay Marketplace" logo.
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;