-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendContactOperations.java
More file actions
62 lines (35 loc) · 3.02 KB
/
SendContactOperations.java
File metadata and controls
62 lines (35 loc) · 3.02 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
package org.khasanof.service.template.operations;
import org.telegram.telegrambots.meta.api.methods.send.SendContact;
import org.telegram.telegrambots.meta.api.objects.Message;
import org.telegram.telegrambots.meta.api.objects.replykeyboard.ReplyKeyboard;
/**
* @author Abdulloh
* @see org.khasanof.service.template.operations
* @since 2/15/2024 10:40 PM
*/
public interface SendContactOperations {
Message sendContact(String firstname, String phoneNumber);
Message sendContact(String firstname, String phoneNumber, Long chatId);
Message sendContact(String firstname, String phoneNumber, String lastname);
Message sendContact(String firstname, String phoneNumber, Integer replyToMessageId);
Message sendContact(String firstname, String phoneNumber, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Long chatId, String lastname);
Message sendContact(String firstname, String phoneNumber, Long chatId, Integer replyToMessageId);
Message sendContact(String firstname, String phoneNumber, Long chatId, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, Long chatId, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, String lastname, Integer replyToMessageId);
Message sendContact(String firstname, String phoneNumber, String lastname, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, String lastname, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Integer replyToMessageId, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, Integer replyToMessageId, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Boolean disableNotification, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Long chatId, String lastname, Integer replyToMessageId, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, String lastname, Integer replyToMessageId, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, String lastname, Integer replyToMessageId, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Long chatId, String lastname, Integer replyToMessageId, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, Long chatId, String lastname, ReplyKeyboard replyKeyboard, Boolean disableNotification);
Message sendContact(String firstname, String phoneNumber, String lastname, Integer replyToMessageId, Boolean disableNotification, ReplyKeyboard replyKeyboard);
Message sendContact(String firstname, String phoneNumber, Long chatId, Integer replyToMessageId, Boolean disableNotification, ReplyKeyboard replyKeyboard);
Message sendContact(SendContact contact);
}