Interface InitiatableChannel

A channel on which a conversation can be initiated by the operator.

interface InitiatableChannel {
    botId: string;
    botTitle: string;
    id: string;
    label: string;
    type: "icws" | "whatsapp" | "email";
}

Properties

botId: string
botTitle: string
id: string
label: string

A channel-specific label to identify it (e.g. phone number on WhatsApp, email for email)

type: "icws" | "whatsapp" | "email"

Generated using TypeDoc