Bing::Search::Result::Video::StaticThumbnail - Thumbnails for videos


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Result::Video::StaticThumbnail - Thumbnails for videos

METHODS

Top

Width

The width, in pixels, of the image.

ContentType

The type of image. Sometimes a MIME type ('image/jpeg') sometimes a simple file extension ('.jpg')

FileSize

The size, in bytes, of the image.

Height

The height, in pixels, of the image.

Url

A URI object representing the URL of the image.

AUTHOR

Top

Dave Houston, dhousotn@cpan.org, 2010

LICENSE

Top

This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Result::Video::StaticThumbnail;
use Moose;

extends 'Bing::Search::Result';

with 'Bing::Search::Role::Types::UrlType';

with 'Bing::Search::Role::Result::Width';
with 'Bing::Search::Role::Result::ContentType';
with 'Bing::Search::Role::Result::FileSize';
with 'Bing::Search::Role::Result::Height';
with 'Bing::Search::Role::Result::Url';

__PACKAGE__->meta->make_immutable;