calculateCoverage method

Future<GoogleCloudDialogflowCxV3CalculateCoverageResponse> calculateCoverage(
  1. String agent, {
  2. String? type,
  3. String? $fields,
})

Request parameters:

agent - null Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/agents/\[^/\]+$.

type - null Possible string values are:

  • "COVERAGE_TYPE_UNSPECIFIED"
  • "INTENT"
  • "PAGE_TRANSITION"
  • "TRANSITION_ROUTE_GROUP"

$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>>{
    'type': ?type == null ? null : [type],
    'fields': ?$fields == null ? null : [$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>,
  );
}