import { ProcedureStatusEnum } from './ProcedureStatusEnum';
/** Procedure linked to your account */
export interface Procedure {
    /** The date at which the procedure was closed. */
    finishDate?: string;
    /** Procedure ID */
    id: number;
    /** The URL of the procedure document. */
    pdfUrl: string;
    /** The date at which the procedure was opened. */
    requestDate: string;
    /** The current status of the procedure. */
    status: ProcedureStatusEnum;
}
//# sourceMappingURL=Procedure.d.ts.map