export interface IEndevorAsyncTask {
    id?: string;
    status?: string;
    links?: {
        status: string;
        result: string;
    };
}
