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[];
}
