NAME
WebService::TVRage::EpisodeListRequest - Requests A List of Episodes for a show using TVRage's XML Service
SYNOPSIS
my
$heroes
= WebService::TVRage::EpisodeListRequest->new();
$heroes
->episodeID(
'8172'
);
my
$episodeList
=
$heroes
->getEpisodeList();
Methods
new()
my
$heroes
= WebService::TVRage::EpisodeListRequest->new(
episodeID
=>
'8172'
);
Constructor object for creating a request to get episode information for the specified show.
- episodeID
-
This is the TVRage's ID for ths show. Use WebService::TVRage::ShowSearchRequest to find out what the id of your show is.
- URL
-
This is the TVRage URL that the request gets sent to, you shouldn't need to edit this.
getEpisodeList()
$heroes
->getEpisodeList()
Sends a request to TVRage for which ever show you specified with episodeID and returns a WebService::TVRage::EpisodeList object
AUTHOR
Kyle Brandt, kyle@kbrandt.com http://www.kbrandt.com