Package com.google.cloud.dialogflow.v2
Interface ListMessagesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMessagesResponse
,ListMessagesResponse.Builder
public interface ListMessagesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Message
getMessages(int index)
The list of messages.int
getMessagesCount()
The list of messages.List<Message>
getMessagesList()
The list of messages.MessageOrBuilder
getMessagesOrBuilder(int index)
The list of messages.List<? extends MessageOrBuilder>
getMessagesOrBuilderList()
The list of messages.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
-
getMessagesList
List<Message> getMessagesList()
The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2.Message messages = 1;
-
getMessages
Message getMessages(int index)
The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2.Message messages = 1;
-
getMessagesCount
int getMessagesCount()
The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2.Message messages = 1;
-
getMessagesOrBuilderList
List<? extends MessageOrBuilder> getMessagesOrBuilderList()
The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2.Message messages = 1;
-
getMessagesOrBuilder
MessageOrBuilder getMessagesOrBuilder(int index)
The list of messages. There will be a maximum number of items returned based on the page_size field in the request. `messages` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2.Message messages = 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.
-
-