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