Module Cephalopod_models.Chat_Bsky_Convo_RemoveReaction

lexicon "chat.bsky.convo.removeReaction"

def main

type main_input = {
  1. convoId : string;
  2. messageId : string;
  3. value : string;
    (*

    maximum length: 64 minimum length: 1

    *)
}
val show_main_input : main_input -> Ppx_deriving_runtime.string
val main_input_to_value : main_input -> Cephalopod_dasl.Value.t
type main_output = {
  1. message : Types.chat_bsky_convo_defs_messageview;
}
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
type main_error = [
  1. | `ReactionMessageDeleted
  2. | `ReactionInvalidValue
]
val show_main_error : main_error -> Ppx_deriving_runtime.string

Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't.