UNPKG

@oystehr/sdk

Version:

Oystehr SDK

55 lines (53 loc) 1.93 kB
// AUTOGENERATED -- DO NOT EDIT export interface LabRoute { /** * Unique identifier of the created Route. */ routeGuid: 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 lab */ labName?: 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; }; /** * Primary phone number of the Primary. */ primaryPhone?: string; /** * Site ID for the Primary */ clientSiteId?: 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; /** * Full name of the person 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; /** * Date and time (in UTC) 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 | null; }