-
Notifications
You must be signed in to change notification settings - Fork 1
/
available_methods_gen.go
1670 lines (1343 loc) · 64.6 KB
/
available_methods_gen.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
// Code generated by telegram-apigen. DO NOT EDIT.
package telegram
import "encoding/json"
type GetMeRequest struct{}
// A simple method for testing your bot's auth token. Requires no parameters.
// Returns basic information about the bot in form of a User object.
func (b *Bot) GetMe(req *GetMeRequest) (*User, error) {
j, err := b.makeRequest("getMe", req)
if err != nil {
return nil, err
}
var resp User
err = json.Unmarshal(j, &resp)
return &resp, err
}
type LogOutRequest struct{}
// Use this 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
// 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 True on success. Requires no
// parameters.
func (b *Bot) LogOut(req *LogOutRequest) (json.RawMessage, error) {
return b.makeRequest("logOut", req)
}
type CloseRequest struct{}
// 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 True on
// success. Requires no parameters.
func (b *Bot) Close(req *CloseRequest) (json.RawMessage, error) {
return b.makeRequest("close", req)
}
type SendMessageRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Text of the message to be sent, 1-4096 characters after entities parsing
Text string `json:"text"`
// Optional. Mode for parsing entities in the message text. See formatting options
// for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in message text, which can be
// specified instead of parse_mode
Entities []MessageEntity `json:"entities,omitempty"`
// Optional. Disables link previews for links in this message
DisableWebPagePreview bool `json:"disable_web_page_preview,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send text messages. On success, the sent Message is
// returned.
func (b *Bot) SendMessage(req *SendMessageRequest) (*Message, error) {
j, err := b.makeRequest("sendMessage", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type ForwardMessageRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Unique identifier for the chat where the original message was sent (or channel
// username in the format @channelusername)
FromChatID string `json:"from_chat_id"`
// Optional. 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 int `json:"message_id"`
}
// Use this method to forward messages of any kind. Service messages can't be
// forwarded. On success, the sent Message is returned.
func (b *Bot) ForwardMessage(req *ForwardMessageRequest) (*Message, error) {
j, err := b.makeRequest("forwardMessage", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type CopyMessageRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Unique identifier for the chat where the original message was sent (or channel
// username in the format @channelusername)
FromChatID string `json:"from_chat_id"`
// Message identifier in the chat specified in from_chat_id
MessageID int `json:"message_id"`
// Optional. New caption for media, 0-1024 characters after entities parsing. If
// not specified, the original caption is kept
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting options
// for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the new caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to copy messages of any kind. Service messages and invoice
// messages can't be copied. The method is analogous to the method forwardMessage,
// but the copied message doesn't have a link to the original message. Returns the
// MessageId of the sent message on success.
func (b *Bot) CopyMessage(req *CopyMessageRequest) (*MessageId, error) {
j, err := b.makeRequest("copyMessage", req)
if err != nil {
return nil, err
}
var resp MessageId
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendPhotoRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. 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. More info on
// Sending Files »
Photo Fileable `json:"photo"`
// Optional. Photo caption (may also be used when resending photos by file_id),
// 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the photo caption. See formatting options
// for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send photos. On success, the sent Message is returned.
func (b *Bot) SendPhoto(req *SendPhotoRequest) (*Message, error) {
j, err := b.makeRequest("sendPhoto", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendAudioRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More info on Sending Files »
Audio Fileable `json:"audio"`
// Optional. Audio caption, 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the audio caption. See formatting options
// for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Duration of the audio in seconds
Duration int `json:"duration,omitempty"`
// Optional. Performer
Performer string `json:"performer,omitempty"`
// Optional. Track name
Title string `json:"title,omitempty"`
// Optional. 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>. More info on Sending Files »
Thumb Fileable `json:"thumb,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// 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 Message is returned. Bots can currently send audio files of up
// to 50 MB in size, this limit may be changed in the future.
//
// For sending voice messages, use the sendVoice method instead.
func (b *Bot) SendAudio(req *SendAudioRequest) (*Message, error) {
j, err := b.makeRequest("sendAudio", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendDocumentRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More
// info on Sending Files »
Document Fileable `json:"document"`
// Optional. 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>. More info on Sending Files »
Thumb Fileable `json:"thumb,omitempty"`
// Optional. Document caption (may also be used when resending documents by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the document caption. See formatting
// options for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Disables automatic server-side content type detection for files
// uploaded using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send general files. On success, the sent Message 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.
func (b *Bot) SendDocument(req *SendDocumentRequest) (*Message, error) {
j, err := b.makeRequest("sendDocument", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendVideoRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More
// info on Sending Files »
Video Fileable `json:"video"`
// Optional. Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Optional. Video width
Width int `json:"width,omitempty"`
// Optional. Video height
Height int `json:"height,omitempty"`
// Optional. 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>. More info on Sending Files »
Thumb Fileable `json:"thumb,omitempty"`
// Optional. Video caption (may also be used when resending videos by file_id),
// 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the video caption. See formatting options
// for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Pass True, if the uploaded video is suitable for streaming
SupportsStreaming bool `json:"supports_streaming,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send video files, Telegram clients support mp4 videos (other
// formats may be sent as Document). On success, the sent Message is returned. Bots
// can currently send video files of up to 50 MB in size, this limit may be changed
// in the future.
func (b *Bot) SendVideo(req *SendVideoRequest) (*Message, error) {
j, err := b.makeRequest("sendVideo", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendAnimationRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More info on Sending Files »
Animation Fileable `json:"animation"`
// Optional. Duration of sent animation in seconds
Duration int `json:"duration,omitempty"`
// Optional. Animation width
Width int `json:"width,omitempty"`
// Optional. Animation height
Height int `json:"height,omitempty"`
// Optional. 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>. More info on Sending Files »
Thumb Fileable `json:"thumb,omitempty"`
// Optional. Animation caption (may also be used when resending animation by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the animation caption. See formatting
// options for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without
// sound). On success, the sent Message is returned. Bots can currently send
// animation files of up to 50 MB in size, this limit may be changed in the
// future.
func (b *Bot) SendAnimation(req *SendAnimationRequest) (*Message, error) {
j, err := b.makeRequest("sendAnimation", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendVoiceRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More
// info on Sending Files »
Voice Fileable `json:"voice"`
// Optional. Voice message caption, 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the voice message caption. See formatting
// options for more details.
ParseMode string `json:"parse_mode,omitempty"`
// Optional. List of special entities that appear in the caption, which can be
// specified instead of parse_mode
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
// Optional. Duration of the voice message in seconds
Duration int `json:"duration,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// 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 (other formats may be sent as Audio or Document). On
// success, the sent Message is returned. Bots can currently send voice messages of
// up to 50 MB in size, this limit may be changed in the future.
func (b *Bot) SendVoice(req *SendVoiceRequest) (*Message, error) {
j, err := b.makeRequest("sendVoice", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendVideoNoteRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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. More info on Sending Files ». Sending video notes by a URL
// is currently unsupported
VideoNote Fileable `json:"video_note"`
// Optional. Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Optional. Video width and height, i.e. diameter of the video message
Length int `json:"length,omitempty"`
// Optional. 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>. More info on Sending Files »
Thumb Fileable `json:"thumb,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// As of v.4.0, Telegram clients support rounded square mp4 videos of up to 1
// minute long. Use this method to send video messages. On success, the sent
// Message is returned.
func (b *Bot) SendVideoNote(req *SendVideoNoteRequest) (*Message, error) {
j, err := b.makeRequest("sendVideoNote", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendLocationRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Latitude of the location
Latitude float64 `json:"latitude"`
// Longitude of the location
Longitude float64 `json:"longitude"`
// Optional. The radius of uncertainty for the location, measured in meters;
// 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Optional. 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"`
// Optional. 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"`
// Optional. 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"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send point on the map. On success, the sent Message is
// returned.
func (b *Bot) SendLocation(req *SendLocationRequest) (*Message, error) {
j, err := b.makeRequest("sendLocation", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type EditMessageLiveLocationRequest struct {
// Optional. Required if inline_message_id is not specified. Unique identifier for
// the target chat or username of the target channel (in the format
// @channelusername)
ChatID string `json:"chat_id,omitempty"`
// Optional. Required if inline_message_id is not specified. Identifier of the
// message to edit
MessageID int `json:"message_id,omitempty"`
// Optional. 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"`
// Optional. The radius of uncertainty for the location, measured in meters;
// 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Optional. Direction in which the user is moving, in degrees. Must be between 1
// and 360 if specified.
Heading int `json:"heading,omitempty"`
// Optional. 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"`
// Optional. A JSON-serialized object for a new inline keyboard.
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// Use this method to edit live location messages. A location can be edited until
// its live_period expires or editing is explicitly disabled by a call to
// stopMessageLiveLocation. On success, if the edited message is not an inline
// message, the edited Message is returned, otherwise True is returned.
func (b *Bot) EditMessageLiveLocation(req *EditMessageLiveLocationRequest) (*Message, error) {
j, err := b.makeRequest("editMessageLiveLocation", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type StopMessageLiveLocationRequest struct {
// Optional. Required if inline_message_id is not specified. Unique identifier for
// the target chat or username of the target channel (in the format
// @channelusername)
ChatID string `json:"chat_id,omitempty"`
// Optional. Required if inline_message_id is not specified. Identifier of the
// message with live location to stop
MessageID int `json:"message_id,omitempty"`
// Optional. Required if chat_id and message_id are not specified. Identifier of
// the inline message
InlineMessageID string `json:"inline_message_id,omitempty"`
// Optional. A JSON-serialized object for a new inline keyboard.
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// Use this method to stop updating a live location message before live_period
// expires. On success, if the message was sent by the bot, the sent Message is
// returned, otherwise True is returned.
func (b *Bot) StopMessageLiveLocation(req *StopMessageLiveLocationRequest) (*Message, error) {
j, err := b.makeRequest("stopMessageLiveLocation", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendVenueRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `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"`
// Optional. Foursquare identifier of the venue
FoursquareID string `json:"foursquare_id,omitempty"`
// Optional. Foursquare type of the venue, if known. (For example,
// “arts_entertainment/default”, “arts_entertainment/aquarium” or
// “food/icecream”.)
FoursquareType string `json:"foursquare_type,omitempty"`
// Optional. Google Places identifier of the venue
GooglePlaceID string `json:"google_place_id,omitempty"`
// Optional. Google Places type of the venue. (See supported types.)
GooglePlaceType string `json:"google_place_type,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send information about a venue. On success, the sent Message
// is returned.
func (b *Bot) SendVenue(req *SendVenueRequest) (*Message, error) {
j, err := b.makeRequest("sendVenue", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendContactRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Contact's phone number
PhoneNumber string `json:"phone_number"`
// Contact's first name
FirstName string `json:"first_name"`
// Optional. Contact's last name
LastName string `json:"last_name,omitempty"`
// Optional. Additional data about the contact in the form of a vCard, 0-2048
// bytes
Vcard string `json:"vcard,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. Additional interface options. A JSON-serialized object for an inline
// keyboard, custom reply keyboard, instructions to remove keyboard or to force a
// reply from the user.
ReplyMarkup AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send phone contacts. On success, the sent Message is
// returned.
func (b *Bot) SendContact(req *SendContactRequest) (*Message, error) {
j, err := b.makeRequest("sendContact", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendPollRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Poll question, 1-300 characters
Question string `json:"question"`
// A JSON-serialized list of answer options, 2-10 strings 1-100 characters each
Options []string `json:"options"`
// Optional. True, if the poll needs to be anonymous, defaults to True
IsAnonymous bool `json:"is_anonymous,omitempty"`
// Optional. Poll type, “quiz” or “regular”, defaults to “regular”
Type string `json:"type,omitempty"`
// Optional. True, if the poll allows multiple answers, ignored for polls in quiz
// mode, defaults to False
AllowsMultipleAnswers bool `json:"allows_multiple_answers,omitempty"`
// Optional. 0-based identifier of the correct answer option, required for polls in
// quiz mode
CorrectOptionID int `json:"correct_option_id,omitempty"`
// Optional. 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"`
// Optional. Mode for parsing entities in the explanation. See formatting options
// for more details.
ExplanationParseMode string `json:"explanation_parse_mode,omitempty"`
// Optional. List of special entities that appear in the poll explanation, which
// can be specified instead of parse_mode
ExplanationEntities []MessageEntity `json:"explanation_entities,omitempty"`
// Optional. 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"`
// Optional. 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 int `json:"close_date,omitempty"`
// Optional. Pass True, if the poll needs to be immediately closed. This can be
// useful for poll preview.
IsClosed bool `json:"is_closed,omitempty"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send a native poll. On success, the sent Message is
// returned.
func (b *Bot) SendPoll(req *SendPollRequest) (*Message, error) {
j, err := b.makeRequest("sendPoll", req)
if err != nil {
return nil, err
}
var resp Message
err = json.Unmarshal(j, &resp)
return &resp, err
}
type SendDiceRequest struct {
// Unique identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID string `json:"chat_id"`
// Optional. 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"`
// Optional. Sends the message silently. Users will receive a notification with no
// sound.
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID int `json:"reply_to_message_id,omitempty"`
// Optional. 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"`
// Optional. 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 AnyKeyboard `json:"reply_markup,omitempty"`
}
// Use this method to send an animated emoji that will display a random value. On
// success, the sent Message is returned.
func (b *Bot) SendDice(req *SendDiceRequest) (*Message, error) {