RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/IOmnichannelServiceLevelAgreements.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IRocketChatRecord } from './IRocketChatRecord';

export const DEFAULT_SLA_CONFIG = {
    ESTIMATED_WAITING_TIME_QUEUE: 9999999,
};

export interface IOmnichannelServiceLevelAgreements extends IRocketChatRecord {
    name: string;
    description?: string;
    dueTimeInMinutes: number;
}