import type * as Vital from "../../../../index.js"; /** * @example * { * userId: "user_id", * billingType: "client_bill", * orderSet: {}, * collectionMethod: "testkit", * patientDetails: { * firstName: "first_name", * lastName: "last_name", * dob: "dob", * gender: "female", * phoneNumber: "phone_number", * email: "email" * }, * patientAddress: { * receiverName: "receiver_name", * firstLine: "first_line", * city: "city", * state: "state", * zip: "zip", * country: "country" * }, * sampleId: "sample_id" * } */ export interface ImportOrderBody { userId: string; billingType: Vital.Billing; orderSet: Vital.OrderSetRequest; collectionMethod: Vital.LabTestCollectionMethod; physician?: Vital.PhysicianCreateRequest; patientDetails: Vital.PatientDetailsWithValidation; patientAddress: Vital.PatientAddress; sampleId: string; labAccountId?: string; }