Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListSchemasResponse

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

Overview

Response message for SchemaService.ListSchemas method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListSchemasResponse

Returns a new instance of GoogleCloudDiscoveryengineV1betaListSchemasResponse.



3110
3111
3112
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3110

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)


3103
3104
3105
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3103

def next_page_token
  @next_page_token
end

#schemasArray<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSchema>

The Schemas. Corresponds to the JSON property schemas



3108
3109
3110
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3108

def schemas
  @schemas
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3115
3116
3117
3118
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3115

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