Class: Google::Apis::VisionV1::ListReferenceImagesResponse

Inherits:
Object
  • Object
show all
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

Response message for the ListReferenceImages method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListReferenceImagesResponse

Returns a new instance of ListReferenceImagesResponse.



9547
9548
9549
# File 'generated/google/apis/vision_v1/classes.rb', line 9547

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

The next_page_token returned from a previous List request, if any. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9535
9536
9537
# File 'generated/google/apis/vision_v1/classes.rb', line 9535

def next_page_token
  @next_page_token
end

#page_sizeFixnum

The maximum number of items to return. Default 10, maximum 100. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


9540
9541
9542
# File 'generated/google/apis/vision_v1/classes.rb', line 9540

def page_size
  @page_size
end

#reference_imagesArray<Google::Apis::VisionV1::ReferenceImage>

The list of reference images. Corresponds to the JSON property referenceImages



9545
9546
9547
# File 'generated/google/apis/vision_v1/classes.rb', line 9545

def reference_images
  @reference_images
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9552
9553
9554
9555
9556
# File 'generated/google/apis/vision_v1/classes.rb', line 9552

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @page_size = args[:page_size] if args.key?(:page_size)
  @reference_images = args[:reference_images] if args.key?(:reference_images)
end