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.
15833 15834 15835 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15833 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
15826 15827 15828 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15826 def next_page_token @next_page_token end |
#sample_queries ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSampleQuery>
The SampleQuerys.
Corresponds to the JSON property sampleQueries
15831 15832 15833 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15831 def sample_queries @sample_queries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15838 15839 15840 15841 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15838 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 |