com.google.cloud.documentai.v1beta3.ProcessRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-document-ai-v1beta3 Show documentation
Show all versions of proto-google-cloud-document-ai-v1beta3 Show documentation
PROTO library for proto-google-cloud-document-ai-v1beta3
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/documentai/v1beta3/document_processor_service.proto
package com.google.cloud.documentai.v1beta3;
public interface ProcessRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.documentai.v1beta3.ProcessRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* An inline document proto.
*
*
* .google.cloud.documentai.v1beta3.Document inline_document = 4;
*
* @return Whether the inlineDocument field is set.
*/
boolean hasInlineDocument();
/**
*
*
*
* An inline document proto.
*
*
* .google.cloud.documentai.v1beta3.Document inline_document = 4;
*
* @return The inlineDocument.
*/
com.google.cloud.documentai.v1beta3.Document getInlineDocument();
/**
*
*
*
* An inline document proto.
*
*
* .google.cloud.documentai.v1beta3.Document inline_document = 4;
*/
com.google.cloud.documentai.v1beta3.DocumentOrBuilder getInlineDocumentOrBuilder();
/**
*
*
*
* A raw document content (bytes).
*
*
* .google.cloud.documentai.v1beta3.RawDocument raw_document = 5;
*
* @return Whether the rawDocument field is set.
*/
boolean hasRawDocument();
/**
*
*
*
* A raw document content (bytes).
*
*
* .google.cloud.documentai.v1beta3.RawDocument raw_document = 5;
*
* @return The rawDocument.
*/
com.google.cloud.documentai.v1beta3.RawDocument getRawDocument();
/**
*
*
*
* A raw document content (bytes).
*
*
* .google.cloud.documentai.v1beta3.RawDocument raw_document = 5;
*/
com.google.cloud.documentai.v1beta3.RawDocumentOrBuilder getRawDocumentOrBuilder();
/**
*
*
*
* Required. The processor resource name.
*
*
*
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Required. The processor resource name.
*
*
*
* string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The document payload, the [content] and [mime_type] fields must be set.
*
*
* .google.cloud.documentai.v1beta3.Document document = 2 [deprecated = true];
*
* @return Whether the document field is set.
*/
@java.lang.Deprecated
boolean hasDocument();
/**
*
*
*
* The document payload, the [content] and [mime_type] fields must be set.
*
*
* .google.cloud.documentai.v1beta3.Document document = 2 [deprecated = true];
*
* @return The document.
*/
@java.lang.Deprecated
com.google.cloud.documentai.v1beta3.Document getDocument();
/**
*
*
*
* The document payload, the [content] and [mime_type] fields must be set.
*
*
* .google.cloud.documentai.v1beta3.Document document = 2 [deprecated = true];
*/
@java.lang.Deprecated
com.google.cloud.documentai.v1beta3.DocumentOrBuilder getDocumentOrBuilder();
/**
*
*
*
* Whether Human Review feature should be skipped for this request. Default to
* false.
*
*
* bool skip_human_review = 3;
*
* @return The skipHumanReview.
*/
boolean getSkipHumanReview();
public com.google.cloud.documentai.v1beta3.ProcessRequest.SourceCase getSourceCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy