Interface ProcessDocumentResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessDocumentResponse
,ProcessDocumentResponse.Builder
public interface ProcessDocumentResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputConfig
getInputConfig()
Information about the input file.InputConfigOrBuilder
getInputConfigOrBuilder()
Information about the input file.OutputConfig
getOutputConfig()
The output location of the parsed responses.OutputConfigOrBuilder
getOutputConfigOrBuilder()
The output location of the parsed responses.boolean
hasInputConfig()
Information about the input file.boolean
hasOutputConfig()
The output location of the parsed responses.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInputConfig
boolean hasInputConfig()
Information about the input file. This is the same as the corresponding input config in the request.
.google.cloud.documentai.v1beta1.InputConfig input_config = 1;
- Returns:
- Whether the inputConfig field is set.
-
getInputConfig
InputConfig getInputConfig()
Information about the input file. This is the same as the corresponding input config in the request.
.google.cloud.documentai.v1beta1.InputConfig input_config = 1;
- Returns:
- The inputConfig.
-
getInputConfigOrBuilder
InputConfigOrBuilder getInputConfigOrBuilder()
Information about the input file. This is the same as the corresponding input config in the request.
.google.cloud.documentai.v1beta1.InputConfig input_config = 1;
-
hasOutputConfig
boolean hasOutputConfig()
The output location of the parsed responses. The responses are written to this location as JSON-serialized `Document` objects.
.google.cloud.documentai.v1beta1.OutputConfig output_config = 2;
- Returns:
- Whether the outputConfig field is set.
-
getOutputConfig
OutputConfig getOutputConfig()
The output location of the parsed responses. The responses are written to this location as JSON-serialized `Document` objects.
.google.cloud.documentai.v1beta1.OutputConfig output_config = 2;
- Returns:
- The outputConfig.
-
getOutputConfigOrBuilder
OutputConfigOrBuilder getOutputConfigOrBuilder()
The output location of the parsed responses. The responses are written to this location as JSON-serialized `Document` objects.
.google.cloud.documentai.v1beta1.OutputConfig output_config = 2;
-
-