class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchDocumentsInputConfig

The common config to specify a set of documents used as input.

Attributes

gcs_documents[RW]

Specifies a set of documents on Cloud Storage. Corresponds to the JSON property `gcsDocuments` @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1GcsDocuments]

gcs_prefix[RW]

Specifies all documents on Cloud Storage with a common prefix. Corresponds to the JSON property `gcsPrefix` @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1GcsPrefix]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1/classes.rb, line 637
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/documentai_v1/classes.rb, line 642
def update!(**args)
  @gcs_documents = args[:gcs_documents] if args.key?(:gcs_documents)
  @gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
end