Class: Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ListDocumentSchemasResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/contentwarehouse_v1/classes.rb,
lib/google/apis/contentwarehouse_v1/representations.rb,
lib/google/apis/contentwarehouse_v1/representations.rb

Overview

Response message for DocumentSchemaService.ListDocumentSchemas.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContentwarehouseV1ListDocumentSchemasResponse

Returns a new instance of GoogleCloudContentwarehouseV1ListDocumentSchemasResponse.



2222
2223
2224
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2222

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

Instance Attribute Details

#document_schemasArray<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DocumentSchema>

The document schemas from the specified parent. Corresponds to the JSON property documentSchemas



2214
2215
2216
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2214

def document_schemas
  @document_schemas
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2220
2221
2222
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2220

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2227
2228
2229
2230
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2227

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