Skip to content

IndividualClientNoteInput

Payload for an individual client note

Fields

content · String · The content of the individual client note
id · ID · The ID of the individual client note
attended · Boolean · The client's attendance status. This gets applied to the AppointmentInclusion object
icd_codes_individual_client_notes_attributes · [IcdCodesIndividualClientNoteInput] · Diagnoses connected to the individual client attendance
join_time · String · The datetime (ISO 8601) that the attendee joined the appointment
leave_time · String · The datetime (ISO 8601) that the attendee left the appointment
user_id · ID · The ID of the user who created the individual client note

Used By

Definition

"""
Payload for an individual client note
"""
input IndividualClientNoteInput {
"""
The content of the individual client note
"""
content: String
"""
The ID of the individual client note
"""
id: ID
"""
The client's attendance status. This gets applied to the AppointmentInclusion object
"""
attended: Boolean
"""
Diagnoses connected to the individual client attendance
"""
icd_codes_individual_client_notes_attributes: [IcdCodesIndividualClientNoteInput]
"""
The datetime (ISO 8601) that the attendee joined the appointment
"""
join_time: String
"""
The datetime (ISO 8601) that the attendee left the appointment
"""
leave_time: String
"""
The ID of the user who created the individual client note
"""
user_id: ID
}