class Google::Apis::VisionV1::ListReferenceImagesResponse
Response message for the `ListReferenceImages` method.
Attributes
next_page_token[RW]
The next_page_token
returned from a previous List request, if any. Corresponds to the JSON property `nextPageToken` @return [String]
page_size[RW]
The maximum number of items to return. Default 10, maximum 100. Corresponds to the JSON property `pageSize` @return [Fixnum]
reference_images[RW]
The list of reference images. Corresponds to the JSON property `referenceImages` @return [Array<Google::Apis::VisionV1::ReferenceImage>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vision_v1/classes.rb, line 9032 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vision_v1/classes.rb, line 9037 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