1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00
Files
adapter/src/types/Job.ts
2020-07-13 18:38:30 +01:00

13 lines
218 B
TypeScript

import { Link } from "./Link";
import { JobResult } from "./JobResult";
export interface Job {
id: string;
name: string;
uri: string;
createdBy: string;
links: Link[];
results: JobResult;
error?: any;
}