Class: Google::Apis::HealthcareV1beta1::DeidentifySummary

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

Overview

Contains a detailed summary of the Deidentify operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeidentifySummary

Returns a new instance of DeidentifySummary



433
434
435
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 433

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

Instance Attribute Details

#success_resource_countFixnum

Number of resources successfully processed. Corresponds to the JSON property successResourceCount

Returns:

  • (Fixnum)


426
427
428
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 426

def success_resource_count
  @success_resource_count
end

#success_store_countFixnum

Number of stores successfully processed. Corresponds to the JSON property successStoreCount

Returns:

  • (Fixnum)


431
432
433
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 431

def success_store_count
  @success_store_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



438
439
440
441
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 438

def update!(**args)
  @success_resource_count = args[:success_resource_count] if args.key?(:success_resource_count)
  @success_store_count = args[:success_store_count] if args.key?(:success_store_count)
end