Interface CallBounds

The two bounds a call runs under (R3-307).

idleMs is in force while the host reports nobody is being asked; it is cleared while a host prompt is up and restarted, in full, when the prompt goes away. ceilingMs runs from call start and is NEVER suspended — it is what releases a caller whose user walked away.

interface CallBounds {
    ceilingMs: number;
    idleMs: number;
}

Properties

Properties

ceilingMs: number

The absolute bound from call start. Never suspended.

idleMs: number

The bound in force while the host is not waiting on a person.