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 InputConfiggetInputConfig()Information about the input file.InputConfigOrBuildergetInputConfigOrBuilder()Information about the input file.OutputConfiggetOutputConfig()The output location of the parsed responses.OutputConfigOrBuildergetOutputConfigOrBuilder()The output location of the parsed responses.booleanhasInputConfig()Information about the input file.booleanhasOutputConfig()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.v1beta2.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.v1beta2.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.v1beta2.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.v1beta2.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.v1beta2.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.v1beta2.OutputConfig output_config = 2;
-
-