| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result::Image::Thumbnail - A thumbnail image
WidthThe width, in pixels.
ContentTypeThe type of image. MIME or not.
FileSizeThe size, in bytes.
HeightThe height, in pixels.
UrlA URI object representing the thumbnail's URL.
Dave Houston, dhoustoncpan.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::Image::Thumbnail; 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;