pegasys-orchestrate
Version:
The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript
14 lines (13 loc) • 371 B
TypeScript
import { IHeaders, KafkaMessage } from 'kafkajs';
import { IResponseValue } from './IResponseValue';
export interface IResponse extends Omit<KafkaMessage, 'key' | 'value'> {
key: string;
value: IResponseValue;
timestamp: string;
size: number;
attributes: number;
offset: string;
headers?: IHeaders;
partition: number;
topic: string;
}