@anoki/fse-common
Version:
Common types for FSE
24 lines (20 loc) • 450 B
text/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
}