RocketChat/Rocket.Chat

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

Summary

Maintainability
A
0 mins
Test Coverage
export interface IOmnichannelQueueStatus {
    _id: string;
    startedAt: Date;
    stoppedAt?: Date;
    locked: boolean;
}

export enum OmnichannelSortingMechanismSettingType {
    Timestamp = 'Timestamp',
    Priority = 'Priority',
    SLAs = 'SLAs',
}