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 conversations that match the request.int
getConversationsCount()
The conversations that match the request.List<Conversation>
getConversationsList()
The conversations that match the request.ConversationOrBuilder
getConversationsOrBuilder(int index)
The conversations that match the request.List<? extends ConversationOrBuilder>
getConversationsOrBuilderList()
The conversations that match the request.String
getNextPageToken()
A token which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token which can be sent as `page_token` to retrieve the next 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()
The conversations that match the request.
repeated .google.cloud.contactcenterinsights.v1.Conversation conversations = 1;
-
getConversations
Conversation getConversations(int index)
The conversations that match the request.
repeated .google.cloud.contactcenterinsights.v1.Conversation conversations = 1;
-
getConversationsCount
int getConversationsCount()
The conversations that match the request.
repeated .google.cloud.contactcenterinsights.v1.Conversation conversations = 1;
-
getConversationsOrBuilderList
List<? extends ConversationOrBuilder> getConversationsOrBuilderList()
The conversations that match the request.
repeated .google.cloud.contactcenterinsights.v1.Conversation conversations = 1;
-
getConversationsOrBuilder
ConversationOrBuilder getConversationsOrBuilder(int index)
The conversations that match the request.
repeated .google.cloud.contactcenterinsights.v1.Conversation conversations = 1;
-
getNextPageToken
String getNextPageToken()
A token which can be sent as `page_token` to retrieve the next page. If this field is set, it means there is another page available. If it is not set, it means no other pages are available.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token which can be sent as `page_token` to retrieve the next page. If this field is set, it means there is another page available. If it is not set, it means no other pages are available.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-