Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ListSchemaVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ListSchemaVersionsResponse
- 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 ListSchemaVersions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Points to the next SchemaVersion, otherwise empty.
-
#schema_versions ⇒ Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1SchemaVersion>
The list of SchemaVersions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1ListSchemaVersionsResponse
constructor
A new instance of GoogleCloudDocumentaiV1ListSchemaVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1ListSchemaVersionsResponse
Returns a new instance of GoogleCloudDocumentaiV1ListSchemaVersionsResponse.
6685 6686 6687 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6685 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Points to the next SchemaVersion, otherwise empty.
Corresponds to the JSON property nextPageToken
6678 6679 6680 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6678 def next_page_token @next_page_token end |
#schema_versions ⇒ Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1SchemaVersion>
The list of SchemaVersions.
Corresponds to the JSON property schemaVersions
6683 6684 6685 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6683 def schema_versions @schema_versions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6690 6691 6692 6693 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 6690 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schema_versions = args[:schema_versions] if args.key?(:schema_versions) end |