txt

Message. txt

new txt()

text message
Returns:
message:object

Methods

set(options)

Building text message
Example
let message = New Message('txt', id); message.set({to: 'user1', msg: 'hello', chatType: 'singleChat', ext:{fontColor: 'red'}, success: function(){}, fail: function(){}})
Parameters:
Name Type Description
options Object -
Properties
Name Type Description
to String The userId of the message recipient, group ID, or chat room ID
msg String The message content
chatType String chat type, optional value: singleChat、groupChat、chatRoom
ext Object The message extension
success function A callback that the message was sent successfully
fail function Callback for message sending failure
Returns:
Void