class Google::Apis::HealthcareV1::Result

The consent evaluation result for a single `data_id`.

Attributes

consented[RW]

Whether the resource is consented for the given use. Corresponds to the JSON property `consented` @return [Boolean]

consented?[RW]

Whether the resource is consented for the given use. Corresponds to the JSON property `consented` @return [Boolean]

data_id[RW]

The unique identifier of the evaluated resource. Corresponds to the JSON property `dataId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 3532
def update!(**args)
  @consent_details = args[:consent_details] if args.key?(:consent_details)
  @consented = args[:consented] if args.key?(:consented)
  @data_id = args[:data_id] if args.key?(:data_id)
end