Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse
- 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 EvaluationService.ListEvaluationResults method.
Instance Attribute Summary collapse
-
#evaluation_results ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponseEvaluationResult>
The EvaluationResults.
-
#next_page_token ⇒ String
A token that can be sent as ListEvaluationResultsRequest.page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse.
15756 15757 15758 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15756 def initialize(**args) update!(**args) end |
Instance Attribute Details
#evaluation_results ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponseEvaluationResult>
The EvaluationResults.
Corresponds to the JSON property evaluationResults
15747 15748 15749 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15747 def evaluation_results @evaluation_results end |
#next_page_token ⇒ String
A token that can be sent as ListEvaluationResultsRequest.page_token to
retrieve the next page. If this field is omitted, there are no subsequent
pages.
Corresponds to the JSON property nextPageToken
15754 15755 15756 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15754 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15761 15762 15763 15764 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 15761 def update!(**args) @evaluation_results = args[:evaluation_results] if args.key?(:evaluation_results) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |