39 lines
798 B
TypeScript
39 lines
798 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Local decoded-event classification summary for the UI.
|
|
*/
|
|
export type DemoPipeline2LocalEventClassificationDiagnosticSummary = {
|
|
/**
|
|
* Event category.
|
|
*/
|
|
eventCategory: string,
|
|
/**
|
|
* Event lifecycle kind.
|
|
*/
|
|
eventLifecycleKind: string,
|
|
/**
|
|
* Event actionability class.
|
|
*/
|
|
eventActionability: string,
|
|
/**
|
|
* Whether the event is useful but not trade/candle materialized.
|
|
*/
|
|
nonTradeUseful: boolean,
|
|
/**
|
|
* Event count.
|
|
*/
|
|
eventCount: number,
|
|
/**
|
|
* Decoded trade candidate count.
|
|
*/
|
|
decodedTradeCandidateCount: number,
|
|
/**
|
|
* Decoded candle candidate count.
|
|
*/
|
|
decodedCandleCandidateCount: number,
|
|
/**
|
|
* Linked trade-event count.
|
|
*/
|
|
tradeEventCount: number, };
|