| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result::Video::StaticThumbnail - Thumbnails for videos
WidthThe width, in pixels, of the image.
ContentTypeThe type of image. Sometimes a MIME type ('image/jpeg') sometimes a simple file extension ('.jpg')
FileSizeThe size, in bytes, of the image.
HeightThe height, in pixels, of the image.
UrlA URI object representing the URL of the image.
Dave Houston, dhousotn@cpan.org, 2010
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;