mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 18:50:05 +00:00
11 lines
202 B
TypeScript
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;
|
|
} |