Class: Google::Apis::HealthcareV1::RejectConsentRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::RejectConsentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
Rejects the latest revision of the specified Consent by committing a new
revision with state
updated to REJECTED
. If the latest revision of the
given Consent is in the REJECTED
state, no new revision is committed.
Instance Attribute Summary collapse
-
#consent_artifact ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RejectConsentRequest
constructor
A new instance of RejectConsentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RejectConsentRequest
Returns a new instance of RejectConsentRequest.
3656 3657 3658 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consent_artifact ⇒ String
Optional. The resource name of the Consent artifact that contains
documentation of the user's rejection of the draft Consent, of the form
projects/
project_id/locations/
location_id/datasets/
dataset_id/
consentStores/
consent_store_id/consentArtifacts/
consent_artifact_id`. If
the draft Consent had a Consent artifact, this Consent artifact overwrites it.
Corresponds to the JSON property
consentArtifact`
3654 3655 3656 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3654 def @consent_artifact end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3661 3662 3663 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3661 def update!(**args) @consent_artifact = args[:consent_artifact] if args.key?(:consent_artifact) end |