GroupConversation

GroupConversation

GroupConversation structure.

Extends

Members

(readonly) client :Client

Source:
Inherited From:

The Client that this instance belongs to.

Type:

(readonly) id :string

Source:
Inherited From:

The ID of the conversation.

Type:
  • string

(readonly) type :string

Source:

The type of the conversation. Returns group.

Type:
  • string

Methods

(async) acceptInvitation() → {Promise.<undefined>}

Source:

Accept an invitation to the group conversation.

Note that this will fail if you have not created a user profile yet. You will need to stop the signal-cli service and run the following command: sudo signal-cli -u <phone number> --config /var/lib/signal-cli updateProfile --name "<name>" --remove-avatar. See the signal-cli docs for more information.

Returns:
Type
Promise.<undefined>

(async) sendMessage(content, attachmentsopt) → {Promise.<number>}

Source:

Send a message to the conversation.

Parameters:
Name Type Attributes Description
content string

The text content to send.

attachments Array.<string> <optional>

An array of file paths of attachments to send.

Returns:

timestamp - The timestamp of the sent message.

Type
Promise.<number>