export interface LabOrderSubmitParams {
    primaryId?: string;
    /**
     * Provided by the lab, indicates a financial relationship between the lab and the customer.
     */
    accountNumber: string;
    /**
     * Valid ServiceRequest FHIR resource representing an order. See [Submit Lab](https://docs.oystehr.com/oystehr/services/lab/submit-an-order/) for more details.
     */
    serviceRequest: string;
}
