| WebService-YouTube documentation | Contained in the WebService-YouTube distribution. |
WebService::YouTube::User - User class for YouTube.
This document describes WebService::YouTube::User version 1.0.3
use WebService::YouTube::User;
my $user = WebService::YouTube::User->new( { ... } );
This is a user class for YouTube.
Creates and returns a new WebService::YouTube::User object. %fields can contain parameters enumerated in ACCESSORS section.
None.
WebService::YouTube::User requires no configuration files or environment variables.
None reported.
No bugs have been reported.
Please report any bugs or feature requests to
bug-webservice-youtube@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-YouTube.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Hironori Yoshida <yoshida@cpan.org>
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
| WebService-YouTube documentation | Contained in the WebService-YouTube distribution. |
# # $Id: User.pm 11 2007-04-09 04:34:01Z hironori.yoshida $ # package WebService::YouTube::User; use strict; use warnings; use version; our $VERSION = qv('1.0.3'); use base qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors( qw( about_me age books city companies country currently_on favorite_count favorite_video_count first_name friend_count friend_count gender hobbies homepage hometown last_name movies occupations relationship user video_upload_count video_upload_count video_watch_count ) ); 1; __END__