mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-11 01:14:36 +00:00
13 lines
218 B
TypeScript
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;
|
|
}
|