class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListProcessorsResponse

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]

processors[RW]

The list of processors. Corresponds to the JSON property `processors` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Processor>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 6727
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 6732
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @processors = args[:processors] if args.key?(:processors)
end