1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-05 03:30:05 +00:00
Files
adapter/src/types/Job.ts
2020-09-01 14:28:15 +03:00

14 lines
225 B
TypeScript

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