com.google.cloud.dialogflow.cx.v3beta1.CalculateCoverageResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
The newest version!
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3beta1/test_case.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
public interface CalculateCoverageResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.CalculateCoverageResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The agent to calculate coverage for.
* Format: `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>`.
*
*
* string agent = 5 [(.google.api.resource_reference) = { ... }
*
* @return The agent.
*/
java.lang.String getAgent();
/**
*
*
*
* The agent to calculate coverage for.
* Format: `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>`.
*
*
* string agent = 5 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for agent.
*/
com.google.protobuf.ByteString getAgentBytes();
/**
*
*
*
* Intent coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.IntentCoverage intent_coverage = 2;
*
* @return Whether the intentCoverage field is set.
*/
boolean hasIntentCoverage();
/**
*
*
*
* Intent coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.IntentCoverage intent_coverage = 2;
*
* @return The intentCoverage.
*/
com.google.cloud.dialogflow.cx.v3beta1.IntentCoverage getIntentCoverage();
/**
*
*
*
* Intent coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.IntentCoverage intent_coverage = 2;
*/
com.google.cloud.dialogflow.cx.v3beta1.IntentCoverageOrBuilder getIntentCoverageOrBuilder();
/**
*
*
*
* Transition (excluding transition route groups) coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage transition_coverage = 4;
*
* @return Whether the transitionCoverage field is set.
*/
boolean hasTransitionCoverage();
/**
*
*
*
* Transition (excluding transition route groups) coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage transition_coverage = 4;
*
* @return The transitionCoverage.
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionCoverage getTransitionCoverage();
/**
*
*
*
* Transition (excluding transition route groups) coverage.
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage transition_coverage = 4;
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionCoverageOrBuilder
getTransitionCoverageOrBuilder();
/**
*
*
*
* Transition route group coverage.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupCoverage route_group_coverage = 6;
*
*
* @return Whether the routeGroupCoverage field is set.
*/
boolean hasRouteGroupCoverage();
/**
*
*
*
* Transition route group coverage.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupCoverage route_group_coverage = 6;
*
*
* @return The routeGroupCoverage.
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupCoverage getRouteGroupCoverage();
/**
*
*
*
* Transition route group coverage.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupCoverage route_group_coverage = 6;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupCoverageOrBuilder
getRouteGroupCoverageOrBuilder();
com.google.cloud.dialogflow.cx.v3beta1.CalculateCoverageResponse.CoverageTypeCase
getCoverageTypeCase();
}