-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendLocationOperations.java
More file actions
32 lines (21 loc) · 1.05 KB
/
SendLocationOperations.java
File metadata and controls
32 lines (21 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.khasanof.models.Round;
import org.telegram.telegrambots.meta.api.methods.send.SendLocation;
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:55 PM
*/
public interface SendLocationOperations {
Message sendLocation(Round round);
Message sendLocation(Round round, Long chatId);
Message sendLocation(Round round, Integer replyToMessageId);
Message sendLocation(Round round, ReplyKeyboard replyMarkup);
Message sendLocation(Round round, Long chatId, Integer replyToMessageId);
Message sendLocation(Round round, Long chatId, ReplyKeyboard replyMarkup);
Message sendLocation(Round round, Integer replyToMessageId, ReplyKeyboard replyMarkup);
Message sendLocation(Round round, Long chatId, Integer replyToMessageId, ReplyKeyboard replyMarkup);
Message sendLocation(SendLocation location);
}