Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3BatchDeleteDocumentsMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3BatchDeleteDocumentsMetadata

Returns a new instance of GoogleCloudDocumentaiV1beta3BatchDeleteDocumentsMetadata.



6197
6198
6199
# File 'lib/google/apis/documentai_v1/classes.rb', line 6197

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#common_metadataGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3CommonOperationMetadata

The common metadata for long running operations. Corresponds to the JSON property commonMetadata



6180
6181
6182
# File 'lib/google/apis/documentai_v1/classes.rb', line 6180

def 
  @common_metadata
end

#error_document_countFixnum

Total number of documents that failed to be deleted in storage. Corresponds to the JSON property errorDocumentCount

Returns:

  • (Fixnum)


6185
6186
6187
# File 'lib/google/apis/documentai_v1/classes.rb', line 6185

def error_document_count
  @error_document_count
end

#individual_batch_delete_statusesArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus>

The list of response details of each document. Corresponds to the JSON property individualBatchDeleteStatuses



6190
6191
6192
# File 'lib/google/apis/documentai_v1/classes.rb', line 6190

def individual_batch_delete_statuses
  @individual_batch_delete_statuses
end

#total_document_countFixnum

Total number of documents deleting from dataset. Corresponds to the JSON property totalDocumentCount

Returns:

  • (Fixnum)


6195
6196
6197
# File 'lib/google/apis/documentai_v1/classes.rb', line 6195

def total_document_count
  @total_document_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6202
6203
6204
6205
6206
6207
# File 'lib/google/apis/documentai_v1/classes.rb', line 6202

def update!(**args)
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
  @error_document_count = args[:error_document_count] if args.key?(:error_document_count)
  @individual_batch_delete_statuses = args[:individual_batch_delete_statuses] if args.key?(:individual_batch_delete_statuses)
  @total_document_count = args[:total_document_count] if args.key?(:total_document_count)
end