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

assignToBot

  • assignToBot(silent?: undefined | false | true): Promise<void>
  • The method assigns a bot to a session.

    Parameters

    • Optional silent: undefined | false | true

    Returns Promise<void>

assignToOperator

  • assignToOperator(operator: UserItemRef): Promise<void>
  • The method assigns an operator to a session.

    Parameters

    Returns Promise<void>

assignToOperatorGroup

  • The method assigns a group of operators to a session.

    Parameters

    Returns Promise<void>

close

  • close(): Promise<void>
  • The method is used to close an active session.

    await Context.data.session.close();
    

    Returns Promise<void>

fetch

getAllMessages

  • getAllMessages(from?: undefined | number, size?: undefined | number): Promise<LineMessageItem[]>
  • The method returns all messages in a session.

    Parameters

    • Optional from: undefined | number
    • Optional size: undefined | number

    Returns Promise<LineMessageItem[]>

getLastMessage

  • The method returns the last message in a session.

    const lastMessage = await Context.data.session. getLastMessage();
    

    Returns Promise<LineMessageItem>

markAsSpam

  • markAsSpam(): Promise<void>
  • The method marks a session as spam.

    The data (metrics) of a session marked as spam are not taken into account when generating reports. The method is not available for the following types of channels: internal and support (see LineChannelType).

    await Context.data.session.markAsSpam();
    

    Returns Promise<void>

sendSystemMessage

  • The method sends a system message to a session.

    Parameters

    • message: string

    Returns Promise<LineMessageItem>

setPriority

  • The method is used to set a session’s priority.

    await Context.data.session.setPriority(LineSessionPriority. Low);
    

    Parameters

    Returns Promise<void>

unmarkAsSpam

  • unmarkAsSpam(): Promise<void>
  • The method deletes a session from spam.

    The session is assigned to the operator who previously worked on it or added to the queue.

    await Context.data.session.unmarkAsSpam();
    

    Returns Promise<void>