calculateCoverage method
Calculates the test coverage for an agent.
Request parameters:
agent
- Required. The agent to calculate coverage for. Format:
projects//locations//agents/
.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/agents/\[^/\]+$
.
type
- Required. The type of coverage requested.
Possible string values are:
- "COVERAGE_TYPE_UNSPECIFIED" : Should never be used.
- "INTENT" : Intent coverage.
- "PAGE_TRANSITION" : Page transition coverage.
- "TRANSITION_ROUTE_GROUP" : Transition route group coverage.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudDialogflowCxV3CalculateCoverageResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudDialogflowCxV3CalculateCoverageResponse>
calculateCoverage(
core.String agent, {
core.String? type,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (type != null) 'type': [type],
if ($fields != null) 'fields': [$fields],
};
final url_ =
'v3/' + core.Uri.encodeFull('$agent') + '/testCases:calculateCoverage';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleCloudDialogflowCxV3CalculateCoverageResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}