Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
- 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 SampleQueryService.ListSampleQueries method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as ListSampleQueriesRequest.page_token to retrieve the next page.
-
#sample_queries ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSampleQuery>
The SampleQuerys.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse.
28006 28007 28008 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28006 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as ListSampleQueriesRequest.page_token to retrieve
the next page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
27999 28000 28001 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27999 def next_page_token @next_page_token end |
#sample_queries ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSampleQuery>
The SampleQuerys.
Corresponds to the JSON property sampleQueries
28004 28005 28006 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28004 def sample_queries @sample_queries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28011 28012 28013 28014 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28011 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sample_queries = args[:sample_queries] if args.key?(:sample_queries) end |