notbank
Version:
The Notbank for Node.js
9 lines (7 loc) • 357 B
text/typescript
import { InstrumentLimits } from "./instrumentVerificationLevelConfig";
export interface InstrumentVerificationLevelConfig {
Level: number; // The verification level number
LevelName: string | null; // The name of the verification level
OMSId: number; // The ID of the OMS
Instruments: InstrumentLimits[]; // Array of instrument-specific configs
}