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
- 
  
    
      #full_matching_images  ⇒ Array<Google::Apis::VisionV1::WebImage> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Fully matching images on the page.
 - 
  
    
      #page_title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Title for the web page, may contain HTML markups.
 - 
  
    
      #partial_matching_images  ⇒ Array<Google::Apis::VisionV1::WebImage> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Partial matching images on the page.
 - 
  
    
      #score  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
(Deprecated) 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
      7206 7207 7208  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7206 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#full_matching_images ⇒ Array<Google::Apis::VisionV1::WebImage>
Fully matching images on the page.
Can include resized copies of the query image.
Corresponds to the JSON property fullMatchingImages
      7181 7182 7183  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7181 def full_matching_images @full_matching_images end  | 
  
#page_title ⇒ String
Title for the web page, may contain HTML markups.
Corresponds to the JSON property pageTitle
      7186 7187 7188  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7186 def page_title @page_title end  | 
  
#partial_matching_images ⇒ Array<Google::Apis::VisionV1::WebImage>
Partial matching images on the page.
Those images are similar enough to share some key-point features. For
example an original image will likely have partial matching for its
crops.
Corresponds to the JSON property partialMatchingImages
      7194 7195 7196  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7194 def partial_matching_images @partial_matching_images end  | 
  
#score ⇒ Float
(Deprecated) Overall relevancy score for the web page.
Corresponds to the JSON property score
      7199 7200 7201  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7199 def score @score end  | 
  
#url ⇒ String
The result web page URL.
Corresponds to the JSON property url
      7204 7205 7206  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7204 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7211 7212 7213 7214 7215 7216 7217  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 7211 def update!(**args) @full_matching_images = args[:full_matching_images] if args.key?(:full_matching_images) @page_title = args[:page_title] if args.key?(:page_title) @partial_matching_images = args[:partial_matching_images] if args.key?(:partial_matching_images) @score = args[:score] if args.key?(:score) @url = args[:url] if args.key?(:url) end  |