UNPKG

pegasys-orchestrate

Version:

The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript

16 lines (15 loc) 391 B
import { IAnnotations } from './IAnnotations'; import { IETHTransaction } from './IETHTransaction'; import { ILog } from './ILog'; export interface IJobResponse { uuid: string; chainUUID: string; transaction: IETHTransaction; logs: ILog[]; labels?: object; annotations?: IAnnotations; status: string; type: string; createdAt: Date; updatedAt: Date; }