UNPKG

@redox-contrib/models

Version:

Typescript definitions for the Redox API.

18 lines (17 loc) 665 B
import type { InsuranceCompany } from './InsuranceCompany'; import type { InsuranceInsured } from './InsuranceInsured'; import type { InsurancePlan } from './InsurancePlan'; export interface Insurance { AgreementType?: 'Maternity' | 'Standard' | 'Unified' | null; Company?: InsuranceCompany; CoverageType?: 'Clinic' | 'Insurance' | 'Other' | 'Patient' | null; EffectiveDate?: string | null; ExpirationDate?: string | null; GroupName?: string | null; GroupNumber?: string | null; Insured?: InsuranceInsured; MemberNumber?: string | null; Plan?: InsurancePlan; PolicyNumber?: string | null; Priority?: string | null; }