接口 MessageReactionService
public interface MessageReactionService
-
方法概要
修饰符和类型方法说明retrofit2.Call<String> createMessageReaction(String channelId, String messageId, Integer emojiType, String emojiId) retrofit2.Call<String> deleteOwnMessageReaction(String channelId, String messageId, Integer emojiType, String emojiId) retrofit2.Call<Message> getMessageReactionUsers(String channelId, String messageId, Integer emojiType, String emojiId, Map<String, String> pager)
-
方法详细资料
-
createMessageReaction
-
deleteOwnMessageReaction
-
getMessageReactionUsers
@GET("/channels/{channel_id}/messages/{message_id}/reactions/{emoji_type}/{emoji_id}") retrofit2.Call<Message> getMessageReactionUsers(@Path("channel_id") String channelId, @Path("message_id") String messageId, @Path("emoji_type") Integer emojiType, @Path("emoji_id") String emojiId, @QueryMap Map<String, String> pager)
-