Interface ListTestCaseResultsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTestCaseResultsResponse
,ListTestCaseResultsResponse.Builder
public interface ListTestCaseResultsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.TestCaseResult
getTestCaseResults(int index)
The list of test case results.int
getTestCaseResultsCount()
The list of test case results.List<TestCaseResult>
getTestCaseResultsList()
The list of test case results.TestCaseResultOrBuilder
getTestCaseResultsOrBuilder(int index)
The list of test case results.List<? extends TestCaseResultOrBuilder>
getTestCaseResultsOrBuilderList()
The list of test case results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTestCaseResultsList
List<TestCaseResult> getTestCaseResultsList()
The list of test case results.
repeated .google.cloud.dialogflow.cx.v3beta1.TestCaseResult test_case_results = 1;
-
getTestCaseResults
TestCaseResult getTestCaseResults(int index)
The list of test case results.
repeated .google.cloud.dialogflow.cx.v3beta1.TestCaseResult test_case_results = 1;
-
getTestCaseResultsCount
int getTestCaseResultsCount()
The list of test case results.
repeated .google.cloud.dialogflow.cx.v3beta1.TestCaseResult test_case_results = 1;
-
getTestCaseResultsOrBuilderList
List<? extends TestCaseResultOrBuilder> getTestCaseResultsOrBuilderList()
The list of test case results.
repeated .google.cloud.dialogflow.cx.v3beta1.TestCaseResult test_case_results = 1;
-
getTestCaseResultsOrBuilder
TestCaseResultOrBuilder getTestCaseResultsOrBuilder(int index)
The list of test case results.
repeated .google.cloud.dialogflow.cx.v3beta1.TestCaseResult test_case_results = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-