Interface InteractionFollowupMessageBuilder

    • Method Detail

      • send

        java.util.concurrent.CompletableFuture<Message> send()
        Sends the follow-up message.
        Returns:
        A CompletableFuture of the new message.
      • update

        java.util.concurrent.CompletableFuture<Message> update​(long messageId)
        Edits a followup message that has already been sent for this interaction.
        Parameters:
        messageId - The message id of the followup message which should be edited. It must be a message id of an already sent follow-up message id of this interaction and can not be any other message id.
        Returns:
        The edited message.
      • update

        java.util.concurrent.CompletableFuture<Message> update​(java.lang.String messageId)
        Edits a followup message that has already been sent for this interaction.
        Parameters:
        messageId - The message id of the followup message which should be edited. It must be a message id of an already sent follow-up message id of this interaction and can not be any other message id.
        Returns:
        The edited message.