Package com.google.cloud.documentai.v1
Interface ProcessResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessResponse,ProcessResponse.Builder
public interface ProcessResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentgetDocument()The document payload, will populate fields based on the processor's behavior.DocumentOrBuildergetDocumentOrBuilder()The document payload, will populate fields based on the processor's behavior.HumanReviewStatusgetHumanReviewStatus()The status of human review on the processed document.HumanReviewStatusOrBuildergetHumanReviewStatusOrBuilder()The status of human review on the processed document.booleanhasDocument()The document payload, will populate fields based on the processor's behavior.booleanhasHumanReviewStatus()The status of human review on the processed document.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDocument
boolean hasDocument()
The document payload, will populate fields based on the processor's behavior.
.google.cloud.documentai.v1.Document document = 1;- Returns:
- Whether the document field is set.
-
getDocument
Document getDocument()
The document payload, will populate fields based on the processor's behavior.
.google.cloud.documentai.v1.Document document = 1;- Returns:
- The document.
-
getDocumentOrBuilder
DocumentOrBuilder getDocumentOrBuilder()
The document payload, will populate fields based on the processor's behavior.
.google.cloud.documentai.v1.Document document = 1;
-
hasHumanReviewStatus
boolean hasHumanReviewStatus()
The status of human review on the processed document.
.google.cloud.documentai.v1.HumanReviewStatus human_review_status = 3;- Returns:
- Whether the humanReviewStatus field is set.
-
getHumanReviewStatus
HumanReviewStatus getHumanReviewStatus()
The status of human review on the processed document.
.google.cloud.documentai.v1.HumanReviewStatus human_review_status = 3;- Returns:
- The humanReviewStatus.
-
getHumanReviewStatusOrBuilder
HumanReviewStatusOrBuilder getHumanReviewStatusOrBuilder()
The status of human review on the processed document.
.google.cloud.documentai.v1.HumanReviewStatus human_review_status = 3;
-
-