UNPKG

ntk-cms-api

Version:

Ntk Cms Api And Model For Typscript

27 lines (26 loc) 931 B
import { BaseModuleEntity } from '../base/baseModuleEntity'; import { SmsLogOutBoxScheduleRunInfoModel } from './smsLogOutBoxScheduleRunInfoModel'; export declare class SmsLogOutBoxQueueModel extends BaseModuleEntity<string> { message: string; isFlash: boolean; linkApiPathId: string; linkFromNumber: string; scheduleSendStart: Date; scheduleSendExpire: Date; toNumbers: string; statusNumberFiltering: boolean; statusTextFiltering: boolean; statusNotStableApi: boolean; statusOutOfServiceApi: boolean; numberFilteringChar: string; textFilteringChar: string; queueCountRun: number; queueAllowNextRun: Date; queueLockedRun?: Date; queueLockerExpire?: Date; queueLockerId: string; queueCompleted: boolean; queueCompleteDate: Date; queueLockerMicroservice: string; scheduleRunInfos: SmsLogOutBoxScheduleRunInfoModel[]; }