@anoki/fse-common
Version:
Common types for FSE
21 lines (20 loc) • 490 B
TypeScript
export type GeneralPractitionerResponse = {
code: string;
fiscalCode: string;
firstName: string;
lastName: string;
offices: OfficeResponse[];
};
export type OfficeResponse = {
city: string;
address: string;
phone1: string;
phone2: string;
email: string;
};
export type FindGeneralPractitionersResponse = GeneralPractitionerResponse[];
export type ModifyGeneralPractitionerResponse = {
code: string;
success: boolean;
message?: string;
};