import type * as Vital from "../../../../index.js"; /** * @example * { * startDate: "start_date", * body: { * firstLine: "first_line", * city: "city", * state: "state", * zipCode: "zip_code" * } * } */ export interface LabTestsGetPhlebotomyAppointmentAvailabilityRequest { /** Start date for appointment availability */ startDate?: string; /** At-home phlebotomy appointment address. */ body: Vital.UsAddress; }