| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result::Web - Web results from Bing
UrlA URI object representing the link to the result
CacheUrlA URI representing Bing's cache of the result.
DateTimeA DateTime object representing the date and time of Bing's last crawl.
DescriptionA portion of the body text of the result.
DisplayUrlA URI object representing the link to the result, possibly modified for display.
TitleThe title of the result.
Dave Houston, dhouston@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::Web; use Moose; extends 'Bing::Search::Result'; with 'Bing::Search::Role::Types::UrlType'; with 'Bing::Search::Role::Types::DateType'; with qw( Bing::Search::Role::Result::Url Bing::Search::Role::Result::CacheUrl Bing::Search::Role::Result::DateTime Bing::Search::Role::Result::Description Bing::Search::Role::Result::DisplayUrl Bing::Search::Role::Result::Title ); __PACKAGE__->meta->make_immutable;