The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::TVRage::ShowList - Object returned by WebService::TVRage::ShowSearchRequest->search(), Contains a List of shows

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

_showListHash

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

getTitleList()

    $showList->getTitleList()

Returns an array of strings where each string is the title of a show that matched the search from ShowSearchRequest

getShow()

    $showList->getShow('Heroes')

Returns a WebService::TVRage::Show object which represents details of the show with the title that was given as an argument to the method

AUTHOR

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