-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendVideoNoteOperations.java
More file actions
52 lines (31 loc) · 1.85 KB
/
SendVideoNoteOperations.java
File metadata and controls
52 lines (31 loc) · 1.85 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
package org.khasanof.service.template.operations;
import org.telegram.telegrambots.meta.api.methods.send.SendVideoNote;
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 Rakh1sta
* @see org.khasanof.service.template.operations
* @since 2/15/2024 9:57 PM
*/
public interface SendVideoNoteOperations {
Message sendVideoNote(File file);
Message sendVideoNote(File file, Long chatId);
Message sendVideoNote(File file, Integer replyToMessageId);
Message sendVideoNote(File file, ReplyKeyboard replyMarkup);
Message sendVideoNote(File file, Long chatId, Integer replyMessageId);
Message sendVideoNote(File file, Long chatId, ReplyKeyboard replyMarkup);
Message sendVideoNote(File file, Integer replyToMessageId, ReplyKeyboard replyMarkup);
Message sendVideoNote(File file, Long chatId, Integer replyMessageId, ReplyKeyboard replyKeyboard);
// Input Stream
Message sendVideoNote(InputStream stream, String filename);
Message sendVideoNote(InputStream stream, String filename, Long chatId);
Message sendVideoNote(InputStream stream, String filename, Integer replyToMessageId);
Message sendVideoNote(InputStream stream, String filename, ReplyKeyboard replyMarkup);
Message sendVideoNote(InputStream stream, String filename, Long chatId, Integer replyMessageId);
Message sendVideoNote(InputStream stream, String filename, Long chatId, ReplyKeyboard replyMarkup);
Message sendVideoNote(InputStream stream, String filename, Integer replyToMessageId, ReplyKeyboard replyMarkup);
Message sendVideoNote(InputStream stream, String filename, Long chatId, Integer replyMessageId, ReplyKeyboard replyKeyboard);
Message sendVideoNote(SendVideoNote sendVideoNote);
}