Interface ListConversationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListConversationsResponse
,ListConversationsResponse.Builder
public interface ListConversationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Conversation
getConversations(int index)
The list of conversations.int
getConversationsCount()
The list of conversations.List<Conversation>
getConversationsList()
The list of conversations.ConversationOrBuilder
getConversationsOrBuilder(int index)
The list of conversations.List<? extends ConversationOrBuilder>
getConversationsOrBuilderList()
The list of conversations.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
-
getConversationsList
List<Conversation> getConversationsList()
The list of conversations. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Conversation conversations = 1;
-
getConversations
Conversation getConversations(int index)
The list of conversations. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Conversation conversations = 1;
-
getConversationsCount
int getConversationsCount()
The list of conversations. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Conversation conversations = 1;
-
getConversationsOrBuilderList
List<? extends ConversationOrBuilder> getConversationsOrBuilderList()
The list of conversations. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Conversation conversations = 1;
-
getConversationsOrBuilder
ConversationOrBuilder getConversationsOrBuilder(int index)
The list of conversations. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2beta1.Conversation conversations = 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.
-
-