Interface ListViewsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListViewsResponse,ListViewsResponse.Builder
public interface ListViewsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as `page_token` to retrieve the next page.ViewgetViews(int index)The views that match the request.intgetViewsCount()The views that match the request.List<View>getViewsList()The views that match the request.ViewOrBuildergetViewsOrBuilder(int index)The views that match the request.List<? extends ViewOrBuilder>getViewsOrBuilderList()The views 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
-
getViewsList
List<View> getViewsList()
The views that match the request.
repeated .google.cloud.contactcenterinsights.v1.View views = 1;
-
getViews
View getViews(int index)
The views that match the request.
repeated .google.cloud.contactcenterinsights.v1.View views = 1;
-
getViewsCount
int getViewsCount()
The views that match the request.
repeated .google.cloud.contactcenterinsights.v1.View views = 1;
-
getViewsOrBuilderList
List<? extends ViewOrBuilder> getViewsOrBuilderList()
The views that match the request.
repeated .google.cloud.contactcenterinsights.v1.View views = 1;
-
getViewsOrBuilder
ViewOrBuilder getViewsOrBuilder(int index)
The views that match the request.
repeated .google.cloud.contactcenterinsights.v1.View views = 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.
-
-