@airwallex/node-sdk
Version:
Airwallex Node.js SDK
20 lines • 591 B
TypeScript
export interface OpLog {
comment?: string;
operator?: string;
roles?: string;
timestamp?: Date;
title?: string;
type?: OpLog.TypeEnum;
value?: string;
}
export declare namespace OpLog {
const validTypeEnum: readonly ["COMMENT", "RISK_RATE", "KYC_PROCESS", "CONFIG_COMMENT", "UNDERWRITING", "KYC_REACTIVATION"];
type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN';
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=opLog.d.ts.map