Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ListSchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ListSchemasResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/representations.rb
Overview
Response message for ListSchemas.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Points to the next Schema, otherwise empty.
-
#schemas ⇒ Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1NextSchema>
The list of Schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1ListSchemasResponse
constructor
A new instance of GoogleCloudDocumentaiV1ListSchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1ListSchemasResponse
Returns a new instance of GoogleCloudDocumentaiV1ListSchemasResponse.
6710 6711 6712 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6710 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Points to the next Schema, otherwise empty.
Corresponds to the JSON property nextPageToken
6703 6704 6705 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6703 def next_page_token @next_page_token end |
#schemas ⇒ Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1NextSchema>
The list of Schemas.
Corresponds to the JSON property schemas
6708 6709 6710 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6708 def schemas @schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6715 6716 6717 6718 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6715 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schemas = args[:schemas] if args.key?(:schemas) end |