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
1172 1173 1174 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1172 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
1165 1166 1167 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1165 def score @score end |
#url ⇒ String
The result web page URL.
Corresponds to the JSON property url
1170 1171 1172 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1170 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1177 1178 1179 1180 |
# File 'generated/google/apis/vision_v1/classes.rb', line 1177 def update!(**args) @score = args[:score] if args.key?(:score) @url = args[:url] if args.key?(:url) end |