# ***************************************************************************** # * * # * WebService::Upcoming::Object::Watchlist * # * * # ***************************************************************************** # Package ********************************************************************* package WebService::Upcoming::Object::Watchlist; # Uses ************************************************************************ use strict; use WebService::Upcoming::Object; # Exports ********************************************************************* our @ISA = ('WebService::Upcoming::Object'); our $VERSION = '0.05'; # Code ************************************************************************ sub new { return WebService::Upcoming::Object::new(@_); } sub _name { return 'watchlist'; } sub _list { shift; return ('id','event_id','status') if ($_[0] eq '1.0'); return (); } sub _info { return ( { 'upco' => 'watchlist.getList','http' => 'GET' }, { 'upco' => 'watchlist.add', 'http' => 'POST' }, { 'upco' => 'watchlist.remove', 'http' => 'POST' } ); } 1; __END__ =head1 NAME WebService::Upcoming::Object::Watchlist - Watchlist response object to the Upcoming API =head1 AUTHOR Copyright (C) 2005, Greg Knauss, Egreg@eod.comE =head1 SEE ALSO L =cut