/** * Schema for a at-home-phlebotomy test order in the client facing API. * * To be used as part of a ClientFacingOrder. */ export interface ClientFacingAtHomePhlebotomyOrder { /** The Vital at-home phlebotomy Order ID */ id: string; appointmentId?: string; createdAt: Date; updatedAt: Date; }