UNPKG

pegasys-orchestrate

Version:

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

19 lines (18 loc) 461 B
import { IContextLabels } from './IContextLabels'; import { IReceipt } from './IReceipt'; import { ITransactionContext } from './ITransactionContext'; export interface IResponseValue { id: string; jobUUID: string; txContext?: ITransactionContext; receipt?: IReceipt; errors?: IError[]; chain?: string; contextLabels?: IContextLabels; } interface IError { message?: string; code?: number; component?: string; } export {};