NAME

WebService::TVRage::Show- Object returned by WebService::TVRage::ShowList->getShow(), Contains details for the requested show title

SYNOPSIS

my $heroesSearch = WebService::TVRage::ShowSearchRequest->new( showTitle => 'Heroes' );
my $showList = $heroesSearch->search();    
foreach my $showtitle ($showList->getTitleList()) {
    my $show = $showList->getTitle($showtitle);
    print $show->getLink(), "\n";
}

Methods

_showHash

This is populated by WebService::TVRage::ShowList->getShow(), you shouldn't need to edit this, but you might want to look at it with Data::Dumper

getShowID()

$show->getShowID()

Returns TVRage's ID number for the show which you can use to make a WebService::TVRage::EpisodeListRequest

getLink()

$show->getLink()

Returns TVRage's URL for the show

getCountry()

$show->getCountry()

Returns the country where the show was made (aired?)

getStatus()

$show->getStatus()

Returns which indicates if the show is still active or if has been cancelled

getYearStarted()

$show->getYearStarted()

Returns a 4 digit year as a string, the year the show first aired

getYearEnded()

$show->getYearEnded()

Returns a 4 digit year as a string, the year the show ended, or 0 if still active

getGenres()

$show->getGenres()

Returns an array of strings, the strings are the genres that TVRage has classified the show as being.

AUTHOR

Kyle Brandt, kyle@kbrandt.com http://www.kbrandt.com