Interface ListDocumentSchemasResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDocumentSchemasResponse,ListDocumentSchemasResponse.Builder
public interface ListDocumentSchemasResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentSchemagetDocumentSchemas(int index)The document schemas from the specified parent.intgetDocumentSchemasCount()The document schemas from the specified parent.List<DocumentSchema>getDocumentSchemasList()The document schemas from the specified parent.DocumentSchemaOrBuildergetDocumentSchemasOrBuilder(int index)The document schemas from the specified parent.List<? extends DocumentSchemaOrBuilder>getDocumentSchemasOrBuilderList()The document schemas from the specified parent.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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDocumentSchemasList
List<DocumentSchema> getDocumentSchemasList()
The document schemas from the specified parent.
repeated .google.cloud.contentwarehouse.v1.DocumentSchema document_schemas = 1;
-
getDocumentSchemas
DocumentSchema getDocumentSchemas(int index)
The document schemas from the specified parent.
repeated .google.cloud.contentwarehouse.v1.DocumentSchema document_schemas = 1;
-
getDocumentSchemasCount
int getDocumentSchemasCount()
The document schemas from the specified parent.
repeated .google.cloud.contentwarehouse.v1.DocumentSchema document_schemas = 1;
-
getDocumentSchemasOrBuilderList
List<? extends DocumentSchemaOrBuilder> getDocumentSchemasOrBuilderList()
The document schemas from the specified parent.
repeated .google.cloud.contentwarehouse.v1.DocumentSchema document_schemas = 1;
-
getDocumentSchemasOrBuilder
DocumentSchemaOrBuilder getDocumentSchemasOrBuilder(int index)
The document schemas from the specified parent.
repeated .google.cloud.contentwarehouse.v1.DocumentSchema document_schemas = 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.
-
-