Skip to content

ClientPortalSetting

A client portal settings

Fields

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

Used By

Definition

"""
A client portal settings
"""
type ClientPortalSetting {
"""
Chat with provider
"""
chat_with_provider: Boolean!
"""
The unique identifier of the setting
"""
id: ID!
"""
If the client can schedule appointments
"""
schedule_appointments: Boolean!
"""
If the client can view and complete forms
"""
view_and_complete_forms: Boolean!
"""
If the client can view and create goals
"""
view_and_create_goals: Boolean!
"""
If the client can view and create journal entries
"""
view_and_create_journal_entries: Boolean!
"""
If the client can view and pay bills
"""
view_and_pay_bills: Boolean!
"""
If the client can view and purchase packages
"""
view_and_purchase_packages: Boolean!
"""
If the client can view and upload documents
"""
view_and_upload_documents: Boolean!
}