12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- syntax = "proto3";
- package google.cloud.documentai.v1beta3;
- import "google/protobuf/field_mask.proto";
- option csharp_namespace = "Google.Cloud.DocumentAI.V1Beta3";
- option go_package = "google.golang.org/genproto/googleapis/cloud/documentai/v1beta3;documentai";
- option java_multiple_files = true;
- option java_outer_classname = "DocumentIoProto";
- option java_package = "com.google.cloud.documentai.v1beta3";
- option php_namespace = "Google\\Cloud\\DocumentAI\\V1beta3";
- option ruby_package = "Google::Cloud::DocumentAI::V1beta3";
- message RawDocument {
-
- bytes content = 1;
-
-
- string mime_type = 2;
- }
- message GcsDocument {
-
- string gcs_uri = 1;
-
- string mime_type = 2;
- }
- message GcsDocuments {
-
- repeated GcsDocument documents = 1;
- }
- message GcsPrefix {
-
- string gcs_uri_prefix = 1;
- }
- message BatchDocumentsInputConfig {
-
- oneof source {
-
- GcsPrefix gcs_prefix = 1;
-
- GcsDocuments gcs_documents = 2;
- }
- }
- message DocumentOutputConfig {
-
- message GcsOutputConfig {
-
- string gcs_uri = 1;
-
-
-
- google.protobuf.FieldMask field_mask = 2;
- }
-
- oneof destination {
-
- GcsOutputConfig gcs_output_config = 1;
- }
- }
|