Skip to content

Commit

Permalink
Added class UnpinAllGeneralForumTopicMessages
Browse files Browse the repository at this point in the history
  • Loading branch information
natanimn committed Jun 29, 2024
1 parent ea96791 commit 385cfcd
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package et.telebof.requests;

public class UnpinAllGeneralForumTopicMessages extends AbstractBaseRequest<UnpinAllGeneralForumTopicMessages, Boolean>{
public UnpinAllGeneralForumTopicMessages(Object chat_id, RequestSender requestSender){
super(chat_id, requestSender, "unpinAllGeneralForumTopicMessages");
}

@Override
public Boolean exec() {
return (Boolean) requestSender.makeRequest(this);
}
}

0 comments on commit 385cfcd

Please sign in to comment.