mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
14 lines
225 B
TypeScript
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
|
|
}
|