Interface ListLinkedSourcesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListLinkedSourcesResponse
,ListLinkedSourcesResponse.Builder
public interface ListLinkedSourcesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentLink
getDocumentLinks(int index)
Source document-links.int
getDocumentLinksCount()
Source document-links.List<DocumentLink>
getDocumentLinksList()
Source document-links.DocumentLinkOrBuilder
getDocumentLinksOrBuilder(int index)
Source document-links.List<? extends DocumentLinkOrBuilder>
getDocumentLinksOrBuilderList()
Source document-links.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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDocumentLinksList
List<DocumentLink> getDocumentLinksList()
Source document-links.
repeated .google.cloud.contentwarehouse.v1.DocumentLink document_links = 1;
-
getDocumentLinks
DocumentLink getDocumentLinks(int index)
Source document-links.
repeated .google.cloud.contentwarehouse.v1.DocumentLink document_links = 1;
-
getDocumentLinksCount
int getDocumentLinksCount()
Source document-links.
repeated .google.cloud.contentwarehouse.v1.DocumentLink document_links = 1;
-
getDocumentLinksOrBuilderList
List<? extends DocumentLinkOrBuilder> getDocumentLinksOrBuilderList()
Source document-links.
repeated .google.cloud.contentwarehouse.v1.DocumentLink document_links = 1;
-
getDocumentLinksOrBuilder
DocumentLinkOrBuilder getDocumentLinksOrBuilder(int index)
Source document-links.
repeated .google.cloud.contentwarehouse.v1.DocumentLink document_links = 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.
-
-