Class: BingSearch::WebResult
- Defined in:
- lib/bing-search/models.rb
Instance Attribute Summary collapse
-
#description ⇒ String
(also: #summary)
The summary displayed below the title in bing.com search results.
-
#display_url ⇒ String
URL to display to the user.
- #title ⇒ String
-
#url ⇒ String
Full URL of the result, including the scheme.
Attributes inherited from Result
Method Summary
Methods inherited from Model
Constructor Details
This class inherits a constructor from BingSearch::Model
Instance Attribute Details
#description ⇒ String Also known as: summary
The summary displayed below the title in bing.com search results
53 54 55 |
# File 'lib/bing-search/models.rb', line 53 def description @description end |
#display_url ⇒ String
URL to display to the user. Omits the scheme if HTTP.
58 59 60 |
# File 'lib/bing-search/models.rb', line 58 def display_url @display_url end |
#title ⇒ String
49 50 51 |
# File 'lib/bing-search/models.rb', line 49 def title @title end |
#url ⇒ String
Full URL of the result, including the scheme.
62 63 64 |
# File 'lib/bing-search/models.rb', line 62 def url @url end |