Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ListSchemasResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3ListSchemasResponse

Returns a new instance of GoogleCloudDocumentaiV1beta3ListSchemasResponse.



8490
8491
8492
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8490

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


8483
8484
8485
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8483

def next_page_token
  @next_page_token
end

#schemasArray<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3NextSchema>

The list of Schemas. Corresponds to the JSON property schemas



8488
8489
8490
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8488

def schemas
  @schemas
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8495
8496
8497
8498
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8495

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @schemas = args[:schemas] if args.key?(:schemas)
end