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)
All the Conversations for a given data store.int
getConversationsCount()
All the Conversations for a given data store.List<Conversation>
getConversationsList()
All the Conversations for a given data store.ConversationOrBuilder
getConversationsOrBuilder(int index)
All the Conversations for a given data store.List<? extends ConversationOrBuilder>
getConversationsOrBuilderList()
All the Conversations for a given data store.String
getNextPageToken()
Pagination token, if not returned indicates the last page.com.google.protobuf.ByteString
getNextPageTokenBytes()
Pagination token, if not returned indicates the last page.-
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()
All the Conversations for a given data store.
repeated .google.cloud.discoveryengine.v1.Conversation conversations = 1;
-
getConversations
Conversation getConversations(int index)
All the Conversations for a given data store.
repeated .google.cloud.discoveryengine.v1.Conversation conversations = 1;
-
getConversationsCount
int getConversationsCount()
All the Conversations for a given data store.
repeated .google.cloud.discoveryengine.v1.Conversation conversations = 1;
-
getConversationsOrBuilderList
List<? extends ConversationOrBuilder> getConversationsOrBuilderList()
All the Conversations for a given data store.
repeated .google.cloud.discoveryengine.v1.Conversation conversations = 1;
-
getConversationsOrBuilder
ConversationOrBuilder getConversationsOrBuilder(int index)
All the Conversations for a given data store.
repeated .google.cloud.discoveryengine.v1.Conversation conversations = 1;
-
getNextPageToken
String getNextPageToken()
Pagination token, if not returned indicates the last page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Pagination token, if not returned indicates the last page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-