Message.reply - multiple declarations

Function Message.reply

Sends a new message to the same channel as this message.

Prototype

Message reply(
  inout(string) content,
  string nonce = null,
  bool tts = false
);

Parameters

NameDescription
content the message contents
nonce the message nonce
tts whether this is a TTS message

Function Message.reply

Sends a Sendable to the same channel as this message.

Prototype

Message reply(
  Sendable obj
);