Class: Google::Apis::VisionV1::WebPage
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::WebPage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb
Overview
Metadata for web pages.
Instance Attribute Summary collapse
-
#score ⇒ Float
Overall relevancy score for the web page.
-
#url ⇒ String
The result web page URL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebPage
constructor
A new instance of WebPage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WebPage
Returns a new instance of WebPage
1571 1572 1573 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#score ⇒ Float
Overall relevancy score for the web page.
Not normalized and not comparable across different image queries.
Corresponds to the JSON property score
1564 1565 1566 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1564 def score @score end |
#url ⇒ String
The result web page URL.
Corresponds to the JSON property url
1569 1570 1571 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1569 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1576 1577 1578 1579 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1576 def update!(**args) @score = args[:score] if args.key?(:score) @url = args[:url] if args.key?(:url) end |