SubOrganizationInfoInput
Payload for a sub-organization
Fields
copy_appointment_settings
· Boolean
· Whether to copy the appointment settings from the parent organization copy_onboarding_flows
· Boolean
· Whether to copy the onboarding flows from the parent organization copy_packages
· Boolean
· Whether to copy the packages from the parent organization copy_programs
· Boolean
· Whether to copy the programs from the parent organization inherit_appointment_types
· Boolean
· Whether to inherit appointment types from the parent organization inherit_custom_module_forms
· Boolean
· Whether to inherit custom module forms from the parent organization inherit_stripe_account
· Boolean
· Whether to inherit the stripe account from the parent organization deprecated
Use primary organization info input insteadUsed By
Definition
"""Payload for a sub-organization"""input SubOrganizationInfoInput { """ Whether to copy the appointment settings from the parent organization """ copy_appointment_settings: Boolean = true
""" Whether to copy the onboarding flows from the parent organization """ copy_onboarding_flows: Boolean = false
""" Whether to copy the packages from the parent organization """ copy_packages: Boolean = false
""" Whether to copy the programs from the parent organization """ copy_programs: Boolean = false
""" The ID of the suborganization """ id: ID
""" Whether to inherit appointment types from the parent organization """ inherit_appointment_types: Boolean = true
""" Whether to inherit custom module forms from the parent organization """ inherit_custom_module_forms: Boolean = true
""" Whether to inherit the stripe account from the parent organization """ inherit_stripe_account: Boolean = true
""" DEPRECATED: Use primary organization info input instead """ name: String @deprecated(reason: "Use primary organization info input instead")}