import type * as Vital from "../../../../index.js"; /** * @example * { * payorCode: "payor_code", * memberId: "member_id", * relationship: "Self", * insured: { * firstName: "first_name", * lastName: "last_name", * gender: "female", * address: { * firstLine: "first_line", * country: "country", * zip: "zip", * city: "city", * state: "state" * }, * dob: "dob", * email: "email", * phoneNumber: "phone_number" * } * } */ export interface CreateInsuranceRequest { payorCode: string; memberId: string; groupId?: string; relationship: Vital.ResponsibleRelationship; insured: Vital.VitalCoreSchemasDbSchemasLabTestInsurancePersonDetails; guarantor?: Vital.GuarantorDetails; isPrimary?: boolean; }