Class: Mirah::Inputs::PatientConditionInput
- Inherits:
-
BaseInputObject
- Object
- BaseInputObject
- Mirah::Inputs::PatientConditionInput
- Defined in:
- lib/mirah/inputs/patient_condition_input.rb
Overview
A set of parameters for updating a Data::Appointment
Instance Attribute Summary collapse
-
#abatement_date ⇒ string
readonly
The date of abatement.
-
#external_diagnostic_code_id ⇒ string
readonly
Your system identifier for the code the patient has been diagnosed with.
-
#external_id ⇒ string
readonly
The identifier provided by your system.
-
#external_patient_id ⇒ string
readonly
Your system identifier for the patient the condition applies to.
-
#onset_date ⇒ string
readonly
The date of onset.
-
#status ⇒ string
readonly
The status of this condition.
Method Summary
Methods inherited from BaseInputObject
from_graphql_hash, #initialize, #to_graphql_hash, #valid?, #validate!
Constructor Details
This class inherits a constructor from Mirah::BaseInputObject
Instance Attribute Details
#abatement_date ⇒ string (readonly)
Returns The date of abatement.
17 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 17 input :abatement_date, required: false, serializer: Serializers::DateTimeSerializer.new |
#external_diagnostic_code_id ⇒ string (readonly)
Returns Your system identifier for the code the patient has been diagnosed with.
29 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 29 input :external_diagnostic_code_id, required: false |
#external_id ⇒ string (readonly)
Returns The identifier provided by your system.
9 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 9 input :external_id, required: true |
#external_patient_id ⇒ string (readonly)
Returns Your system identifier for the patient the condition applies to.
25 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 25 input :external_patient_id, required: false |
#onset_date ⇒ string (readonly)
Returns The date of onset.
13 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 13 input :onset_date, required: false, serializer: Serializers::DateTimeSerializer.new |
#status ⇒ string (readonly)
Returns The status of this condition.
21 |
# File 'lib/mirah/inputs/patient_condition_input.rb', line 21 input :status, required: true |