Interface ListSuggestionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSuggestionsResponse
,ListSuggestionsResponse.Builder
@Deprecated public interface ListSuggestionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getNextPageToken()
Deprecated.Optional.com.google.protobuf.ByteString
getNextPageTokenBytes()
Deprecated.Optional.Suggestion
getSuggestions(int index)
Deprecated.Required.int
getSuggestionsCount()
Deprecated.Required.List<Suggestion>
getSuggestionsList()
Deprecated.Required.SuggestionOrBuilder
getSuggestionsOrBuilder(int index)
Deprecated.Required.List<? extends SuggestionOrBuilder>
getSuggestionsOrBuilderList()
Deprecated.Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSuggestionsList
List<Suggestion> getSuggestionsList()
Deprecated.Required. The list of suggestions. There will be a maximum number of items returned based on the page_size field in the request. `suggestions` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2beta1.Suggestion suggestions = 1;
-
getSuggestions
Suggestion getSuggestions(int index)
Deprecated.Required. The list of suggestions. There will be a maximum number of items returned based on the page_size field in the request. `suggestions` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2beta1.Suggestion suggestions = 1;
-
getSuggestionsCount
int getSuggestionsCount()
Deprecated.Required. The list of suggestions. There will be a maximum number of items returned based on the page_size field in the request. `suggestions` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2beta1.Suggestion suggestions = 1;
-
getSuggestionsOrBuilderList
List<? extends SuggestionOrBuilder> getSuggestionsOrBuilderList()
Deprecated.Required. The list of suggestions. There will be a maximum number of items returned based on the page_size field in the request. `suggestions` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2beta1.Suggestion suggestions = 1;
-
getSuggestionsOrBuilder
SuggestionOrBuilder getSuggestionsOrBuilder(int index)
Deprecated.Required. The list of suggestions. There will be a maximum number of items returned based on the page_size field in the request. `suggestions` is sorted by `create_time` in descending order.
repeated .google.cloud.dialogflow.v2beta1.Suggestion suggestions = 1;
-
getNextPageToken
String getNextPageToken()
Deprecated.Optional. 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()
Deprecated.Optional. 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.
-
-