Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListSchemasResponse

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

Overview

Response message for SchemaService.ListSchemas method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListSchemasResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaListSchemasResponse.



1945
1946
1947
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1945

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

Instance Attribute Details

#next_page_tokenString

A token that can be sent as ListSchemasRequest.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)


1938
1939
1940
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1938

def next_page_token
  @next_page_token
end

#schemasArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSchema>

The Schemas. Corresponds to the JSON property schemas



1943
1944
1945
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1943

def schemas
  @schemas
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1950
1951
1952
1953
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1950

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