-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendTextOperations.java
More file actions
57 lines (33 loc) · 2.13 KB
/
SendTextOperations.java
File metadata and controls
57 lines (33 loc) · 2.13 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package org.khasanof.service.template.operations;
import org.telegram.telegrambots.meta.api.methods.send.SendMessage;
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 1/23/2024 9:29 PM
*/
public interface SendTextOperations {
Message sendText(String text);
Message sendText(String text, Long chatId);
Message sendText(String text, Integer replyMessageId);
Message sendText(String text, ReplyKeyboard replyKeyboard);
Message sendText(String text, Boolean disableNotification);
Message sendText(String text, String parseMode);
Message sendText(String text, Long chatId, Integer replyMessageId);
Message sendText(String text, Long chatId, ReplyKeyboard replyKeyboard);
Message sendText(String text, Long chatId, Boolean disableNotification);
Message sendText(String text, Long chatId, String parseMode);
Message sendText(String text, Integer replyMessageId, ReplyKeyboard replyKeyboard);
Message sendText(String text, Integer replyMessageId, Boolean disableNotification);
Message sendText(String text, Integer replyMessageId, String parseMode);
Message sendText(String text, ReplyKeyboard replyKeyboard, Boolean disableNotification);
Message sendText(String text, ReplyKeyboard replyKeyboard, String parseMode);
Message sendText(String text, Long chatId, Integer replyMessageId, ReplyKeyboard replyKeyboard);
Message sendText(String text, Long chatId, Integer replyMessageId, Boolean disableNotification);
Message sendText(String text, Long chatId, Integer replyMessageId, String parseMode);
Message sendText(String text, Long chatId, ReplyKeyboard replyKeyboard, Boolean disableNotification);
Message sendText(String text, Long chatId, Integer replyMessageId, ReplyKeyboard replyKeyboard, String parseMode);
Message sendText(String text, Long chatId, Integer replyMessageId, ReplyKeyboard replyKeyboard, String parseMode, Boolean disableNotification);
Message sendMessage(SendMessage message);
}