Type parameters

Hierarchy

Properties

Readonly code

code: string

App code of the URL’s target (the app’s code).

Readonly id

id: string

ID of the URL’s target.

Readonly namespace

namespace: string

Namespace of the URL target (the code of the workspace that the app belongs to).

Methods

disconnect

  • disconnect(): Promise<void>
  • The method disconnects a live chat channel.

    await Context.data.channel.disconnect();
    

    Returns Promise<void>

fetch

reconnect

  • reconnect(): Promise<void>
  • The method activates a previously disconnected live chat channel.

    The following types of channels can be reconnected: telegramBot, inbox,
    viberbot, livechat, and instagram (see LineChannelType).

    await Context.data.channel.reconnect();
    

    Returns Promise<void>