Interface ListContextsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListContextsResponse
,ListContextsResponse.Builder
public interface ListContextsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Context
getContexts(int index)
The list of contexts.int
getContextsCount()
The list of contexts.List<Context>
getContextsList()
The list of contexts.ContextOrBuilder
getContextsOrBuilder(int index)
The list of contexts.List<? extends ContextOrBuilder>
getContextsOrBuilderList()
The list of contexts.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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContextsList
List<Context> getContextsList()
The list of contexts. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Context contexts = 1;
-
getContexts
Context getContexts(int index)
The list of contexts. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Context contexts = 1;
-
getContextsCount
int getContextsCount()
The list of contexts. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Context contexts = 1;
-
getContextsOrBuilderList
List<? extends ContextOrBuilder> getContextsOrBuilderList()
The list of contexts. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Context contexts = 1;
-
getContextsOrBuilder
ContextOrBuilder getContextsOrBuilder(int index)
The list of contexts. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Context contexts = 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.
-
-