Interface ListPhraseMatchersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPhraseMatchersResponse
,ListPhraseMatchersResponse.Builder
public interface ListPhraseMatchersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.PhraseMatcher
getPhraseMatchers(int index)
The phrase matchers that match the request.int
getPhraseMatchersCount()
The phrase matchers that match the request.List<PhraseMatcher>
getPhraseMatchersList()
The phrase matchers that match the request.PhraseMatcherOrBuilder
getPhraseMatchersOrBuilder(int index)
The phrase matchers that match the request.List<? extends PhraseMatcherOrBuilder>
getPhraseMatchersOrBuilderList()
The phrase matchers that match the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPhraseMatchersList
List<PhraseMatcher> getPhraseMatchersList()
The phrase matchers that match the request.
repeated .google.cloud.contactcenterinsights.v1.PhraseMatcher phrase_matchers = 1;
-
getPhraseMatchers
PhraseMatcher getPhraseMatchers(int index)
The phrase matchers that match the request.
repeated .google.cloud.contactcenterinsights.v1.PhraseMatcher phrase_matchers = 1;
-
getPhraseMatchersCount
int getPhraseMatchersCount()
The phrase matchers that match the request.
repeated .google.cloud.contactcenterinsights.v1.PhraseMatcher phrase_matchers = 1;
-
getPhraseMatchersOrBuilderList
List<? extends PhraseMatcherOrBuilder> getPhraseMatchersOrBuilderList()
The phrase matchers that match the request.
repeated .google.cloud.contactcenterinsights.v1.PhraseMatcher phrase_matchers = 1;
-
getPhraseMatchersOrBuilder
PhraseMatcherOrBuilder getPhraseMatchersOrBuilder(int index)
The phrase matchers that match the request.
repeated .google.cloud.contactcenterinsights.v1.PhraseMatcher phrase_matchers = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
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 omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-