class Google::Apis::HealthcareV1::PatientId
A patient identifier and associated type.
Attributes
type[RW]
ID type. For example, MRN or NHS. Corresponds to the JSON property `type` @return [String]
value[RW]
The patient's unique identifier. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 3243 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 3248 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end