-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendGameOperations.java
More file actions
32 lines (20 loc) · 1.05 KB
/
SendGameOperations.java
File metadata and controls
32 lines (20 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.khasanof.service.template.operations;
import org.telegram.telegrambots.meta.api.methods.send.SendGame;
import org.telegram.telegrambots.meta.api.objects.Message;
import org.telegram.telegrambots.meta.api.objects.replykeyboard.ReplyKeyboard;
/**
* @author Nurislom
* @see org.khasanof.service.template.operations
* @since 2/17/2024 4:44 PM
*/
public interface SendGameOperations {
Message sendGame(String gameShortName);
Message sendGame(String gameShortName, Long chatId);
Message sendGame(String gameShortName, Integer replyToMessageId);
Message sendGame(String gameShortName, ReplyKeyboard replyKeyboard);
Message sendGame(String gameShortName, Long chatId, Integer replyToMessageId);
Message sendGame(String gameShortName, Long chatId, ReplyKeyboard replyKeyboard);
Message sendGame(String gameShortName, Integer replyToMessageId, ReplyKeyboard replyKeyboard);
Message sendGame(String gameShortName, Long chatId, Integer replyToMessageId, ReplyKeyboard replyKeyboard);
Message sendGame(SendGame game);
}