This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmethods.go
2200 lines (1696 loc) Β· 76 KB
/
methods.go
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 telegram
import (
"strconv"
"strings"
)
type (
// SendMessage represents data for SendMessage method.
SendMessage struct {
ChatID ChatID `json:"chat_id"`
// Text of the message to be sent
Text string `json:"text"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
Entities []*MessageEntity `json:"entities,omitempty"`
// Disables link previews for links in this message
DisableWebPagePreview bool `json:"disable_web_page_preview,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// ForwardMessage represents data for ForwardMessage method.
ForwardMessage struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername)
FromChatID ChatID `json:"from_chat_id"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Message identifier in the chat specified in from_chat_id
MessageID int64 `json:"message_id"`
}
// CopyMessage represents data for CopyMessage method.
CopyMessage struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier for the chat where the original message was sent
FromChatID ChatID `json:"from_chat_id"`
// Message identifier in the chat specified in from_chat_id
MessageID int64 `json:"message_id"`
// New caption for media, 0-1024 characters after entities parsing. If not specified, the original
// caption is kept
Caption string `json:"caption,omitempty"`
// Mode for parsing entities in the new caption. See formatting options for more details.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the new caption, which can be specified instead of
// parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply
// keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendPhoto represents data for SendPhoto method.
SendPhoto struct {
ChatID ChatID `json:"chat_id"`
// 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.
Photo *InputFile `json:"photo"`
// Photo caption (may also be used when resending photos by file_id), 0-200 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendAudio represents data for SendAudio method.
SendAudio struct {
ChatID ChatID `json:"chat_id"`
// 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.
Audio *InputFile `json:"audio"`
// Audio caption, 0-1024 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Duration of the audio in seconds
Duration int `json:"duration,omitempty"`
// Performer
Performer string `json:"performer,omitempty"`
// Track name
Title string `json:"title,omitempty"`
// 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>.
Thumb *InputFile `json:"thumb,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendDocument represents data for SendDocument method.
SendDocument struct {
ChatID ChatID `json:"chat_id"`
// 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.
Document *InputFile `json:"document"`
// 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>.
Thumb *InputFile `json:"thumb,omitempty"`
// Document caption (may also be used when resending documents by file_id), 0-200 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendDocument represents data for SendVideo method.
SendVideo struct {
ChatID ChatID `json:"chat_id"`
// 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.
Video *InputFile `json:"video"`
// Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Video width
Width int `json:"width,omitempty"`
// Video height
Height int `json:"height,omitempty"`
// 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>.
Thumb *InputFile `json:"thumb,omitempty"`
// Video caption (may also be used when resending videos by file_id), 0-1024 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Pass True, if the uploaded video is suitable for streaming
SupportsStreaming bool `json:"supports_streaming,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendAnimation represents data for SendAnimation method.
SendAnimation struct {
ChatID ChatID `json:"chat_id"`
// 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.
Animation *InputFile `json:"animation"`
// Duration of sent animation in seconds
Duration int `json:"duration,omitempty"`
// Animation width
Width int `json:"width,omitempty"`
// Animation height
Height int `json:"height,omitempty"`
// Thumbnail of the file sent. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnailβs width and height should not exceed 90. 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>.
Thumb *InputFile `json:"thumb,omitempty"`
// Animation caption (may also be used when resending animation by file_id), 0-200 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendVoice represents data for SendVoice method.
SendVoice struct {
ChatID ChatID `json:"chat_id"`
// 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.
Voice *InputFile `json:"voice"`
// Voice message caption, 0-1024 characters
Caption string `json:"caption,omitempty"`
// Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
ParseMode string `json:"parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Duration of the voice message in seconds
Duration int `json:"duration,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendVideoNote represents data for SendVideoNote method.
SendVideoNote struct {
ChatID ChatID `json:"chat_id"`
// 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.. Sending video notes by a URL is currently unsupported
VideoNote *InputFile `json:"video_note"`
// Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Video width and height, i.e. diameter of the video message
Length int `json:"length,omitempty"`
// 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>.
Thumb *InputFile `json:"thumb,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendMediaGroup represents data for SendMediaGroup method.
SendMediaGroup struct {
ChatID ChatID `json:"chat_id" form:"chat_id"`
// A JSON-serialized array describing photos and videos to be sent, must include 2β10 items
Media []AlbumMedia `json:"media" form:"media"`
// Sends the messages silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty" form:"disable_notification"`
// If the messages are a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty" form:"reply_to_message_id"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty" form:"reply_to_message_id"`
}
// SendLocation represents data for SendLocation method.
SendLocation struct {
ChatID ChatID `json:"chat_id"`
// Latitude of the location
Latitude float64 `json:"latitude"`
// Longitude of the location
Longitude float64 `json:"longitude"`
// The radius of uncertainty for the location, measured in meters; 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Period in seconds for which the location will be updated (see Live Locations), should be between 60
// and 86400.
LivePeriod int `json:"live_period,omitempty"`
// For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360
// if specified.
Heading int `json:"heading,omitempty"`
// For live locations, a maximum distance for proximity alerts about approaching another chat member,
// in meters. Must be between 1 and 100000 if specified.
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price' button will be
// shown. If not empty, the first button must be a Pay button.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// EditMessageLiveLocation represents data for EditMessageLiveLocation method.
EditMessageLiveLocation struct {
ChatID ChatID `json:"chat_id,omitempty"`
// Required if inline_message_id is not specified. Identifier of the sent message
MessageID int64 `json:"message_id,omitempty"`
// Required if chat_id and message_id are not specified. Identifier of the inline message
InlineMessageID string `json:"inline_message_id,omitempty"`
// Latitude of new location
Latitude float64 `json:"latitude"`
// Longitude of new location
Longitude float64 `json:"longitude"`
// The radius of uncertainty for the location, measured in meters; 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
Heading int `json:"heading,omitempty"`
// Maximum distance for proximity alerts about approaching another chat member, in meters. Must be
// between 1 and 100000 if specified.
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
// A JSON-serialized object for a new inline keyboard.
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// StopMessageLiveLocation represents data for StopMessageLiveLocation method.
StopMessageLiveLocation struct {
ChatID ChatID `json:"chat_id,omitempty"`
// Required if inline_message_id is not specified. Identifier of the message with live location to stop
MessageID int64 `json:"message_id,omitempty"`
// Required if chat_id and message_id are not specified. Identifier of the inline message
InlineMessageID string `json:"inline_message_id,omitempty"`
// A JSON-serialized object for a new inline keyboard.
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// SendVenue represents data for SendVenue method.
SendVenue struct {
ChatID ChatID `json:"chat_id"`
// Latitude of the venue
Latitude float64 `json:"latitude"`
// Longitude of the venue
Longitude float64 `json:"longitude"`
// Name of the venue
Title string `json:"title"`
// Address of the venue
Address string `json:"address"`
// Foursquare identifier of the venue
FoursquareID string `json:"foursquare_id,omitempty"`
// Foursquare type of the venue, if known. (For example, "arts_entertainment/default",
// "arts_entertainment/aquarium" or "food/icecream".)
FoursquareType string `json:"foursquare_type,omitempty"`
// Google Places identifier of the venue
GooglePlaceID string `json:"google_place_id,omitempty"`
// Google Places type of the venue.
GooglePlaceType string `json:"google_place_type,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price' button will be shown. If not empty, the first button must be a Pay button.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendContact represents data for SendContact method.
SendContact struct {
ChatID ChatID `json:"chat_id"`
// Contact's phone number
PhoneNumber string `json:"phone_number"`
// Contact's first name
FirstName string `json:"first_name"`
// Contact's last name
LastName string `json:"last_name"`
// Additional data about the contact in the form of a vCard, 0-2048 bytes
VCard string `json:"vcard,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price' button will be shown. If not empty, the first button must be a Pay button.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendPoll represents data for SendPoll method.
SendPoll struct {
ChatID ChatID `json:"chat_id"`
// Poll question, 1-300 characters
Question string `json:"question"`
// List of answer options, 2-10 strings 1-100 characters each
Options []string `json:"options"`
// True, if the poll needs to be anonymous, defaults to True
IsAnonymous bool `json:"is_anonymous,omitempty"`
// Poll type, βquizβ or βregularβ, defaults to βregularβ
Type string `json:"type,omitempty"`
// True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False
AllowsMultipleAnswers bool `json:"allows_multiple_answers,omitempty"`
// 0-based identifier of the correct answer option, required for polls in quiz mode
CorrectOptionID int64 `json:"correct_option_id,omitempty"`
// Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style
// poll, 0-200 characters with at most 2 line feeds after entities parsing
Explanation string `json:"explanation,omitempty"`
// Mode for parsing entities in the explanation. See formatting options for more details.
ExplanationParseMode string `json:"explanation_parse_mode,omitempty"`
// List of special entities that appear in the caption, which can be specified instead of parse_mode
ExplanationEntities []*MessageEntity `json:"explanation_entities,omitempty"`
// Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.
OpenPeriod int `json:"open_period,omitempty"`
// Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period.
CloseDate int64 `json:"close_date,omitempty"`
// Pass True, if the poll needs to be immediately closed
IsClosed bool `json:"is_closed,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendDice represents data for SendDice method.
SendDice struct {
ChatID ChatID `json:"chat_id"`
// Emoji on which the dice throw animation is based. Currently, must be one of βπ²β, βπ―β, βπβ,
// ββ½β, or βπ°β. Dice can have values 1-6 for βπ²β and βπ―β, values 1-5 for βπβ and ββ½β, and values
// 1-64 for βπ°β. Defaults to βπ²β
Emoji string `json:"emoji,omitempty"`
// Sends the message silently. Users will receive a notification with no sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// If the message is a reply, ID of the original message
ReplyToMessageID int64 `json:"reply_to_message_id,omitempty"`
// Pass True, if the message should be sent even if the specified replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// SendChatAction represents data for SendChatAction method.
SendChatAction struct {
ChatID ChatID `json:"chat_id"`
// Type of action to broadcast
Action string `json:"action"`
}
// GetUserProfilePhotos represents data for GetUserProfilePhotos method.
GetUserProfilePhotos struct {
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// Sequential number of the first photo to be returned. By default, all photos are returned.
Offset int `json:"offset,omitempty"`
// Limits the number of photos to be retrieved. Values between 1β100 are accepted. Defaults to 100.
Limit int `json:"limit,omitempty"`
}
// GetFile represents data for GetFile method.
GetFile struct {
// File identifier to get info about
FileID string `json:"file_id"`
}
// BanChatMember represents data for BanChatMember method.
BanChatMember struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever
UntilDate int64 `json:"until_date"`
// Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels.
RevokeMessages bool `json:"revoke_messages,omitempty"`
}
// UnbanChatMember represents data for UnbanChatMember method.
UnbanChatMember struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// Do nothing if the user is not banned
OnlyIfBanned bool `json:"only_if_banned,omitempty"`
}
// RestrictChatMember represents data for RestrictChatMember method.
RestrictChatMember struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// New user permissions
Permissions *ChatPermissions `json:"permissions"`
// Date when restrictions will be lifted for the user, unix time. If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever
UntilDate int64 `json:"until_date,omitempty"`
}
// PromoteChatMember represents data for PromoteChatMember method.
PromoteChatMember struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// Pass True, if the administrator's presence in the chat is hidden
IsAnonymous bool `json:"is_anonymous,omitempty"`
// Pass True, if the administrator can access the chat event log, chat statistics, message statistics
// in channels, see channel members, see anonymous administrators in supergoups and ignore slow mode.
// Implied by any other administrator privilege
CanManageChat bool `json:"can_manage_chat,omitempty"`
// Pass True, if the administrator can change chat title, photo and other settings
CanChangeInfo bool `json:"can_change_info,omitempty"`
// Pass True, if the administrator can create channel posts, channels only
CanPostMessages bool `json:"can_post_messages,omitempty"`
// Pass True, if the administrator can edit messages of other users and can pin messages, channels only
CanEditMessages bool `json:"can_edit_messages,omitempty"`
// Pass True, if the administrator can delete messages of other users
CanDeleteMessages bool `json:"can_delete_messages,omitempty"`
// Pass True, if the administrator can manage voice chats, supergroups only
CanManageVoiceChats bool `json:"can_manage_voice_chats,omitempty"`
// Pass True, if the administrator can invite new users to the chat
CanInviteUsers bool `json:"can_invite_users,omitempty"`
// Pass True, if the administrator can restrict, ban or unban chat members
CanRestrictMembers bool `json:"can_restrict_members,omitempty"`
// Pass True, if the administrator can pin messages, supergroups only
CanPinMessages bool `json:"can_pin_messages,omitempty"`
// Pass True, if the administrator can add new administrators with a subset of his own privileges or
// demote administrators that he has promoted, directly or indirectly (promoted by administrators that
// were appointed by him)
CanPromoteMembers bool `json:"can_promote_members,omitempty"`
}
// SetChatAdministratorCustomTitle represents data for SetChatAdministratorCustomTitle method.
SetChatAdministratorCustomTitle struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
// New custom title for the administrator; 0-16 characters, emoji are not allowed
CustomTitle string `json:"custom_title"`
}
// SetChatPermissions represents data for SetChatPermissions method.
SetChatPermissions struct {
ChatID ChatID `json:"chat_id"`
// New default chat permissions
Permissions ChatPermissions `json:"permissions"`
}
// ExportChatInviteLink represents data for ExportChatInviteLink method.
ExportChatInviteLink struct {
ChatID ChatID `json:"chat_id"`
}
// CreateChatInviteLink represents data for CreateChatInviteLink method.
CreateChatInviteLink struct {
ChatID ChatID `json:"chat_id"`
// Point in time (Unix timestamp) when the link will expire
ExpireDate int64 `json:"expire_date,omitempty"`
// Maximum number of users that can be members of the chat simultaneously after joining the chat via
// this invite link; 1-99999
MemberLimit int `json:"member_limit,omitempty"`
}
// EditChatInviteLink represents data for EditChatInviteLink method.
EditChatInviteLink struct {
ChatID ChatID `json:"chat_id"`
// The invite link to edit
InviteLink string `json:"invite_link"`
// Point in time (Unix timestamp) when the link will expire
ExpireDate int64 `json:"expire_date,omitempty"`
// Maximum number of users that can be members of the chat simultaneously after joining the chat via
// this invite link; 1-99999
MemberLimit int `json:"member_limit,omitempty"`
}
// RevokeChatInviteLink represents data for RevokeChatInviteLink method.
RevokeChatInviteLink struct {
ChatID ChatID `json:"chat_id"`
// The invite link to revoke
InviteLink string `json:"invite_link"`
}
// SetChatPhoto represents data for SetChatPhoto method.
SetChatPhoto struct {
ChatID ChatID `json:"chat_id"`
// New chat photo, uploaded using multipart/form-data
ChatPhoto InputFile `json:"chat_photo"`
}
// DeleteChatPhoto represents data for DeleteChatPhoto method.
DeleteChatPhoto struct {
ChatID ChatID `json:"chat_id"`
}
// SetChatTitle represents data for SetChatTitle method.
SetChatTitle struct {
ChatID ChatID `json:"chat_id"`
// New chat title, 1-255 characters
Title string `json:"title"`
}
// SetChatDescription represents data for SetChatDescription method.
SetChatDescription struct {
ChatID ChatID `json:"chat_id"`
// New chat description, 0-255 characters
Description string `json:"description"`
}
// PinChatMessage represents data for PinChatMessage method.
PinChatMessage struct {
ChatID ChatID `json:"chat_id"`
// Identifier of a message to pin
MessageID int64 `json:"message_id"`
// Pass true, if it is not necessary to send a notification to all chat members about the new pinned message. Notifications are always disabled in channels.
DisableNotification bool `json:"disable_notification"`
}
// UnpinChatMessage represents data for UnpinChatMessage method.
UnpinChatMessage struct {
ChatID ChatID `json:"chat_id"`
// Identifier of a message to unpin. If not specified, the most recent pinned message (by sending
// date) will be unpinned.
MessageID int64 `json:"messge_id,omitempty"`
}
// UnpinAllChatMessages represents data for UnpinAllChatMessages method.
UnpinAllChatMessages struct {
ChatID ChatID `json:"chat_id"`
}
// LeaveChat represents data for LeaveChat method.
LeaveChat struct {
ChatID ChatID `json:"chat_id"`
}
// GetChat represents data for GetChat method.
GetChat struct {
ChatID ChatID `json:"chat_id"`
}
// GetChatAdministrators represents data for GetChatAdministrators method.
GetChatAdministrators struct {
ChatID ChatID `json:"chat_id"`
}
// GetChatMemberCount represents data for GetChatMemberCount method.
GetChatMemberCount struct {
ChatID ChatID `json:"chat_id"`
}
// GetChatMember represents data for GetChatMember method.
GetChatMember struct {
ChatID ChatID `json:"chat_id"`
// Unique identifier of the target user
UserID int64 `json:"user_id"`
}
// SetChatStickerSet represents data for SetChatStickerSet method.
SetChatStickerSet struct {
ChatID ChatID `json:"chat_id"`
// Name of the sticker set to be set as the group sticker set
StickerSetName string `json:"sticker_set_name"`
}
// DeleteChatStickerSet represents data for DeleteChatStickerSet method.
DeleteChatStickerSet struct {
ChatID ChatID `json:"chat_id"`
}
// AnswerCallbackQuery represents data for AnswerCallbackQuery method.
AnswerCallbackQuery struct {
// Unique identifier for the query to be answered
CallbackQueryID string `json:"callback_query_id"`
// Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters
Text string `json:"text,omitempty"`
// URL that will be opened by the user's client. If you have created a Game and accepted the conditions via @Botfather, specify the URL that opens your game β note that this will only work if the query comes from a callback_game button.
//
// Otherwise, you may use links like t.me/your_bot?start=XXXX that open your bot with a parameter.
URL string `json:"url,omitempty"`
// If true, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false.
ShowAlert bool `json:"show_alert,omitempty"`
// The maximum amount of time in seconds that the result of the callback query may be cached client-side. Telegram apps will support caching starting in version 3.14. Defaults to 0.
CacheTime int `json:"cache_time,omitempty"`
}
// SetMyCommands represents data for SetMyCommands method.
SetMyCommands struct {
// A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100
// commands can be specified.
Commands []*BotCommand `json:"commands"`
// A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to
// BotCommandScopeDefault.
Scope BotCommandScope `json:"scope,omitempty"`
// A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given
// scope, for whose language there are no dedicated commands
LanguageCode string `json:"language_code,omitempty"`
}
// DeleteMyCommands represents data for DeleteMyCommands method.
DeleteMyCommands struct {
// A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to
// BotCommandScopeDefault.
Scope BotCommandScope `json:"scope,omitempty"`
// A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given
// scope, for whose language there are no dedicated commands
LanguageCode string `json:"language_code,omitempty"`
}
// GetMyCommands represents data for GetMyCommands method.
GetMyCommands struct {
// A JSON-serialized object, describing scope of users. Defaults to BotCommandScopeDefault.
Scope BotCommandScope `json:"scope,omitempty"`
// A two-letter ISO 639-1 language code or an empty string
LanguageCode string `json:"language_code,omitempty"`
}
)
// GetMe testing your bot's auth token. Returns basic information about the bot in form of a User object.
func (b Bot) GetMe() (*User, error) {
src, err := b.Do(MethodGetMe, nil)
if err != nil {
return nil, err
}
result := new(User)
if err = parseResponseError(b.marshler, src, result); err != nil {
return nil, err
}
return result, nil
}
// LogOut method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot
// before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful
// call, you will not be able to log in again using the same token for 10 minutes. Returns True on success. Requires
// no parameters.
func (b Bot) LogOut() (ok bool, err error) {
src, err := b.Do(MethodLogOut, nil)
if err != nil {
return false, err
}
resp := new(Response)
if err = b.marshler.Unmarshal(src, resp); err != nil {
return
}
if err = b.marshler.Unmarshal(resp.Result, &ok); err != nil {
return
}
return
}
// Close 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 True on success. Requires no
// parameters.
func (b Bot) Close() (ok bool, err error) {
src, err := b.Do(MethodClose, nil)
if err != nil {
return false, err
}
resp := new(Response)
if err = b.marshler.Unmarshal(src, resp); err != nil {
return
}
if err = b.marshler.Unmarshal(resp.Result, &ok); err != nil {
return
}
return
}
func NewMessage(chatID ChatID, text string) SendMessage {
return SendMessage{
ChatID: chatID,
Text: text,
}
}
// SendMessage send text messages. On success, the sent Message is returned.
func (b Bot) SendMessage(p SendMessage) (*Message, error) {
src, err := b.Do(MethodSendMessage, p)
if err != nil {
return nil, err
}
result := new(Message)
if err = parseResponseError(b.marshler, src, result); err != nil {
return nil, err
}
return result, nil
}
func NewForward(fromChatID, toChatID ChatID, messageID int64) ForwardMessage {
return ForwardMessage{
FromChatID: fromChatID,
ChatID: toChatID,
MessageID: messageID,
}
}
// ForwardMessage forward messages of any kind. On success, the sent Message is returned.
func (b Bot) ForwardMessage(p ForwardMessage) (*Message, error) {