import type * as Vital from "../index.js"; /** * Schema for a testkit order in the client facing API. * * To be used as part of a ClientFacingOrder. */ export interface ClientFacingTestkitOrder { /** The Vital TestKit Order ID */ id: string; /** Shipment object */ shipment?: Vital.ClientFacingShipment; createdAt: Date; updatedAt: Date; }