@oystehr/sdk
Version:
Oystehr SDK
20 lines (19 loc) • 481 B
TypeScript
import { RoleStub } from './RoleStub';
/**
* Successfully invited a developer
*/
export interface DeveloperInviteResponse {
id: string;
/**
* The email with which the developer was invited.
*/
email: string;
/**
* The ID of the FHIR Practitioner resource that represents the developer. Also known as the Developer's "profile".
*/
practitionerId: string;
/**
* The roles assigned to the developer.
*/
roles: RoleStub[];
}