@oystehr/sdk
Version:
Oystehr SDK
24 lines (21 loc) • 519 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
import { RoleStub } from './RoleStub';
export interface Developer {
id: string;
/**
* The email with which the developer was invited.
*/
email: string;
/**
* The developer's name. This defaults to the email with which the developer was invited.
*/
name: string;
/**
* Reference to the FHIR Practitioner resource that represents the developer in the FHIR store.
*/
profile: string;
/**
* The roles assigned to the User.
*/
roles: RoleStub[];
}