Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
Response message for the ListProcessorTypes method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Points to the next page, otherwise empty.
-
#processor_types ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorType>
The processor types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
constructor
A new instance of GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
Returns a new instance of GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse.
8390 8391 8392 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8390 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Points to the next page, otherwise empty.
Corresponds to the JSON property nextPageToken
8383 8384 8385 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8383 def next_page_token @next_page_token end |
#processor_types ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorType>
The processor types.
Corresponds to the JSON property processorTypes
8388 8389 8390 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8388 def processor_types @processor_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8395 8396 8397 8398 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8395 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @processor_types = args[:processor_types] if args.key?(:processor_types) end |