@oystehr/sdk
Version:
Oystehr SDK
21 lines (18 loc) • 519 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
import { RoleStub } from './RoleStub';
export interface Project {
id: string;
name: string;
description: string;
/**
* Allows users to self-register to applications in this project.
*/
signupEnabled: boolean;
/**
* Indicates whether the project is in sandbox mode - currently for testing eRx features without affecting real medical services.
*/
sandbox: boolean;
defaultPatientRole?: RoleStub;
defaultSSOUserRole?: RoleStub;
fhirVersion: 'r4' | 'r5';
}