com.google.cloud.dialogflow.cx.v3beta1.TestCaseResultOrBuilder 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
/*
* 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 TestCaseResultOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.TestCaseResult)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name for the test case result. Format:
* `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/
* <TestCase ID>/results/<TestCaseResult ID>`.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The resource name for the test case result. Format:
* `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/testCases/
* <TestCase ID>/results/<TestCaseResult ID>`.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Environment where the test was run. If not set, it indicates the draft
* environment.
*
*
* string environment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The environment.
*/
java.lang.String getEnvironment();
/**
*
*
*
* Environment where the test was run. If not set, it indicates the draft
* environment.
*
*
* string environment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for environment.
*/
com.google.protobuf.ByteString getEnvironmentBytes();
/**
*
*
*
* The conversation turns uttered during the test case replay in chronological
* order.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ConversationTurn conversation_turns = 3;
*
*/
java.util.List
getConversationTurnsList();
/**
*
*
*
* The conversation turns uttered during the test case replay in chronological
* order.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ConversationTurn conversation_turns = 3;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.ConversationTurn getConversationTurns(int index);
/**
*
*
*
* The conversation turns uttered during the test case replay in chronological
* order.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ConversationTurn conversation_turns = 3;
*
*/
int getConversationTurnsCount();
/**
*
*
*
* The conversation turns uttered during the test case replay in chronological
* order.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ConversationTurn conversation_turns = 3;
*
*/
java.util.List extends com.google.cloud.dialogflow.cx.v3beta1.ConversationTurnOrBuilder>
getConversationTurnsOrBuilderList();
/**
*
*
*
* The conversation turns uttered during the test case replay in chronological
* order.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ConversationTurn conversation_turns = 3;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.ConversationTurnOrBuilder getConversationTurnsOrBuilder(
int index);
/**
*
*
*
* Whether the test case passed in the agent environment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.TestResult test_result = 4;
*
* @return The enum numeric value on the wire for testResult.
*/
int getTestResultValue();
/**
*
*
*
* Whether the test case passed in the agent environment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.TestResult test_result = 4;
*
* @return The testResult.
*/
com.google.cloud.dialogflow.cx.v3beta1.TestResult getTestResult();
/**
*
*
*
* The time that the test was run.
*
*
* .google.protobuf.Timestamp test_time = 5;
*
* @return Whether the testTime field is set.
*/
boolean hasTestTime();
/**
*
*
*
* The time that the test was run.
*
*
* .google.protobuf.Timestamp test_time = 5;
*
* @return The testTime.
*/
com.google.protobuf.Timestamp getTestTime();
/**
*
*
*
* The time that the test was run.
*
*
* .google.protobuf.Timestamp test_time = 5;
*/
com.google.protobuf.TimestampOrBuilder getTestTimeOrBuilder();
}