Interface BatchProcessDocumentsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchProcessDocumentsRequest,BatchProcessDocumentsRequest.Builder
public interface BatchProcessDocumentsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetParent()Target project and location to make a call.com.google.protobuf.ByteStringgetParentBytes()Target project and location to make a call.ProcessDocumentRequestgetRequests(int index)Required.intgetRequestsCount()Required.List<ProcessDocumentRequest>getRequestsList()Required.ProcessDocumentRequestOrBuildergetRequestsOrBuilder(int index)Required.List<? extends ProcessDocumentRequestOrBuilder>getRequestsOrBuilderList()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRequestsList
List<ProcessDocumentRequest> getRequestsList()
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta2.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequests
ProcessDocumentRequest getRequests(int index)
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta2.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsCount
int getRequestsCount()
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta2.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsOrBuilderList
List<? extends ProcessDocumentRequestOrBuilder> getRequestsOrBuilderList()
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta2.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsOrBuilder
ProcessDocumentRequestOrBuilder getRequestsOrBuilder(int index)
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta2.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getParent
String getParent()
Target project and location to make a call. Format: `projects/{project-id}/locations/{location-id}`. If no location is specified, a region will be chosen automatically.string parent = 2;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Target project and location to make a call. Format: `projects/{project-id}/locations/{location-id}`. If no location is specified, a region will be chosen automatically.string parent = 2;- Returns:
- The bytes for parent.
-
-