@airwallex/node-sdk
Version:
Airwallex Node.js SDK
53 lines • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OpLog = void 0;
var OpLog;
(function (OpLog) {
OpLog.validTypeEnum = [
'COMMENT',
'RISK_RATE',
'KYC_PROCESS',
'CONFIG_COMMENT',
'UNDERWRITING',
'KYC_REACTIVATION',
];
OpLog.discriminator = 'OpLog';
OpLog.attributeTypeMap = [
{
name: 'comment',
baseName: 'comment',
type: 'string',
},
{
name: 'operator',
baseName: 'operator',
type: 'string',
},
{
name: 'roles',
baseName: 'roles',
type: 'string',
},
{
name: 'timestamp',
baseName: 'timestamp',
type: 'Date',
},
{
name: 'title',
baseName: 'title',
type: 'string',
},
{
name: 'type',
baseName: 'type',
type: 'OpLog.TypeEnum',
},
{
name: 'value',
baseName: 'value',
type: 'string',
},
];
})(OpLog || (exports.OpLog = OpLog = {}));
//# sourceMappingURL=opLog.js.map