Class: Google::Apis::HealthcareV1::Signature
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::Signature
- 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
User signature.
Instance Attribute Summary collapse
-
#image ⇒ Google::Apis::HealthcareV1::Image
Raw bytes representing consent artifact content.
-
#metadata ⇒ Hash<String,String>
Optional.
-
#signature_time ⇒ String
Optional.
-
#user_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Signature
constructor
A new instance of Signature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Signature
Returns a new instance of Signature.
5833 5834 5835 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5833 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image ⇒ Google::Apis::HealthcareV1::Image
Raw bytes representing consent artifact content.
Corresponds to the JSON property image
5815 5816 5817 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5815 def image @image end |
#metadata ⇒ Hash<String,String>
Optional. Metadata associated with the user's signature. For example, the user'
s name or the user's title.
Corresponds to the JSON property metadata
5821 5822 5823 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5821 def @metadata end |
#signature_time ⇒ String
Optional. Timestamp of the signature.
Corresponds to the JSON property signatureTime
5826 5827 5828 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5826 def signature_time @signature_time end |
#user_id ⇒ String
Required. User's UUID provided by the client.
Corresponds to the JSON property userId
5831 5832 5833 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5831 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5838 5839 5840 5841 5842 5843 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5838 def update!(**args) @image = args[:image] if args.key?(:image) @metadata = args[:metadata] if args.key?(:metadata) @signature_time = args[:signature_time] if args.key?(:signature_time) @user_id = args[:user_id] if args.key?(:user_id) end |