Interface ReactionService


  • public interface ReactionService
    • Method Detail

      • delete

        @DELETE("messages/{id}/reaction/{type}")
        retrofit2.Call<Reaction.ReactionDeleteResponse> delete​(@NotNull @Path("id")
                                                               @NotNull java.lang.String messageId,
                                                               @NotNull @Path("type")
                                                               @NotNull java.lang.String type,
                                                               @NotNull @Query("user_id")
                                                               @NotNull java.lang.String userId)
      • list

        @GET("messages/{id}/reactions")
        retrofit2.Call<Reaction.ReactionListResponse> list​(@NotNull @Path("id")
                                                           @NotNull java.lang.String messageId)