interface InsurancePolicyResponse {
    _id: string;
    claimsUrl?: string;
    confirmationOfBenefitsUrl?: string;
    coverage: InsuranceCoverage;
    createdDate: Date;
    firstName: string;
    lastName: string;
    policyNumber?: string;
    status: InsuranceStatus;
}

Hierarchy

  • Pick<
        SavedInsurancePolicy,
        | "_id"
        | "coverage"
        | "policyNumber"
        | "confirmationOfBenefitsUrl"
        | "status"
        | "createdDate"
        | "firstName"
        | "lastName",
    >
    • InsurancePolicyResponse

Properties

_id: string
claimsUrl?: string
confirmationOfBenefitsUrl?: string
createdDate: Date
firstName: string
lastName: string
policyNumber?: string