class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListProcessorVersionsResponse
Response message for list processors.
Attributes
next_page_token[RW]
Points to the next processor, otherwise empty. Corresponds to the JSON property `nextPageToken` @return [String]
processor_versions[RW]
The list of processors. Corresponds to the JSON property `processorVersions` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorVersion>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 6702 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/documentai_v1beta3/classes.rb, line 6707 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @processor_versions = args[:processor_versions] if args.key?(:processor_versions) end