UNPKG

@redox-contrib/models

Version:

Typescript definitions for the Redox API.

13 lines (12 loc) 509 B
import type { Address } from './Address'; import type { PhoneNumber } from './PhoneNumber'; export interface Contact { FirstName?: string | null; MiddleName?: string | null; LastName?: string | null; Address?: Address; PhoneNumber?: PhoneNumber; RelationToPatient?: 'Child' | 'Employer' | 'Father' | 'Grandchild' | 'Grandparent' | 'Life Partner' | 'Mother' | 'Other' | 'Parent' | 'Self' | 'Sibling' | 'Spouse' | 'Unknown' | null; EmailAddresses?: string[]; Roles?: string[]; }