-
Notifications
You must be signed in to change notification settings - Fork 2
/
TelegramClient.kt
3570 lines (3433 loc) · 196 KB
/
TelegramClient.kt
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.github.omarmiatello.telegram
import com.github.omarmiatello.telegram.TelegramRequest.*
import io.ktor.client.*
import io.ktor.client.call.*
import io.ktor.client.request.*
import io.ktor.http.*
import io.ktor.http.content.*
import kotlinx.serialization.KSerializer
import kotlinx.serialization.builtins.ListSerializer
import kotlinx.serialization.builtins.serializer
import kotlinx.serialization.json.Json
class TelegramClient(apiKey: String, private val httpClient: HttpClient = HttpClient()) {
private val basePath = "https://api.telegram.org/bot$apiKey"
private val json = Json { ignoreUnknownKeys = true; prettyPrint = true; encodeDefaults = false; isLenient = true; }
private suspend fun <T> telegramGet(path: String, response: KSerializer<T>): TelegramResponse<T> {
val responseString: String = httpClient.get(path).body()
return json.decodeFromString(TelegramResponse.serializer(response), responseString)
}
private suspend fun <T> telegramPost(path: String, body: String, response: KSerializer<T>): TelegramResponse<T> {
val responseString: String = httpClient
.post(path) { setBody(TextContent(body, ContentType.Application.Json)) }
.body()
return json.decodeFromString(TelegramResponse.serializer(response), responseString)
}
// Getting updates
/**
* <p>Use this method to receive incoming updates using long polling (<a href="https://en.wikipedia.org/wiki/Push_technology#Long_polling">wiki</a>). Returns an Array of <a href="#update">Update</a> objects.</p><blockquote>
* <p><strong>Notes</strong><br><strong>1.</strong> This method will not work if an outgoing webhook is set up.<br><strong>2.</strong> In order to avoid getting duplicate updates, recalculate <em>offset</em> after each server response.</p>
* </blockquote>
*
* @property offset Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as <a href="#getupdates">getUpdates</a> is called with an <em>offset</em> higher than its <em>update_id</em>. The negative offset can be specified to retrieve updates starting from <em>-offset</em> update from the end of the updates queue. All previous updates will be forgotten.
* @property limit Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100.
* @property timeout Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only.
* @property allowed_updates A JSON-serialized list of the update types you want your bot to receive. For example, specify <code>["message", "edited_channel_post", "callback_query"]</code> to only receive updates of these types. See <a href="#update">Update</a> for a complete list of available update types. Specify an empty list to receive all update types except <em>chat_member</em>, <em>message_reaction</em>, and <em>message_reaction_count</em> (default). If not specified, the previous setting will be used.<br><br>Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time.
*
* @return [List<Update>]
* */
suspend fun getUpdates(
offset: Long? = null,
limit: Long? = null,
timeout: Long? = null,
allowed_updates: List<String>? = null,
) = telegramPost(
"$basePath/getUpdates",
GetUpdatesRequest(
offset,
limit,
timeout,
allowed_updates,
).toJsonForRequest(),
ListSerializer(Update.serializer())
)
/**
* <p>Use this method to specify a URL and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified URL, containing a JSON-serialized <a href="#update">Update</a>. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns <em>True</em> on success.</p><p>If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter <em>secret_token</em>. If specified, the request will contain a header “X-Telegram-Bot-Api-Secret-Token” with the secret token as content.</p><blockquote>
* <p><strong>Notes</strong><br><strong>1.</strong> You will not be able to receive updates using <a href="#getupdates">getUpdates</a> for as long as an outgoing webhook is set up.<br><strong>2.</strong> To use a self-signed certificate, you need to upload your <a href="/bots/self-signed">public key certificate</a> using <em>certificate</em> parameter. Please upload as InputFile, sending a String will not work.<br><strong>3.</strong> Ports currently supported <em>for webhooks</em>: <strong>443, 80, 88, 8443</strong>.</p>
* <p>If you're having any trouble setting up webhooks, please check out this <a href="/bots/webhooks">amazing guide to webhooks</a>.</p>
* </blockquote>
*
* @property url HTTPS URL to send updates to. Use an empty string to remove webhook integration
* @property certificate Upload your public key certificate so that the root certificate in use can be checked. See our <a href="/bots/self-signed">self-signed guide</a> for details.
* @property ip_address The fixed IP address which will be used to send webhook requests instead of the IP address resolved through DNS
* @property max_connections The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to <em>40</em>. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput.
* @property allowed_updates A JSON-serialized list of the update types you want your bot to receive. For example, specify <code>["message", "edited_channel_post", "callback_query"]</code> to only receive updates of these types. See <a href="#update">Update</a> for a complete list of available update types. Specify an empty list to receive all update types except <em>chat_member</em>, <em>message_reaction</em>, and <em>message_reaction_count</em> (default). If not specified, the previous setting will be used.<br>Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time.
* @property drop_pending_updates Pass <em>True</em> to drop all pending updates
* @property secret_token A secret token to be sent in a header “X-Telegram-Bot-Api-Secret-Token” in every webhook request, 1-256 characters. Only characters <code>A-Z</code>, <code>a-z</code>, <code>0-9</code>, <code>_</code> and <code>-</code> are allowed. The header is useful to ensure that the request comes from a webhook set by you.
*
* @return [Boolean]
* */
suspend fun setWebhook(
url: String,
certificate: Any? = null,
ip_address: String? = null,
max_connections: Long? = null,
allowed_updates: List<String>? = null,
drop_pending_updates: Boolean? = null,
secret_token: String? = null,
) = telegramPost(
"$basePath/setWebhook",
SetWebhookRequest(
url,
certificate,
ip_address,
max_connections,
allowed_updates,
drop_pending_updates,
secret_token,
).toJsonForRequest(),
Boolean.serializer()
)
/**
* <p>Use this method to remove webhook integration if you decide to switch back to <a href="#getupdates">getUpdates</a>. Returns <em>True</em> on success.</p>
*
* @property drop_pending_updates Pass <em>True</em> to drop all pending updates
*
* @return [Boolean]
* */
suspend fun deleteWebhook(
drop_pending_updates: Boolean? = null,
) = telegramPost(
"$basePath/deleteWebhook",
DeleteWebhookRequest(
drop_pending_updates,
).toJsonForRequest(),
Boolean.serializer()
)
/**
* <p>Use this method to get current webhook status. Requires no parameters. On success, returns a <a href="#webhookinfo">WebhookInfo</a> object. If the bot is using <a href="#getupdates">getUpdates</a>, will return an object with the <em>url</em> field empty.</p>
*
*
* @return [WebhookInfo]
* */
suspend fun getWebhookInfo() = telegramGet("$basePath/getWebhookInfo", WebhookInfo.serializer())
// Available methods
/**
* <p>Use this method to log out from the cloud Bot API server before launching the bot locally. You <strong>must</strong> log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns <em>True</em> on success. Requires no parameters.</p>
*
*
* @return [Boolean]
* */
suspend fun logOut() = telegramGet("$basePath/logOut", Boolean.serializer())
/**
* <p>Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns <em>True</em> on success. Requires no parameters.</p>
*
*
* @return [Boolean]
* */
suspend fun close() = telegramGet("$basePath/close", Boolean.serializer())
/**
* <p>Use this method to send text messages. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property text Text of the message to be sent, 1-4096 characters after entities parsing
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property parse_mode Mode for parsing entities in the message text. See <a href="#formatting-options">formatting options</a> for more details.
* @property entities A JSON-serialized list of special entities that appear in message text, which can be specified instead of <em>parse_mode</em>
* @property link_preview_options Link preview generation options for the message
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendMessage(
chat_id: ChatId,
text: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
parse_mode: ParseMode? = null,
entities: List<MessageEntity>? = null,
link_preview_options: LinkPreviewOptions? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendMessage",
SendMessageRequest(
chat_id,
text,
business_connection_id,
message_thread_id,
parse_mode,
entities,
link_preview_options,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to forward messages of any kind. Service messages and messages with protected content can't be forwarded. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property from_chat_id Unique identifier for the chat where the original message was sent (or channel username in the format <code>@channelusername</code>)
* @property message_id Message identifier in the chat specified in <em>from_chat_id</em>
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the forwarded message from forwarding and saving
*
* @return [Message]
* */
suspend fun forwardMessage(
chat_id: ChatId,
from_chat_id: ChatId,
message_id: MessageId,
message_thread_id: MessageThreadId? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
) = telegramPost(
"$basePath/forwardMessage",
ForwardMessageRequest(
chat_id,
from_chat_id,
message_id,
message_thread_id,
disable_notification,
protect_content,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to forward multiple messages of any kind. If some of the specified messages can't be found or forwarded, they are skipped. Service messages and messages with protected content can't be forwarded. Album grouping is kept for forwarded messages. On success, an array of <a href="#messageid">MessageId</a> of the sent messages is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property from_chat_id Unique identifier for the chat where the original messages were sent (or channel username in the format <code>@channelusername</code>)
* @property message_ids A JSON-serialized list of 1-100 identifiers of messages in the chat <em>from_chat_id</em> to forward. The identifiers must be specified in a strictly increasing order.
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property disable_notification Sends the messages <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the forwarded messages from forwarding and saving
*
* @return [List<MessageId>]
* */
suspend fun forwardMessages(
chat_id: ChatId,
from_chat_id: ChatId,
message_ids: List<MessageId>,
message_thread_id: MessageThreadId? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
) = telegramPost(
"$basePath/forwardMessages",
ForwardMessagesRequest(
chat_id,
from_chat_id,
message_ids,
message_thread_id,
disable_notification,
protect_content,
).toJsonForRequest(),
ListSerializer(MessageId.serializer())
)
/**
* <p>Use this method to copy messages of any kind. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz <a href="#poll">poll</a> can be copied only if the value of the field <em>correct_option_id</em> is known to the bot. The method is analogous to the method <a href="#forwardmessage">forwardMessage</a>, but the copied message doesn't have a link to the original message. Returns the <a href="#messageid">MessageId</a> of the sent message on success.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property from_chat_id Unique identifier for the chat where the original message was sent (or channel username in the format <code>@channelusername</code>)
* @property message_id Message identifier in the chat specified in <em>from_chat_id</em>
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property caption New caption for media, 0-1024 characters after entities parsing. If not specified, the original caption is kept
* @property parse_mode Mode for parsing entities in the new caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the new caption, which can be specified instead of <em>parse_mode</em>
* @property show_caption_above_media Pass <em>True</em>, if the caption must be shown above the message media. Ignored if a new caption isn't specified.
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [MessageId]
* */
suspend fun copyMessage(
chat_id: ChatId,
from_chat_id: ChatId,
message_id: MessageId,
message_thread_id: MessageThreadId? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
show_caption_above_media: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/copyMessage",
CopyMessageRequest(
chat_id,
from_chat_id,
message_id,
message_thread_id,
caption,
parse_mode,
caption_entities,
show_caption_above_media,
disable_notification,
protect_content,
reply_parameters,
reply_markup,
).toJsonForRequest(),
MessageId.serializer()
)
/**
* <p>Use this method to copy messages of any kind. If some of the specified messages can't be found or copied, they are skipped. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz <a href="#poll">poll</a> can be copied only if the value of the field <em>correct_option_id</em> is known to the bot. The method is analogous to the method <a href="#forwardmessages">forwardMessages</a>, but the copied messages don't have a link to the original message. Album grouping is kept for copied messages. On success, an array of <a href="#messageid">MessageId</a> of the sent messages is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property from_chat_id Unique identifier for the chat where the original messages were sent (or channel username in the format <code>@channelusername</code>)
* @property message_ids A JSON-serialized list of 1-100 identifiers of messages in the chat <em>from_chat_id</em> to copy. The identifiers must be specified in a strictly increasing order.
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property disable_notification Sends the messages <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent messages from forwarding and saving
* @property remove_caption Pass <em>True</em> to copy the messages without their captions
*
* @return [List<MessageId>]
* */
suspend fun copyMessages(
chat_id: ChatId,
from_chat_id: ChatId,
message_ids: List<MessageId>,
message_thread_id: MessageThreadId? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
remove_caption: Boolean? = null,
) = telegramPost(
"$basePath/copyMessages",
CopyMessagesRequest(
chat_id,
from_chat_id,
message_ids,
message_thread_id,
disable_notification,
protect_content,
remove_caption,
).toJsonForRequest(),
ListSerializer(MessageId.serializer())
)
/**
* <p>Use this method to send photos. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property photo Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property caption Photo caption (may also be used when resending photos by <em>file_id</em>), 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the photo caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property show_caption_above_media Pass <em>True</em>, if the caption must be shown above the message media
* @property has_spoiler Pass <em>True</em> if the photo needs to be covered with a spoiler animation
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendPhoto(
chat_id: ChatId,
photo: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
show_caption_above_media: Boolean? = null,
has_spoiler: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendPhoto",
SendPhotoRequest(
chat_id,
photo,
business_connection_id,
message_thread_id,
caption,
parse_mode,
caption_entities,
show_caption_above_media,
has_spoiler,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent <a href="#message">Message</a> is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future.</p><p>For sending voice messages, use the <a href="#sendvoice">sendVoice</a> method instead.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property audio Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property caption Audio caption, 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the audio caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property duration Duration of the audio in seconds
* @property performer Performer
* @property title Track name
* @property thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. <a href="#sending-files">More information on Sending Files »</a>
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendAudio(
chat_id: ChatId,
audio: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
duration: Long? = null,
performer: String? = null,
title: String? = null,
thumbnail: String? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendAudio",
SendAudioRequest(
chat_id,
audio,
business_connection_id,
message_thread_id,
caption,
parse_mode,
caption_entities,
duration,
performer,
title,
thumbnail,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send general files. On success, the sent <a href="#message">Message</a> is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property document File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. <a href="#sending-files">More information on Sending Files »</a>
* @property caption Document caption (may also be used when resending documents by <em>file_id</em>), 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the document caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property disable_content_type_detection Disables automatic server-side content type detection for files uploaded using multipart/form-data
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendDocument(
chat_id: ChatId,
document: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
thumbnail: String? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
disable_content_type_detection: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendDocument",
SendDocumentRequest(
chat_id,
document,
business_connection_id,
message_thread_id,
thumbnail,
caption,
parse_mode,
caption_entities,
disable_content_type_detection,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as <a href="#document">Document</a>). On success, the sent <a href="#message">Message</a> is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property video Video to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property duration Duration of sent video in seconds
* @property width Video width
* @property height Video height
* @property thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. <a href="#sending-files">More information on Sending Files »</a>
* @property caption Video caption (may also be used when resending videos by <em>file_id</em>), 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the video caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property show_caption_above_media Pass <em>True</em>, if the caption must be shown above the message media
* @property has_spoiler Pass <em>True</em> if the video needs to be covered with a spoiler animation
* @property supports_streaming Pass <em>True</em> if the uploaded video is suitable for streaming
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendVideo(
chat_id: ChatId,
video: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
duration: Long? = null,
width: Long? = null,
height: Long? = null,
thumbnail: String? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
show_caption_above_media: Boolean? = null,
has_spoiler: Boolean? = null,
supports_streaming: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendVideo",
SendVideoRequest(
chat_id,
video,
business_connection_id,
message_thread_id,
duration,
width,
height,
thumbnail,
caption,
parse_mode,
caption_entities,
show_caption_above_media,
has_spoiler,
supports_streaming,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent <a href="#message">Message</a> is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property animation Animation to send. Pass a file_id as String to send an animation that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an animation from the Internet, or upload a new animation using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property duration Duration of sent animation in seconds
* @property width Animation width
* @property height Animation height
* @property thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. <a href="#sending-files">More information on Sending Files »</a>
* @property caption Animation caption (may also be used when resending animation by <em>file_id</em>), 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the animation caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property show_caption_above_media Pass <em>True</em>, if the caption must be shown above the message media
* @property has_spoiler Pass <em>True</em> if the animation needs to be covered with a spoiler animation
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendAnimation(
chat_id: ChatId,
animation: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
duration: Long? = null,
width: Long? = null,
height: Long? = null,
thumbnail: String? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
show_caption_above_media: Boolean? = null,
has_spoiler: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendAnimation",
SendAnimationRequest(
chat_id,
animation,
business_connection_id,
message_thread_id,
duration,
width,
height,
thumbnail,
caption,
parse_mode,
caption_entities,
show_caption_above_media,
has_spoiler,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS, or in .MP3 format, or in .M4A format (other formats may be sent as <a href="#audio">Audio</a> or <a href="#document">Document</a>). On success, the sent <a href="#message">Message</a> is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property voice Audio file to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property caption Voice message caption, 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the voice message caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property duration Duration of the voice message in seconds
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendVoice(
chat_id: ChatId,
voice: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
duration: Long? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendVoice",
SendVoiceRequest(
chat_id,
voice,
business_connection_id,
message_thread_id,
caption,
parse_mode,
caption_entities,
duration,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>As of <a href="https://telegram.org/blog/video-messages-and-telescope">v.4.0</a>, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property video_note Video note to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended) or upload a new video using multipart/form-data. <a href="#sending-files">More information on Sending Files »</a>. Sending video notes by a URL is currently unsupported
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property duration Duration of sent video in seconds
* @property length Video width and height, i.e. diameter of the video message
* @property thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. <a href="#sending-files">More information on Sending Files »</a>
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendVideoNote(
chat_id: ChatId,
video_note: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
duration: Long? = null,
length: Long? = null,
thumbnail: String? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendVideoNote",
SendVideoNoteRequest(
chat_id,
video_note,
business_connection_id,
message_thread_id,
duration,
length,
thumbnail,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send paid media. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>). If the chat is a channel, all Telegram Star proceeds from this media will be credited to the chat's balance. Otherwise, they will be credited to the bot's balance.
* @property star_count The number of Telegram Stars that must be paid to buy access to the media
* @property media A JSON-serialized array describing the media to be sent; up to 10 items
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property caption Media caption, 0-1024 characters after entities parsing
* @property parse_mode Mode for parsing entities in the media caption. See <a href="#formatting-options">formatting options</a> for more details.
* @property caption_entities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of <em>parse_mode</em>
* @property show_caption_above_media Pass <em>True</em>, if the caption must be shown above the message media
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendPaidMedia(
chat_id: ChatId,
star_count: Long,
media: List<InputPaidMedia>,
business_connection_id: BusinessConnectionId? = null,
caption: String? = null,
parse_mode: ParseMode? = null,
caption_entities: List<MessageEntity>? = null,
show_caption_above_media: Boolean? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendPaidMedia",
SendPaidMediaRequest(
chat_id,
star_count,
media,
business_connection_id,
caption,
parse_mode,
caption_entities,
show_caption_above_media,
disable_notification,
protect_content,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of <a href="#message">Messages</a> that were sent is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property media A JSON-serialized array describing messages to be sent, must include 2-10 items
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property disable_notification Sends messages <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent messages from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
*
* @return [List<Message>]
* */
suspend fun sendMediaGroup(
chat_id: ChatId,
media: List<InputMedia>,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
) = telegramPost(
"$basePath/sendMediaGroup",
SendMediaGroupRequest(
chat_id,
media,
business_connection_id,
message_thread_id,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
).toJsonForRequest(),
ListSerializer(Message.serializer())
)
/**
* <p>Use this method to send point on the map. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property latitude Latitude of the location
* @property longitude Longitude of the location
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property horizontal_accuracy The radius of uncertainty for the location, measured in meters; 0-1500
* @property live_period Period in seconds during which the location will be updated (see <a href="https://telegram.org/blog/live-locations">Live Locations</a>, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely.
* @property heading For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
* @property proximity_alert_radius For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendLocation(
chat_id: ChatId,
latitude: Float,
longitude: Float,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
horizontal_accuracy: Float? = null,
live_period: Long? = null,
heading: Long? = null,
proximity_alert_radius: Long? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendLocation",
SendLocationRequest(
chat_id,
latitude,
longitude,
business_connection_id,
message_thread_id,
horizontal_accuracy,
live_period,
heading,
proximity_alert_radius,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send information about a venue. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property latitude Latitude of the venue
* @property longitude Longitude of the venue
* @property title Name of the venue
* @property address Address of the venue
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property foursquare_id Foursquare identifier of the venue
* @property foursquare_type Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
* @property google_place_id Google Places identifier of the venue
* @property google_place_type Google Places type of the venue. (See <a href="https://developers.google.com/places/web-service/supported_types">supported types</a>.)
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendVenue(
chat_id: ChatId,
latitude: Float,
longitude: Float,
title: String,
address: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
foursquare_id: String? = null,
foursquare_type: String? = null,
google_place_id: String? = null,
google_place_type: String? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendVenue",
SendVenueRequest(
chat_id,
latitude,
longitude,
title,
address,
business_connection_id,
message_thread_id,
foursquare_id,
foursquare_type,
google_place_id,
google_place_type,
disable_notification,
protect_content,
message_effect_id,
reply_parameters,
reply_markup,
).toJsonForRequest(),
Message.serializer()
)
/**
* <p>Use this method to send phone contacts. On success, the sent <a href="#message">Message</a> is returned.</p>
*
* @property chat_id Unique identifier for the target chat or username of the target channel (in the format <code>@channelusername</code>)
* @property phone_number Contact's phone number
* @property first_name Contact's first name
* @property business_connection_id Unique identifier of the business connection on behalf of which the message will be sent
* @property message_thread_id Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @property last_name Contact's last name
* @property vcard Additional data about the contact in the form of a <a href="https://en.wikipedia.org/wiki/VCard">vCard</a>, 0-2048 bytes
* @property disable_notification Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.
* @property protect_content Protects the contents of the sent message from forwarding and saving
* @property message_effect_id Unique identifier of the message effect to be added to the message; for private chats only
* @property reply_parameters Description of the message to reply to
* @property reply_markup Additional interface options. A JSON-serialized object for an <a href="/bots/features#inline-keyboards">inline keyboard</a>, <a href="/bots/features#keyboards">custom reply keyboard</a>, instructions to remove a reply keyboard or to force a reply from the user
*
* @return [Message]
* */
suspend fun sendContact(
chat_id: ChatId,
phone_number: String,
first_name: String,
business_connection_id: BusinessConnectionId? = null,
message_thread_id: MessageThreadId? = null,
last_name: String? = null,
vcard: String? = null,
disable_notification: Boolean? = null,
protect_content: Boolean? = null,
message_effect_id: MessageEffectId? = null,
reply_parameters: ReplyParameters? = null,
reply_markup: KeyboardOption? = null,
) = telegramPost(
"$basePath/sendContact",
SendContactRequest(
chat_id,
phone_number,
first_name,
business_connection_id,
message_thread_id,