Interface ListDocumentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDocumentsResponse
,ListDocumentsResponse.Builder
public interface ListDocumentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Document
getDocuments(int index)
The list of documents.int
getDocumentsCount()
The list of documents.List<Document>
getDocumentsList()
The list of documents.DocumentOrBuilder
getDocumentsOrBuilder(int index)
The list of documents.List<? extends DocumentOrBuilder>
getDocumentsOrBuilderList()
The list of documents.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
-
getDocumentsList
List<Document> getDocumentsList()
The list of documents.
repeated .google.cloud.dialogflow.v2beta1.Document documents = 1;
-
getDocuments
Document getDocuments(int index)
The list of documents.
repeated .google.cloud.dialogflow.v2beta1.Document documents = 1;
-
getDocumentsCount
int getDocumentsCount()
The list of documents.
repeated .google.cloud.dialogflow.v2beta1.Document documents = 1;
-
getDocumentsOrBuilderList
List<? extends DocumentOrBuilder> getDocumentsOrBuilderList()
The list of documents.
repeated .google.cloud.dialogflow.v2beta1.Document documents = 1;
-
getDocumentsOrBuilder
DocumentOrBuilder getDocumentsOrBuilder(int index)
The list of documents.
repeated .google.cloud.dialogflow.v2beta1.Document documents = 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.
-
-