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 String
getParent()
Target project and location to make a call.com.google.protobuf.ByteString
getParentBytes()
Target project and location to make a call.ProcessDocumentRequest
getRequests(int index)
Required.int
getRequestsCount()
Required.List<ProcessDocumentRequest>
getRequestsList()
Required.ProcessDocumentRequestOrBuilder
getRequestsOrBuilder(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.v1beta1.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequests
ProcessDocumentRequest getRequests(int index)
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta1.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsCount
int getRequestsCount()
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta1.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsOrBuilderList
List<? extends ProcessDocumentRequestOrBuilder> getRequestsOrBuilderList()
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta1.ProcessDocumentRequest requests = 1 [(.google.api.field_behavior) = REQUIRED];
-
getRequestsOrBuilder
ProcessDocumentRequestOrBuilder getRequestsOrBuilder(int index)
Required. Individual requests for each document.
repeated .google.cloud.documentai.v1beta1.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.
-
-