import type * as Vital from "../../../../index.js"; /** * @example * { * zipCode: "zip_code", * labId: 1, * radius: "10", * labAccountId: "lab_account_id" * } */ export interface LabTestsGetPscInfoRequest { /** Zip code of the area to check */ zipCode: string; /** Lab ID to check for PSCs */ labId: number; /** Radius in which to search in miles. Note that we limit to 30 PSCs. */ radius?: Vital.AllowedRadius; /** Filter for only locations with certain capabilities */ capabilities?: Vital.LabLocationCapability | Vital.LabLocationCapability[]; /** Lab Account ID to use for availability checks */ labAccountId?: string; }