Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListSchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListSchemasResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Response message for SchemaService.ListSchemas method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as ListSchemasRequest.page_token to retrieve the next page.
-
#schemas ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Schema>
The Schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListSchemasResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1ListSchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListSchemasResponse
Returns a new instance of GoogleCloudDiscoveryengineV1ListSchemasResponse.
4952 4953 4954 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4952 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
4945 4946 4947 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4945 def next_page_token @next_page_token end |
#schemas ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Schema>
The Schemas.
Corresponds to the JSON property schemas
4950 4951 4952 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4950 def schemas @schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4957 4958 4959 4960 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4957 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schemas = args[:schemas] if args.key?(:schemas) end |