Interface ListPagesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPagesResponse
,ListPagesResponse.Builder
public interface ListPagesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.Page
getPages(int index)
The list of pages.int
getPagesCount()
The list of pages.List<Page>
getPagesList()
The list of pages.PageOrBuilder
getPagesOrBuilder(int index)
The list of pages.List<? extends PageOrBuilder>
getPagesOrBuilderList()
The list of pages.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPagesList
List<Page> getPagesList()
The list of pages. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Page pages = 1;
-
getPages
Page getPages(int index)
The list of pages. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Page pages = 1;
-
getPagesCount
int getPagesCount()
The list of pages. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Page pages = 1;
-
getPagesOrBuilderList
List<? extends PageOrBuilder> getPagesOrBuilderList()
The list of pages. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Page pages = 1;
-
getPagesOrBuilder
PageOrBuilder getPagesOrBuilder(int index)
The list of pages. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Page pages = 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.
-
-