-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendStickerOperations.java
More file actions
115 lines (62 loc) · 4.95 KB
/
SendStickerOperations.java
File metadata and controls
115 lines (62 loc) · 4.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package org.khasanof.service.template.operations;
import org.telegram.telegrambots.meta.api.methods.send.SendAnimation;
import org.telegram.telegrambots.meta.api.methods.send.SendSticker;
import org.telegram.telegrambots.meta.api.objects.Message;
import org.telegram.telegrambots.meta.api.objects.replykeyboard.ReplyKeyboard;
import java.io.File;
import java.io.InputStream;
/**
* @author Abdulloh
* @see org.khasanof.service.template.operations
* @since 2/15/2024 10:38 PM
*/
public interface SendStickerOperations {
Message sendSticker(File file);
Message sendSticker(File file, Long chatId);
Message sendSticker(File file, String emoji);
Message sendSticker(File file, Integer replyMessageId);
Message sendSticker(File file, ReplyKeyboard replyMarkup);
Message sendSticker(File file, Boolean disableNotification);
Message sendSticker(File file, Long chatId, String emoji);
Message sendSticker(File file, Long chatId, Integer replyMessageId);
Message sendSticker(File file, Long chatId, ReplyKeyboard replyMarkup);
Message sendSticker(File file, Long chatId, Boolean disableNotification);
Message sendSticker(File file, String emoji, Integer replyMessageId);
Message sendSticker(File file, String emoji, ReplyKeyboard replyMarkup);
Message sendSticker(File file, String emoji, Boolean disableNotification);
Message sendSticker(File file, Integer replyMessageId, ReplyKeyboard replyKeyboard);
Message sendSticker(File file, Integer replyMessageId, Boolean disableNotification);
Message sendSticker(File file, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(File file, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId);
Message sendSticker(File file, String emoji, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(File file, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId, Boolean disableNotification);
Message sendSticker(File file, Long chatId, String emoji, ReplyKeyboard replyMarkup);
Message sendSticker(File file, Long chatId, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId);
Message sendSticker(File file, Long chatId, String emoji, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(File file, Long chatId, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId, Boolean disableNotification);
// Input Stream
Message sendSticker(InputStream stream, String filename);
Message sendSticker(InputStream stream, String filename, Long chatId);
Message sendSticker(InputStream stream, String filename, String emoji);
Message sendSticker(InputStream stream, String filename, Integer replyMessageId);
Message sendSticker(InputStream stream, String filename, ReplyKeyboard replyMarkup);
Message sendSticker(InputStream stream, String filename, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, Long chatId, String emoji);
Message sendSticker(InputStream stream, String filename, Long chatId, Integer replyMessageId);
Message sendSticker(InputStream stream, String filename, Long chatId, ReplyKeyboard replyMarkup);
Message sendSticker(InputStream stream, String filename, Long chatId, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, String emoji, Integer replyMessageId);
Message sendSticker(InputStream stream, String filename, String emoji, ReplyKeyboard replyMarkup);
Message sendSticker(InputStream stream, String filename, String emoji, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, Integer replyMessageId, ReplyKeyboard replyKeyboard);
Message sendSticker(InputStream stream, String filename, Integer replyMessageId, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, Long chatId, String emoji, ReplyKeyboard replyMarkup);
Message sendSticker(InputStream stream, String filename, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId);
Message sendSticker(InputStream stream, String filename, String emoji, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, Long chatId, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId);
Message sendSticker(InputStream stream, String filename, Long chatId, String emoji, ReplyKeyboard replyMarkup, Boolean disableNotification);
Message sendSticker(InputStream stream, String filename, Long chatId, String emoji, ReplyKeyboard replyMarkup, Integer replyMessageId, Boolean disableNotification);
Message sendSticker(SendSticker sticker);
}