export interface LabRouteCreateParams {
    primaryId?: string;
    /**
     * Provided by the lab, indicates a financial relationship between the lab and the customer.
     */
    accountNumber: string;
    /**
     * Unique identifier of a lab. Searchable via orderable item Search.
     */
    labGuid: string;
    /**
     * Name of the Primary (Practice or Provider depending on the Route). Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    primaryName?: string;
    /**
     * Address of the Primary. Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    primaryAddress?: {
        address1: string;
        address2?: string;
        city: string;
        stateProvinceCode: string;
        postalCode: string;
    };
    /**
     * String representing accepted End User License Agreement Version. Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    eulaVersion?: string;
    /**
     * Name of individual who accepted the End User License Agreement. Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    eulaAccepterFullName?: string;
    /**
     * ISO string representing when the End User License Agreement was accepted. Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    eulaAcceptanceDateTimeUtc?: string;
    /**
     * Site ID for the Primary. ClientSiteID is assigned by the lab. This disambiguates instances where the same Account Number is used across multiple physical locations. Required for certain labs. See [Create Route](https://docs.oystehr.com/oystehr/services/lab/onboarding-a-lab/#create-route) for more details.
     */
    clientSiteId?: string;
}
