| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TicketEventTypeCodeType
Supported event ticket types.
(in) Any event (applicable to US, UK, and DE)
(in) Comedy & Kabarett (Comedy and Cabaret)
(in) Freizeit & Events (Leisure and Events)
(in) Konzerte & Festivals (Concerts and Festivals)
(in) Kultur & Klassik (Culture and Classical)
(in) Musicals & Shows
(in) Sportveranstaltungen (Sporting Events)
(in) Other events that are not the above Germany event types (applicable to listings on the DE site)
(in) Amusement Parks (applicable to listings on the UK site)
(in) Comedy (applicable to listings on the UK site)
(in) Concerts/Gigs (applicable to listings on the UK site)
(in) Conferences/Seminars (applicable to listings on the UK site)
(in) Exhibitions/Shows (applicable to listings on the UK site)
(in) Experiences (applicable to listings on the UK site)
(in) Sporting events (applicable to listings on the UK site)
(in) Theatre/Cinema/Circus (applicable to listings on the UK site)
(in) Other. Events that are not the above UK types (applicable to listings on the UK site)
(in) Concerts (applicable to listings on the US site)
(in) Movies (applicable to listings on the US site)
(in) Sporting events (applicable to listings on the US site)
(in) Theater (applicable to listings on the US site)
(in) Events that are not concerts, movies, sporting events, or theater events (applicable to listings on the US site)
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::TicketEventTypeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TicketEventTypeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Any => scalar('Any');
use constant DE_ComedyAndKabarett => scalar('DE_ComedyAndKabarett');
use constant DE_FreizeitAndEvents => scalar('DE_FreizeitAndEvents');
use constant DE_KonzerteAndFestivals => scalar('DE_KonzerteAndFestivals');
use constant DE_KulturAndKlassik => scalar('DE_KulturAndKlassik');
use constant DE_MusicalsAndShows => scalar('DE_MusicalsAndShows');
use constant DE_Sportveranstaltungen => scalar('DE_Sportveranstaltungen');
use constant DE_Sonstige => scalar('DE_Sonstige');
use constant UK_AmusementParks => scalar('UK_AmusementParks');
use constant UK_Comedy => scalar('UK_Comedy');
use constant UK_ConcertsAndGigs => scalar('UK_ConcertsAndGigs');
use constant UK_ConferencesAndSeminars => scalar('UK_ConferencesAndSeminars');
use constant UK_ExhibitionsAndShows => scalar('UK_ExhibitionsAndShows');
use constant UK_Experiences => scalar('UK_Experiences');
use constant UK_SportingEvents => scalar('UK_SportingEvents');
use constant UK_TheatreCinemaAndCircus => scalar('UK_TheatreCinemaAndCircus');
use constant UK_Other => scalar('UK_Other');
use constant US_Concerts => scalar('US_Concerts');
use constant US_Movies => scalar('US_Movies');
use constant US_SportingEvents => scalar('US_SportingEvents');
use constant US_Theater => scalar('US_Theater');
use constant US_Other => scalar('US_Other');
use constant CustomCode => scalar('CustomCode'); 1;