WebService::YouTube::Video - Video class for YouTube.


WebService-YouTube documentation Contained in the WebService-YouTube distribution.

Index


Code Index:

NAME

Top

WebService::YouTube::Video - Video class for YouTube.

VERSION

Top

This document describes WebService::YouTube::Video version 1.0.3

SYNOPSIS

Top

    use WebService::YouTube::Video;
    my $video = WebService::YouTube::Video->new( { ... } );

DESCRIPTION

Top

This is a video class for YouTube.

SUBROUTINES/METHODS

Top

new(\%fields)

Creates and returns a new WebService::YouTube::Video object. %fields can contain parameters enumerated in ACCESSORS section.

ACCESSORS

id
author
comment_count
description
length_seconds
rating_avg
rating_count
tags
thumbnail_url
title
upload_time
url
view_count

DIAGNOSTICS

Top

None.

CONFIGURATION AND ENVIRONMENT

Top

WebService::YouTube::Video requires no configuration files or environment variables.

DEPENDENCIES

Top

WebService::YouTube, Class::Accessor::Fast

INCOMPATIBILITIES

Top

None reported.

BUGS AND LIMITATIONS

Top

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.

AUTHOR

Top

Hironori Yoshida <yoshida@cpan.org>

LICENSE AND COPYRIGHT

Top


WebService-YouTube documentation Contained in the WebService-YouTube distribution.

#
# $Id: Video.pm 11 2007-04-09 04:34:01Z hironori.yoshida $
#
package WebService::YouTube::Video;
use strict;
use warnings;
use version; our $VERSION = qv('1.0.3');

use base qw(Class::Accessor::Fast);

__PACKAGE__->mk_accessors(
    qw(
      author
      channel_list
      comment_count
      comment_list
      description
      id
      length_seconds
      rating_avg
      rating_count
      recording_country
      recording_date
      recording_location
      tags
      thumbnail_url
      title
      update_time
      upload_time
      url
      view_count
      )
);

1;

__END__