Class: Google::Apis::HealthcareV1beta1::Result
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Result
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
The consent evaluation result for a single data_id
.
Instance Attribute Summary collapse
-
#consent_details ⇒ Hash<String,Google::Apis::HealthcareV1beta1::ConsentEvaluation>
The resource names of all evaluated Consents mapped to their evaluation.
-
#consented ⇒ Boolean
(also: #consented?)
Whether the resource is consented for the given use.
-
#data_id ⇒ String
The unique identifier of the evaluated resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Result
constructor
A new instance of Result.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Result
Returns a new instance of Result.
6382 6383 6384 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6382 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consent_details ⇒ Hash<String,Google::Apis::HealthcareV1beta1::ConsentEvaluation>
The resource names of all evaluated Consents mapped to their evaluation.
Corresponds to the JSON property consentDetails
6369 6370 6371 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6369 def @consent_details end |
#consented ⇒ Boolean Also known as: consented?
Whether the resource is consented for the given use.
Corresponds to the JSON property consented
6374 6375 6376 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6374 def @consented end |
#data_id ⇒ String
The unique identifier of the evaluated resource.
Corresponds to the JSON property dataId
6380 6381 6382 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6380 def data_id @data_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6387 6388 6389 6390 6391 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6387 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 |