1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 18:50:05 +00:00
Files
adapter/src/types/Job.ts
2020-07-16 15:02:40 -04:00

11 lines
202 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;
}