Skip to content

ClientPortalSettingInput

Payload for a client portal setting

Fields

chat_with_provider · Boolean · Whether the client can chat with the provider
id · ID · The id of the client portal setting
schedule_appointments · Boolean · Whether the client can schedule appointments
view_and_complete_forms · Boolean · Whether the client can view and complete forms
view_and_create_goals · Boolean · Whether the client can view and create goals
view_and_create_journal_entries · Boolean · Whether the client can view and create journal entries
view_and_pay_bills · Boolean · Whether the client can view and pay bills
view_and_purchase_packages · Boolean · Whether the client can view and purchase packages
view_and_upload_documents · Boolean · Whether the client can view and upload documents

Used By

Definition

"""
Payload for a client portal setting
"""
input ClientPortalSettingInput {
"""
Whether the client can chat with the provider
"""
chat_with_provider: Boolean
"""
The id of the client portal setting
"""
id: ID
"""
Whether the client can schedule appointments
"""
schedule_appointments: Boolean
"""
Whether the client can view and complete forms
"""
view_and_complete_forms: Boolean
"""
Whether the client can view and create goals
"""
view_and_create_goals: Boolean
"""
Whether the client can view and create journal entries
"""
view_and_create_journal_entries: Boolean
"""
Whether the client can view and pay bills
"""
view_and_pay_bills: Boolean
"""
Whether the client can view and purchase packages
"""
view_and_purchase_packages: Boolean
"""
Whether the client can view and upload documents
"""
view_and_upload_documents: Boolean
}