export default class QueueAvailability { /** * Boolean to check if the queue is available or not */ IsQueueAvailable: boolean; /** * Specifies the average wait time for the conversation */ AverageWaitTime: number; /** * Specifies the time till which the queue is available when queue is available */ AvailableUntil: Date; /** * Specifies the time at which the queue will be available when the queue is not available */ AvailableNext: Date; /** * Specifies the queue position */ QueuePosition: number; /** * Specifies the name of the queue */ QueueName: string; /** * Specifies the queue id */ QueueId: string; /** * Boolean to specifiy if an agent in a queue is available when queue is available */ AgentAvailability: boolean; }