Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ListSchemaVersionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1ListSchemaVersionsResponse

Returns a new instance of GoogleCloudDocumentaiV1ListSchemaVersionsResponse.



6744
6745
6746
# File 'lib/google/apis/documentai_v1/classes.rb', line 6744

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Points to the next SchemaVersion, otherwise empty. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6737
6738
6739
# File 'lib/google/apis/documentai_v1/classes.rb', line 6737

def next_page_token
  @next_page_token
end

#schema_versionsArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1SchemaVersion>

The list of SchemaVersions. Corresponds to the JSON property schemaVersions



6742
6743
6744
# File 'lib/google/apis/documentai_v1/classes.rb', line 6742

def schema_versions
  @schema_versions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6749
6750
6751
6752
# File 'lib/google/apis/documentai_v1/classes.rb', line 6749

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