/** * @example * { * labAccountId: "lab_account_id", * page: 1, * size: 1 * } */ export interface LabTestsGetMarkersForLabTestRequest { /** The lab account ID. This lab account is used to determine the availability of markers and lab tests. */ labAccountId?: string; page?: number; size?: number; }