@dvsa/smc-encounter-schema
Version:
Schemas required for Encounter submission as well as custom validators ## Developing ### Pre-requisites
24 lines (21 loc) • 640 B
TypeScript
import { RteArea } from './RteArea.js';
import '../common/CommonPostAddress.js';
declare class GenericContact {
manager?: string | null;
costCentre?: string | null;
csiGeneratedNumber?: string | null;
userId: string | null;
firstName?: string | null;
surname?: string | null;
email?: string | null;
rarCode?: number | null;
status?: string | null;
gvtsMarker?: string | null;
examinerType?: string | null;
ehrEmployeeId?: string | null;
workTelephone?: string | null;
mobileTelephone?: string | null;
version?: string | null;
rteArea?: RteArea;
}
export { GenericContact };