export interface ProjectUpdateParams {
    name?: string;
    description?: string;
    /**
     * Allows users to self-register to applications in this project.
     */
    signupEnabled?: boolean;
    /**
     * The id of a role that will be assigned to self-registering users of the project's applications.
     */
    defaultPatientRoleId?: string | null;
    /**
     * The id of a role that will be assigned to users who authenticate using your SSO identity provider.
     */
    defaultSSOUserRoleId?: string | null;
}
