@oystehr/sdk
Version:
Oystehr SDK
19 lines (17 loc) • 531 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
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;
}