mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 18:50:05 +00:00
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
import { Link } from './Link'
|
|
import { JobResult } from './JobResult'
|
|
import { LogStatistics } from './LogStatistics'
|
|
|
|
export interface Job {
|
|
id: string
|
|
name: string
|
|
uri: string
|
|
createdBy: string
|
|
code?: string
|
|
links: Link[]
|
|
results: JobResult
|
|
error?: any
|
|
logStatistics: LogStatistics
|
|
}
|