DiagnosesInput
Payload for a diagnosis
Fields
first_symptom_date
· String
· The date of the first symptom icd_code_id
· ID
· The ID of the ICD code Used By
Definition
"""Payload for a diagnosis"""input DiagnosesInput { """ If true, the diagnosis will be deleted upon saving """ _destroy: Boolean
""" Whether the diagnosis is active or not """ active: Boolean
""" Whether the diagnosis is the primary diagnosis """ primary: Boolean
""" The date of the end of the diagnosis """ end_date: String
""" The date of the first symptom """ first_symptom_date: String
""" The ID of the ICD code """ icd_code_id: ID
""" The ID of the diagnosis """ id: ID}