UNPKG

cloud-ide-model-schema

Version:

Pachage for schema management of Cloud IDEsys LMS

22 lines (21 loc) 675 B
import mongoose from "mongoose"; export interface IIntegrationLog { _id?: string; ilog_integration_id?: string; ilog_operation: string; ilog_status: 'success' | 'failed' | 'pending'; ilog_request_data?: any; ilog_response_data?: any; ilog_error_message?: string; ilog_error_code?: string; ilog_duration?: number; ilog_retry_count?: number; ilog_created_at?: Date; ilog_isactive?: boolean; } declare const CIntegrationLog: mongoose.Model<IIntegrationLog, {}, {}, {}, mongoose.Document<unknown, {}, IIntegrationLog, {}> & IIntegrationLog & Required<{ _id: string; }> & { __v: number; }, any>; export { CIntegrationLog };