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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
use crate::helpers::*;

#[derive(Debug, Clone, Deserialize)]
#[serde(untagged)]
pub enum ChatMember {
    Owner(ChatMemberOwner),
    Administrator(ChatMemberAdministrator),
    Member(ChatMemberMember),
    Restricted(ChatMemberRestricted),
    Left(ChatMemberLeft),
    Banned(ChatMemberBanned),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum BotCommandScope {
    #[serde(rename = "default")]
    Default(BotCommandScopeDefault),
    #[serde(rename = "all_private_chats")]
    AllPrivateChats(BotCommandScopeAllPrivateChats),
    #[serde(rename = "all_group_chats")]
    AllGroupChats(BotCommandScopeAllGroupChats),
    #[serde(rename = "all_chat_administrators")]
    AllChatAdministrators(BotCommandScopeAllChatAdministrators),
    #[serde(rename = "chat")]
    Chat(BotCommandScopeChat),
    #[serde(rename = "chat_administrators")]
    ChatAdministrators(BotCommandScopeChatAdministrators),
    #[serde(rename = "chat_member")]
    ChatMember(BotCommandScopeChatMember),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum MenuButton {
    #[serde(rename = "commands")]
    Commands(MenuButtonCommands),
    #[serde(rename = "web_app")]
    WebApp(MenuButtonWebApp),
    #[serde(rename = "default")]
    Default(MenuButtonDefault),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum InputMedia {
    #[serde(rename = "animation")]
    Animation(InputMediaAnimation),
    #[serde(rename = "document")]
    Document(InputMediaDocument),
    #[serde(rename = "audio")]
    Audio(InputMediaAudio),
    #[serde(rename = "photo")]
    Photo(InputMediaPhoto),
    #[serde(rename = "video")]
    Video(InputMediaVideo),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum InlineQueryResult {
    #[serde(rename = "audio")]
    CachedAudio(InlineQueryResultCachedAudio),
    #[serde(rename = "document")]
    CachedDocument(InlineQueryResultCachedDocument),
    #[serde(rename = "gif")]
    CachedGif(InlineQueryResultCachedGif),
    #[serde(rename = "mpeg4_gif")]
    CachedMpeg4Gif(InlineQueryResultCachedMpeg4Gif),
    #[serde(rename = "photo")]
    CachedPhoto(InlineQueryResultCachedPhoto),
    #[serde(rename = "sticker")]
    CachedSticker(InlineQueryResultCachedSticker),
    #[serde(rename = "video")]
    CachedVideo(InlineQueryResultCachedVideo),
    #[serde(rename = "voice")]
    CachedVoice(InlineQueryResultCachedVoice),
    #[serde(rename = "article")]
    Article(InlineQueryResultArticle),
    #[serde(rename = "audio")]
    Audio(InlineQueryResultAudio),
    #[serde(rename = "contact")]
    Contact(InlineQueryResultContact),
    #[serde(rename = "game")]
    Game(InlineQueryResultGame),
    #[serde(rename = "document")]
    Document(InlineQueryResultDocument),
    #[serde(rename = "gif")]
    Gif(InlineQueryResultGif),
    #[serde(rename = "location")]
    Location(InlineQueryResultLocation),
    #[serde(rename = "mpeg4_gif")]
    Mpeg4Gif(InlineQueryResultMpeg4Gif),
    #[serde(rename = "photo")]
    Photo(InlineQueryResultPhoto),
    #[serde(rename = "venue")]
    Venue(InlineQueryResultVenue),
    #[serde(rename = "video")]
    Video(InlineQueryResultVideo),
    #[serde(rename = "voice")]
    Voice(InlineQueryResultVoice),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum InputMessageContent {
    Text(InputTextMessageContent),
    Location(InputLocationMessageContent),
    Venue(InputVenueMessageContent),
    Contact(InputContactMessageContent),
    Invoice(InputInvoiceMessageContent),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "source")]
pub enum PassportElementError {
    #[serde(rename = "data")]
    DataField(PassportElementErrorDataField),
    #[serde(rename = "front_side")]
    FrontSide(PassportElementErrorFrontSide),
    #[serde(rename = "reverse_side")]
    ReverseSide(PassportElementErrorReverseSide),
    #[serde(rename = "selfie")]
    Selfie(PassportElementErrorSelfie),
    #[serde(rename = "file")]
    File(PassportElementErrorFile),
    #[serde(rename = "files")]
    Files(PassportElementErrorFiles),
    #[serde(rename = "translation_file")]
    TranslationFile(PassportElementErrorTranslationFile),
    #[serde(rename = "translation_files")]
    TranslationFiles(PassportElementErrorTranslationFiles),
    #[serde(rename = "unspecified")]
    Unspecified(PassportElementErrorUnspecified),
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ReplyMarkup {
    InlineKeyboardMarkup(InlineKeyboardMarkup),
    Keyboard(ReplyKeyboardMarkup),
    KeyboardRemove(ReplyKeyboardRemove),
    Force(ForceReply),
}

#[derive(Debug, Clone, Deserialize)]
/// Describes the current status of a webhook.
pub struct WebhookInfo {
    /// Webhook URL, may be empty if webhook is not set up
    pub url: String,
    /// True, if a custom certificate was provided for webhook certificate checks
    pub has_custom_certificate: bool,
    /// Number of updates awaiting delivery
    pub pending_update_count: i64,
    /// Currently used webhook IP address
    pub ip_address: Option<String>,
    /// Unix time for the most recent error that happened when trying to deliver an update via
    /// webhook
    pub last_error_date: Option<i64>,
    /// Error message in human-readable format for the most recent error that happened when trying
    /// to deliver an update via webhook
    pub last_error_message: Option<String>,
    /// Unix time of the most recent error that happened when trying to synchronize available
    /// updates with Telegram datacenters
    pub last_synchronization_error_date: Option<i64>,
    /// The maximum allowed number of simultaneous HTTPS connections to the webhook for update
    /// delivery
    pub max_connections: Option<i64>,
    /// A list of update types the bot is subscribed to. Defaults to all update types except
    /// chat_member
    pub allowed_updates: Option<Vec<String>>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents a Telegram user or bot.
pub struct User {
    /// Unique identifier for this user or bot. This number may have more than 32 significant bits
    /// and some programming languages may have difficulty/silent defects in interpreting it. But
    /// it has at most 52 significant bits, so a 64-bit integer or double-precision float type are
    /// safe for storing this identifier.
    pub id: i64,
    /// True, if this user is a bot
    pub is_bot: bool,
    /// User's or bot's first name
    pub first_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// User's or bot's last name
    pub last_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// User's or bot's username
    pub username: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// IETF language tag of the user's language
    pub language_code: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if this user is a Telegram Premium user
    pub is_premium: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if this user added the bot to the attachment menu
    pub added_to_attachment_menu: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the bot can be invited to groups. Returned only in getMe.
    pub can_join_groups: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if privacy mode is disabled for the bot. Returned only in getMe.
    pub can_read_all_group_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the bot supports inline queries. Returned only in getMe.
    pub supports_inline_queries: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a chat.
pub struct Chat {
    /// Unique identifier for this chat. This number may have more than 32 significant bits and
    /// some programming languages may have difficulty/silent defects in interpreting it. But it
    /// has at most 52 significant bits, so a signed 64-bit integer or double-precision float type
    /// are safe for storing this identifier.
    pub id: i64,
    #[serde(rename = "type")]
    /// Type of chat, can be either “private”, “group”, “supergroup” or “channel”
    pub type_: String,
    /// Title, for supergroups, channels and group chats
    pub title: Option<String>,
    /// Username, for private chats, supergroups and channels if available
    pub username: Option<String>,
    /// First name of the other party in a private chat
    pub first_name: Option<String>,
    /// Last name of the other party in a private chat
    pub last_name: Option<String>,
    /// True, if the supergroup chat is a forum (has topics enabled)
    pub is_forum: Option<bool>,
    /// Chat photo. Returned only in getChat.
    pub photo: Option<ChatPhoto>,
    /// If non-empty, the list of all active chat usernames; for private chats, supergroups and
    /// channels. Returned only in getChat.
    pub active_usernames: Option<Vec<String>>,
    /// Custom emoji identifier of emoji status of the other party in a private chat. Returned only
    /// in getChat.
    pub emoji_status_custom_emoji_id: Option<String>,
    /// Bio of the other party in a private chat. Returned only in getChat.
    pub bio: Option<String>,
    /// True, if privacy settings of the other party in the private chat allows to use
    /// tg://user?id=<user_id> links only in chats with the user. Returned only in getChat.
    pub has_private_forwards: Option<bool>,
    /// True, if the privacy settings of the other party restrict sending voice and video note
    /// messages in the private chat. Returned only in getChat.
    pub has_restricted_voice_and_video_messages: Option<bool>,
    /// True, if users need to join the supergroup before they can send messages. Returned only in
    /// getChat.
    pub join_to_send_messages: Option<bool>,
    /// True, if all users directly joining the supergroup need to be approved by supergroup
    /// administrators. Returned only in getChat.
    pub join_by_request: Option<bool>,
    /// Description, for groups, supergroups and channel chats. Returned only in getChat.
    pub description: Option<String>,
    /// Primary invite link, for groups, supergroups and channel chats. Returned only in getChat.
    pub invite_link: Option<String>,
    /// The most recent pinned message (by sending date). Returned only in getChat.
    pub pinned_message: Option<Box<Message>>,
    /// Default chat member permissions, for groups and supergroups. Returned only in getChat.
    pub permissions: Option<ChatPermissions>,
    /// For supergroups, the minimum allowed delay between consecutive messages sent by each
    /// unpriviledged user; in seconds. Returned only in getChat.
    pub slow_mode_delay: Option<i64>,
    /// The time after which all messages sent to the chat will be automatically deleted; in
    /// seconds. Returned only in getChat.
    pub message_auto_delete_time: Option<i64>,
    /// True, if aggressive anti-spam checks are enabled in the supergroup. The field is only
    /// available to chat administrators. Returned only in getChat.
    pub has_aggressive_anti_spam_enabled: Option<bool>,
    /// True, if non-administrators can only get the list of bots and administrators in the chat.
    /// Returned only in getChat.
    pub has_hidden_members: Option<bool>,
    /// True, if messages from the chat can't be forwarded to other chats. Returned only in
    /// getChat.
    pub has_protected_content: Option<bool>,
    /// For supergroups, name of group sticker set. Returned only in getChat.
    pub sticker_set_name: Option<String>,
    /// True, if the bot can change the group sticker set. Returned only in getChat.
    pub can_set_sticker_set: Option<bool>,
    /// Unique identifier for the linked chat, i.e. the discussion group identifier for a channel
    /// and vice versa; for supergroups and channel chats. This identifier may be greater than 32
    /// bits and some programming languages may have difficulty/silent defects in interpreting it.
    /// But it is smaller than 52 bits, so a signed 64 bit integer or double-precision float type
    /// are safe for storing this identifier. Returned only in getChat.
    pub linked_chat_id: Option<i64>,
    /// For supergroups, the location to which the supergroup is connected. Returned only in
    /// getChat.
    pub location: Option<ChatLocation>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a message.
pub struct Message {
    /// Unique message identifier inside this chat
    pub message_id: i64,
    /// Unique identifier of a message thread to which the message belongs; for supergroups only
    pub message_thread_id: Option<i64>,
    /// Sender of the message; empty for messages sent to channels. For backward compatibility, the
    /// field contains a fake sender user in non-channel chats, if the message was sent on behalf
    /// of a chat.
    pub from: Option<User>,
    /// Sender of the message, sent on behalf of a chat. For example, the channel itself for
    /// channel posts, the supergroup itself for messages from anonymous group administrators, the
    /// linked channel for messages automatically forwarded to the discussion group. For backward
    /// compatibility, the field from contains a fake sender user in non-channel chats, if the
    /// message was sent on behalf of a chat.
    pub sender_chat: Option<Chat>,
    /// Date the message was sent in Unix time
    pub date: i64,
    /// Conversation the message belongs to
    pub chat: Chat,
    /// For forwarded messages, sender of the original message
    pub forward_from: Option<User>,
    /// For messages forwarded from channels or from anonymous administrators, information about
    /// the original sender chat
    pub forward_from_chat: Option<Chat>,
    /// For messages forwarded from channels, identifier of the original message in the channel
    pub forward_from_message_id: Option<i64>,
    /// For forwarded messages that were originally sent in channels or by an anonymous chat
    /// administrator, signature of the message sender if present
    pub forward_signature: Option<String>,
    /// Sender's name for messages forwarded from users who disallow adding a link to their account
    /// in forwarded messages
    pub forward_sender_name: Option<String>,
    /// For forwarded messages, date the original message was sent in Unix time
    pub forward_date: Option<i64>,
    /// True, if the message is sent to a forum topic
    pub is_topic_message: Option<bool>,
    /// True, if the message is a channel post that was automatically forwarded to the connected
    /// discussion group
    pub is_automatic_forward: Option<bool>,
    /// For replies, the original message. Note that the Message object in this field will not
    /// contain further reply_to_message fields even if it itself is a reply.
    pub reply_to_message: Option<Box<Message>>,
    /// Bot through which the message was sent
    pub via_bot: Option<User>,
    /// Date the message was last edited in Unix time
    pub edit_date: Option<i64>,
    /// True, if the message can't be forwarded
    pub has_protected_content: Option<bool>,
    /// The unique identifier of a media message group this message belongs to
    pub media_group_id: Option<String>,
    /// Signature of the post author for messages in channels, or the custom title of an anonymous
    /// group administrator
    pub author_signature: Option<String>,
    /// For text messages, the actual UTF-8 text of the message
    pub text: Option<String>,
    /// For text messages, special entities like usernames, URLs, bot commands, etc. that appear in
    /// the text
    pub entities: Option<Vec<MessageEntity>>,
    /// Message is an animation, information about the animation. For backward compatibility, when
    /// this field is set, the document field will also be set
    pub animation: Option<Animation>,
    /// Message is an audio file, information about the file
    pub audio: Option<Audio>,
    /// Message is a general file, information about the file
    pub document: Option<Document>,
    /// Message is a photo, available sizes of the photo
    pub photo: Option<Vec<PhotoSize>>,
    /// Message is a sticker, information about the sticker
    pub sticker: Option<Sticker>,
    /// Message is a video, information about the video
    pub video: Option<Video>,
    /// Message is a video note, information about the video message
    pub video_note: Option<VideoNote>,
    /// Message is a voice message, information about the file
    pub voice: Option<Voice>,
    /// Caption for the animation, audio, document, photo, video or voice
    pub caption: Option<String>,
    /// For messages with a caption, special entities like usernames, URLs, bot commands, etc. that
    /// appear in the caption
    pub caption_entities: Option<Vec<MessageEntity>>,
    /// True, if the message media is covered by a spoiler animation
    pub has_media_spoiler: Option<bool>,
    /// Message is a shared contact, information about the contact
    pub contact: Option<Contact>,
    /// Message is a dice with random value
    pub dice: Option<Dice>,
    /// Message is a game, information about the game. More about games »
    pub game: Option<Game>,
    /// Message is a native poll, information about the poll
    pub poll: Option<Poll>,
    /// Message is a venue, information about the venue. For backward compatibility, when this
    /// field is set, the location field will also be set
    pub venue: Option<Venue>,
    /// Message is a shared location, information about the location
    pub location: Option<Location>,
    /// New members that were added to the group or supergroup and information about them (the bot
    /// itself may be one of these members)
    pub new_chat_members: Option<Vec<User>>,
    /// A member was removed from the group, information about them (this member may be the bot
    /// itself)
    pub left_chat_member: Option<User>,
    /// A chat title was changed to this value
    pub new_chat_title: Option<String>,
    /// A chat photo was change to this value
    pub new_chat_photo: Option<Vec<PhotoSize>>,
    /// Service message: the chat photo was deleted
    pub delete_chat_photo: Option<bool>,
    /// Service message: the group has been created
    pub group_chat_created: Option<bool>,
    /// Service message: the supergroup has been created. This field can't be received in a message
    /// coming through updates, because bot can't be a member of a supergroup when it is created.
    /// It can only be found in reply_to_message if someone replies to a very first message in a
    /// directly created supergroup.
    pub supergroup_chat_created: Option<bool>,
    /// Service message: the channel has been created. This field can't be received in a message
    /// coming through updates, because bot can't be a member of a channel when it is created. It
    /// can only be found in reply_to_message if someone replies to a very first message in a
    /// channel.
    pub channel_chat_created: Option<bool>,
    /// Service message: auto-delete timer settings changed in the chat
    pub message_auto_delete_timer_changed: Option<MessageAutoDeleteTimerChanged>,
    /// The group has been migrated to a supergroup with the specified identifier. This number may
    /// have more than 32 significant bits and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this identifier.
    pub migrate_to_chat_id: Option<i64>,
    /// The supergroup has been migrated from a group with the specified identifier. This number
    /// may have more than 32 significant bits and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this identifier.
    pub migrate_from_chat_id: Option<i64>,
    /// Specified message was pinned. Note that the Message object in this field will not contain
    /// further reply_to_message fields even if it is itself a reply.
    pub pinned_message: Option<Box<Message>>,
    /// Message is an invoice for a payment, information about the invoice. More about payments »
    pub invoice: Option<Invoice>,
    /// Message is a service message about a successful payment, information about the payment.
    /// More about payments »
    pub successful_payment: Option<SuccessfulPayment>,
    /// Service message: a user was shared with the bot
    pub user_shared: Option<UserShared>,
    /// Service message: a chat was shared with the bot
    pub chat_shared: Option<ChatShared>,
    /// The domain name of the website on which the user has logged in. More about Telegram Login »
    pub connected_website: Option<String>,
    /// Service message: the user allowed the bot added to the attachment menu to write messages
    pub write_access_allowed: Option<WriteAccessAllowed>,
    /// Telegram Passport data
    pub passport_data: Option<PassportData>,
    /// Service message. A user in the chat triggered another user's proximity alert while sharing
    /// Live Location.
    pub proximity_alert_triggered: Option<ProximityAlertTriggered>,
    /// Service message: forum topic created
    pub forum_topic_created: Option<ForumTopicCreated>,
    /// Service message: forum topic edited
    pub forum_topic_edited: Option<ForumTopicEdited>,
    /// Service message: forum topic closed
    pub forum_topic_closed: Option<ForumTopicClosed>,
    /// Service message: forum topic reopened
    pub forum_topic_reopened: Option<ForumTopicReopened>,
    /// Service message: the 'General' forum topic hidden
    pub general_forum_topic_hidden: Option<GeneralForumTopicHidden>,
    /// Service message: the 'General' forum topic unhidden
    pub general_forum_topic_unhidden: Option<GeneralForumTopicUnhidden>,
    /// Service message: video chat scheduled
    pub video_chat_scheduled: Option<VideoChatScheduled>,
    /// Service message: video chat started
    pub video_chat_started: Option<VideoChatStarted>,
    /// Service message: video chat ended
    pub video_chat_ended: Option<VideoChatEnded>,
    /// Service message: new participants invited to a video chat
    pub video_chat_participants_invited: Option<VideoChatParticipantsInvited>,
    /// Service message: data sent by a Web App
    pub web_app_data: Option<WebAppData>,
    /// Inline keyboard attached to the message. login_url buttons are represented as ordinary url
    /// buttons.
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a unique message identifier.
pub struct MessageId {
    /// Unique message identifier
    pub message_id: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents one special entity in a text message. For example, hashtags, usernames,
/// URLs, etc.
pub struct MessageEntity {
    #[serde(rename = "type")]
    /// Type of the entity. Currently, can be “mention” (@username), “hashtag” (#hashtag),
    /// “cashtag” ($USD), “bot_command” (/start@jobs_bot), “url” (https://telegram.org), “email”
    /// (do-not-reply@telegram.org), “phone_number” (+1-212-555-0123), “bold” (bold text), “italic”
    /// (italic text), “underline” (underlined text), “strikethrough” (strikethrough text),
    /// “spoiler” (spoiler message), “code” (monowidth string), “pre” (monowidth block),
    /// “text_link” (for clickable text URLs), “text_mention” (for users without usernames),
    /// “custom_emoji” (for inline custom emoji stickers)
    pub type_: String,
    /// Offset in UTF-16 code units to the start of the entity
    pub offset: i64,
    /// Length of the entity in UTF-16 code units
    pub length: i64,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For “text_link” only, URL that will be opened after user taps on the text
    pub url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For “text_mention” only, the mentioned user
    pub user: Option<User>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For “pre” only, the programming language of the entity text
    pub language: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For “custom_emoji” only, unique identifier of the custom emoji. Use getCustomEmojiStickers
    /// to get full information about the sticker
    pub custom_emoji_id: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents one size of a photo or a file / sticker thumbnail.
pub struct PhotoSize {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Photo width
    pub width: i64,
    /// Photo height
    pub height: i64,
    /// File size in bytes
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an animation file (GIF or H.264/MPEG-4 AVC video without sound).
pub struct Animation {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Video width as defined by sender
    pub width: i64,
    /// Video height as defined by sender
    pub height: i64,
    /// Duration of the video in seconds as defined by sender
    pub duration: i64,
    /// Animation thumbnail as defined by sender
    pub thumb: Option<PhotoSize>,
    /// Original animation filename as defined by sender
    pub file_name: Option<String>,
    /// MIME type of the file as defined by sender
    pub mime_type: Option<String>,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an audio file to be treated as music by the Telegram clients.
pub struct Audio {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Duration of the audio in seconds as defined by sender
    pub duration: i64,
    /// Performer of the audio as defined by sender or by audio tags
    pub performer: Option<String>,
    /// Title of the audio as defined by sender or by audio tags
    pub title: Option<String>,
    /// Original filename as defined by sender
    pub file_name: Option<String>,
    /// MIME type of the file as defined by sender
    pub mime_type: Option<String>,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
    /// Thumbnail of the album cover to which the music file belongs
    pub thumb: Option<PhotoSize>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a general file (as opposed to photos, voice messages and audio files).
pub struct Document {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Document thumbnail as defined by sender
    pub thumb: Option<PhotoSize>,
    /// Original filename as defined by sender
    pub file_name: Option<String>,
    /// MIME type of the file as defined by sender
    pub mime_type: Option<String>,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a video file.
pub struct Video {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Video width as defined by sender
    pub width: i64,
    /// Video height as defined by sender
    pub height: i64,
    /// Duration of the video in seconds as defined by sender
    pub duration: i64,
    /// Video thumbnail
    pub thumb: Option<PhotoSize>,
    /// Original filename as defined by sender
    pub file_name: Option<String>,
    /// MIME type of the file as defined by sender
    pub mime_type: Option<String>,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a video message (available in Telegram apps as of v.4.0).
pub struct VideoNote {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Video width and height (diameter of the video message) as defined by sender
    pub length: i64,
    /// Duration of the video in seconds as defined by sender
    pub duration: i64,
    /// Video thumbnail
    pub thumb: Option<PhotoSize>,
    /// File size in bytes
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a voice note.
pub struct Voice {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// Duration of the audio in seconds as defined by sender
    pub duration: i64,
    /// MIME type of the file as defined by sender
    pub mime_type: Option<String>,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a phone contact.
pub struct Contact {
    /// Contact's phone number
    pub phone_number: String,
    /// Contact's first name
    pub first_name: String,
    /// Contact's last name
    pub last_name: Option<String>,
    /// Contact's user identifier in Telegram. This number may have more than 32 significant bits
    /// and some programming languages may have difficulty/silent defects in interpreting it. But
    /// it has at most 52 significant bits, so a 64-bit integer or double-precision float type are
    /// safe for storing this identifier.
    pub user_id: Option<i64>,
    /// Additional data about the contact in the form of a vCard
    pub vcard: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an animated emoji that displays a random value.
pub struct Dice {
    /// Emoji on which the dice throw animation is based
    pub emoji: String,
    /// Value of the dice, 1-6 for “”, “” and “” base emoji, 1-5 for “” and “” base emoji, 1-64 for
    /// “” base emoji
    pub value: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about one answer option in a poll.
pub struct PollOption {
    /// Option text, 1-100 characters
    pub text: String,
    /// Number of users that voted for this option
    pub voter_count: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an answer of a user in a non-anonymous poll.
pub struct PollAnswer {
    /// Unique poll identifier
    pub poll_id: String,
    /// The user, who changed the answer to the poll
    pub user: User,
    /// 0-based identifiers of answer options, chosen by the user. May be empty if the user
    /// retracted their vote.
    pub option_ids: Vec<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about a poll.
pub struct Poll {
    /// Unique poll identifier
    pub id: String,
    /// Poll question, 1-300 characters
    pub question: String,
    /// List of poll options
    pub options: Vec<PollOption>,
    /// Total number of users that voted in the poll
    pub total_voter_count: i64,
    /// True, if the poll is closed
    pub is_closed: bool,
    /// True, if the poll is anonymous
    pub is_anonymous: bool,
    #[serde(rename = "type")]
    /// Poll type, currently can be “regular” or “quiz”
    pub type_: String,
    /// True, if the poll allows multiple answers
    pub allows_multiple_answers: bool,
    /// 0-based identifier of the correct answer option. Available only for polls in the quiz mode,
    /// which are closed, or was sent (not forwarded) by the bot or to the private chat with the
    /// bot.
    pub correct_option_id: Option<i64>,
    /// 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
    pub explanation: Option<String>,
    /// Special entities like usernames, URLs, bot commands, etc. that appear in the explanation
    pub explanation_entities: Option<Vec<MessageEntity>>,
    /// Amount of time in seconds the poll will be active after creation
    pub open_period: Option<i64>,
    /// Point in time (Unix timestamp) when the poll will be automatically closed
    pub close_date: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a point on the map.
pub struct Location {
    /// Longitude as defined by sender
    pub longitude: f64,
    /// Latitude as defined by sender
    pub latitude: f64,
    /// The radius of uncertainty for the location, measured in meters; 0-1500
    pub horizontal_accuracy: Option<f64>,
    /// Time relative to the message sending date, during which the location can be updated; in
    /// seconds. For active live locations only.
    pub live_period: Option<i64>,
    /// The direction in which user is moving, in degrees; 1-360. For active live locations only.
    pub heading: Option<i64>,
    /// The maximum distance for proximity alerts about approaching another chat member, in meters.
    /// For sent live locations only.
    pub proximity_alert_radius: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a venue.
pub struct Venue {
    /// Venue location. Can't be a live location
    pub location: Location,
    /// Name of the venue
    pub title: String,
    /// Address of the venue
    pub address: String,
    /// Foursquare identifier of the venue
    pub foursquare_id: Option<String>,
    /// Foursquare type of the venue. (For example, “arts_entertainment/default”,
    /// “arts_entertainment/aquarium” or “food/icecream”.)
    pub foursquare_type: Option<String>,
    /// Google Places identifier of the venue
    pub google_place_id: Option<String>,
    /// Google Places type of the venue. (See supported types.)
    pub google_place_type: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// Describes data sent from a Web App to the bot.
pub struct WebAppData {
    /// The data. Be aware that a bad client can send arbitrary data in this field.
    pub data: String,
    /// Text of the web_app keyboard button from which the Web App was opened. Be aware that a bad
    /// client can send arbitrary data in this field.
    pub button_text: String,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents the content of a service message, sent whenever a user in the chat
/// triggers a proximity alert set by another user.
pub struct ProximityAlertTriggered {
    /// User that triggered the alert
    pub traveler: User,
    /// User that set the alert
    pub watcher: User,
    /// The distance between the users
    pub distance: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a change in auto-delete timer settings.
pub struct MessageAutoDeleteTimerChanged {
    /// New auto-delete time for messages in the chat; in seconds
    pub message_auto_delete_time: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a new forum topic created in the chat.
pub struct ForumTopicCreated {
    /// Name of the topic
    pub name: String,
    /// Color of the topic icon in RGB format
    pub icon_color: i64,
    /// Unique identifier of the custom emoji shown as the topic icon
    pub icon_custom_emoji_id: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a forum topic closed in the chat. Currently
/// holds no information.
pub struct ForumTopicClosed {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about an edited forum topic.
pub struct ForumTopicEdited {
    /// New name of the topic, if it was edited
    pub name: Option<String>,
    /// New identifier of the custom emoji shown as the topic icon, if it was edited; an empty
    /// string if the icon was removed
    pub icon_custom_emoji_id: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a forum topic reopened in the chat. Currently
/// holds no information.
pub struct ForumTopicReopened {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about General forum topic hidden in the chat.
/// Currently holds no information.
pub struct GeneralForumTopicHidden {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about General forum topic unhidden in the chat.
/// Currently holds no information.
pub struct GeneralForumTopicUnhidden {
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about the user whose identifier was shared with the bot using
/// a KeyboardButtonRequestUser button.
pub struct UserShared {
    /// Identifier of the request
    pub request_id: i64,
    /// Identifier of the shared user. This number may have more than 32 significant bits and some
    /// programming languages may have difficulty/silent defects in interpreting it. But it has at
    /// most 52 significant bits, so a 64-bit integer or double-precision float type are safe for
    /// storing this identifier. The bot may not have access to the user and could be unable to use
    /// this identifier, unless the user is already known to the bot by some other means.
    pub user_id: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about the chat whose identifier was shared with the bot using
/// a KeyboardButtonRequestChat button.
pub struct ChatShared {
    /// Identifier of the request
    pub request_id: i64,
    /// Identifier of the shared chat. This number may have more than 32 significant bits and some
    /// programming languages may have difficulty/silent defects in interpreting it. But it has at
    /// most 52 significant bits, so a 64-bit integer or double-precision float type are safe for
    /// storing this identifier. The bot may not have access to the chat and could be unable to use
    /// this identifier, unless the chat is already known to the bot by some other means.
    pub chat_id: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a user allowing a bot added to the attachment
/// menu to write messages. Currently holds no information.
pub struct WriteAccessAllowed {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a video chat scheduled in the chat.
pub struct VideoChatScheduled {
    /// Point in time (Unix timestamp) when the video chat is supposed to be started by a chat
    /// administrator
    pub start_date: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a video chat started in the chat. Currently
/// holds no information.
pub struct VideoChatStarted {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about a video chat ended in the chat.
pub struct VideoChatEnded {
    /// Video chat duration in seconds
    pub duration: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a service message about new members invited to a video chat.
pub struct VideoChatParticipantsInvited {
    /// New members that were invited to the video chat
    pub users: Vec<User>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represent a user's profile pictures.
pub struct UserProfilePhotos {
    /// Total number of profile pictures the target user has
    pub total_count: i64,
    /// Requested profile pictures (in up to 4 sizes each)
    pub photos: Vec<Vec<PhotoSize>>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a file ready to be downloaded. The file can be downloaded via the link
/// https://api.telegram.org/file/bot<token>/<file_path>. It is guaranteed that the link will be
/// valid for at least 1 hour. When the link expires, a new one can be requested by calling
/// getFile.
pub struct File {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// File size in bytes. It can be bigger than 2^31 and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this value.
    pub file_size: Option<i64>,
    /// File path. Use https://api.telegram.org/file/bot<token>/<file_path> to get the file.
    pub file_path: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Describes a Web App.
pub struct WebAppInfo {
    /// An HTTPS URL of a Web App to be opened with additional data as specified in Initializing
    /// Web Apps
    pub url: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents a custom keyboard with reply options (see Introduction to bots for
/// details and examples).
pub struct ReplyKeyboardMarkup {
    /// Array of button rows, each represented by an Array of KeyboardButton objects
    pub keyboard: Vec<Vec<KeyboardButton>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Requests clients to always show the keyboard when the regular keyboard is hidden. Defaults
    /// to false, in which case the custom keyboard can be hidden and opened with a keyboard icon.
    pub is_persistent: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard
    /// smaller if there are just two rows of buttons). Defaults to false, in which case the custom
    /// keyboard is always of the same height as the app's standard keyboard.
    pub resize_keyboard: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Requests clients to hide the keyboard as soon as it's been used. The keyboard will still be
    /// available, but clients will automatically display the usual letter-keyboard in the chat -
    /// the user can press a special button in the input field to see the custom keyboard again.
    /// Defaults to false.
    pub one_time_keyboard: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// The placeholder to be shown in the input field when the keyboard is active; 1-64 characters
    pub input_field_placeholder: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Use this parameter if you want to show the keyboard to specific users only. Targets: 1)
    /// users that are @mentioned in the text of the Message object; 2) if the bot's message is a
    /// reply (has reply_to_message_id), sender of the original message.Example: A user requests to
    /// change the bot's language, bot replies to the request with a keyboard to select the new
    /// language. Other users in the group don't see the keyboard.
    pub selective: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents one button of the reply keyboard. For simple text buttons, String can be
/// used instead of this object to specify the button text. The optional fields web_app,
/// request_user, request_chat, request_contact, request_location, and request_poll are mutually
/// exclusive.
pub struct KeyboardButton {
    /// Text of the button. If none of the optional fields are used, it will be sent as a message
    /// when the button is pressed
    pub text: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If specified, pressing the button will open a list of suitable users. Tapping on any user
    /// will send their identifier to the bot in a “user_shared” service message. Available in
    /// private chats only.
    pub request_user: Option<KeyboardButtonRequestUser>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If specified, pressing the button will open a list of suitable chats. Tapping on a chat
    /// will send its identifier to the bot in a “chat_shared” service message. Available in
    /// private chats only.
    pub request_chat: Option<KeyboardButtonRequestChat>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If True, the user's phone number will be sent as a contact when the button is pressed.
    /// Available in private chats only.
    pub request_contact: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If True, the user's current location will be sent when the button is pressed. Available in
    /// private chats only.
    pub request_location: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If specified, the user will be asked to create a poll and send it to the bot when the
    /// button is pressed. Available in private chats only.
    pub request_poll: Option<KeyboardButtonPollType>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If specified, the described Web App will be launched when the button is pressed. The Web
    /// App will be able to send a “web_app_data” service message. Available in private chats only.
    pub web_app: Option<WebAppInfo>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object defines the criteria used to request a suitable user. The identifier of the
/// selected user will be shared with the bot when the corresponding button is pressed.
pub struct KeyboardButtonRequestUser {
    /// Signed 32-bit identifier of the request, which will be received back in the UserShared
    /// object. Must be unique within the message
    pub request_id: i64,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a bot, pass False to request a regular user. If not specified, no
    /// additional restrictions are applied.
    pub user_is_bot: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a premium user, pass False to request a non-premium user. If not
    /// specified, no additional restrictions are applied.
    pub user_is_premium: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object defines the criteria used to request a suitable chat. The identifier of the
/// selected chat will be shared with the bot when the corresponding button is pressed.
pub struct KeyboardButtonRequestChat {
    /// Signed 32-bit identifier of the request, which will be received back in the ChatShared
    /// object. Must be unique within the message
    pub request_id: i64,
    /// Pass True to request a channel chat, pass False to request a group or a supergroup chat.
    pub chat_is_channel: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a forum supergroup, pass False to request a non-forum chat. If not
    /// specified, no additional restrictions are applied.
    pub chat_is_forum: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a supergroup or a channel with a username, pass False to request a
    /// chat without a username. If not specified, no additional restrictions are applied.
    pub chat_has_username: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a chat owned by the user. Otherwise, no additional restrictions are
    /// applied.
    pub chat_is_created: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// A JSON-serialized object listing the required administrator rights of the user in the chat.
    /// The rights must be a superset of bot_administrator_rights. If not specified, no additional
    /// restrictions are applied.
    pub user_administrator_rights: Option<ChatAdministratorRights>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// A JSON-serialized object listing the required administrator rights of the bot in the chat.
    /// The rights must be a subset of user_administrator_rights. If not specified, no additional
    /// restrictions are applied.
    pub bot_administrator_rights: Option<ChatAdministratorRights>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request a chat with the bot as a member. Otherwise, no additional restrictions
    /// are applied.
    pub bot_is_member: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents type of a poll, which is allowed to be created and sent when the
/// corresponding button is pressed.
pub struct KeyboardButtonPollType {
    #[serde(rename = "type")]
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If quiz is passed, the user will be allowed to create only polls in the quiz mode. If
    /// regular is passed, only regular polls will be allowed. Otherwise, the user will be allowed
    /// to create a poll of any type.
    pub type_: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Upon receiving a message with this object, Telegram clients will remove the current custom
/// keyboard and display the default letter-keyboard. By default, custom keyboards are displayed
/// until a new keyboard is sent by a bot. An exception is made for one-time keyboards that are
/// hidden immediately after the user presses a button (see ReplyKeyboardMarkup).
pub struct ReplyKeyboardRemove {
    /// Requests clients to remove the custom keyboard (user will not be able to summon this
    /// keyboard; if you want to hide the keyboard from sight but keep it accessible, use
    /// one_time_keyboard in ReplyKeyboardMarkup)
    pub remove_keyboard: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Use this parameter if you want to remove the keyboard for specific users only. Targets: 1)
    /// users that are @mentioned in the text of the Message object; 2) if the bot's message is a
    /// reply (has reply_to_message_id), sender of the original message.Example: A user votes in a
    /// poll, bot returns confirmation message in reply to the vote and removes the keyboard for
    /// that user, while still showing the keyboard with poll options to users who haven't voted
    /// yet.
    pub selective: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents an inline keyboard that appears right next to the message it belongs to.
pub struct InlineKeyboardMarkup {
    /// Array of button rows, each represented by an Array of InlineKeyboardButton objects
    pub inline_keyboard: Vec<Vec<InlineKeyboardButton>>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents one button of an inline keyboard. You must use exactly one of the
/// optional fields.
pub struct InlineKeyboardButton {
    /// Label text on the button
    pub text: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// HTTP or tg:// URL to be opened when the button is pressed. Links tg://user?id=<user_id> can
    /// be used to mention a user by their ID without using a username, if this is allowed by their
    /// privacy settings.
    pub url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Data to be sent in a callback query to the bot when button is pressed, 1-64 bytes
    pub callback_data: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Description of the Web App that will be launched when the user presses the button. The Web
    /// App will be able to send an arbitrary message on behalf of the user using the method
    /// answerWebAppQuery. Available only in private chats between a user and the bot.
    pub web_app: Option<WebAppInfo>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// An HTTPS URL used to automatically authorize the user. Can be used as a replacement for the
    /// Telegram Login Widget.
    pub login_url: Option<LoginUrl>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If set, pressing the button will prompt the user to select one of their chats, open that
    /// chat and insert the bot's username and the specified inline query in the input field. May
    /// be empty, in which case just the bot's username will be inserted.Note: This offers an easy
    /// way for users to start using your bot in inline mode when they are currently in a private
    /// chat with it. Especially useful when combined with switch_pm… actions - in this case the
    /// user will be automatically returned to the chat they switched from, skipping the chat
    /// selection screen.
    pub switch_inline_query: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// If set, pressing the button will insert the bot's username and the specified inline query
    /// in the current chat's input field. May be empty, in which case only the bot's username will
    /// be inserted.This offers a quick way for the user to open your bot in inline mode in the
    /// same chat - good for selecting something from multiple options.
    pub switch_inline_query_current_chat: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Description of the game that will be launched when the user presses the button.NOTE: This
    /// type of button must always be the first button in the first row.
    pub callback_game: Option<CallbackGame>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Specify True, to send a Pay button.NOTE: This type of button must always be the first
    /// button in the first row and can only be used in invoice messages.
    pub pay: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents a parameter of the inline keyboard button used to automatically
/// authorize a user. Serves as a great replacement for the Telegram Login Widget when the user is
/// coming from Telegram. All the user needs to do is tap/click a button and confirm that they want
/// to log in: Telegram apps support these buttons as of version 5.7.
pub struct LoginUrl {
    /// An HTTPS URL to be opened with user authorization data added to the query string when the
    /// button is pressed. If the user refuses to provide authorization data, the original URL
    /// without information about the user will be opened. The data added is the same as described
    /// in Receiving authorization data.NOTE: You must always check the hash of the received data
    /// to verify the authentication and the integrity of the data as described in Checking
    /// authorization.
    pub url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// New text of the button in forwarded messages.
    pub forward_text: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Username of a bot, which will be used for user authorization. See Setting up a bot for more
    /// details. If not specified, the current bot's username will be assumed. The url's domain
    /// must be the same as the domain linked with the bot. See Linking your domain to the bot for
    /// more details.
    pub bot_username: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True to request the permission for your bot to send messages to the user.
    pub request_write_access: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an incoming callback query from a callback button in an inline keyboard.
/// If the button that originated the query was attached to a message sent by the bot, the field
/// message will be present. If the button was attached to a message sent via the bot (in inline
/// mode), the field inline_message_id will be present. Exactly one of the fields data or
/// game_short_name will be present.
pub struct CallbackQuery {
    /// Unique identifier for this query
    pub id: String,
    /// Sender
    pub from: User,
    /// Message with the callback button that originated the query. Note that message content and
    /// message date will not be available if the message is too old
    pub message: Option<Box<Message>>,
    /// Identifier of the message sent via the bot in inline mode, that originated the query.
    pub inline_message_id: Option<String>,
    /// Global identifier, uniquely corresponding to the chat to which the message with the
    /// callback button was sent. Useful for high scores in games.
    pub chat_instance: String,
    /// Data associated with the callback button. Be aware that the message originated the query
    /// can contain no callback buttons with this data.
    pub data: Option<String>,
    /// Short name of a Game to be returned, serves as the unique identifier for the game
    pub game_short_name: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Upon receiving a message with this object, Telegram clients will display a reply interface to
/// the user (act as if the user has selected the bot's message and tapped 'Reply'). This can be
/// extremely useful if you want to create user-friendly step-by-step interfaces without having to
/// sacrifice privacy mode.
pub struct ForceReply {
    /// Shows reply interface to the user, as if they manually selected the bot's message and
    /// tapped 'Reply'
    pub force_reply: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// The placeholder to be shown in the input field when the reply is active; 1-64 characters
    pub input_field_placeholder: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Use this parameter if you want to force reply from specific users only. Targets: 1) users
    /// that are @mentioned in the text of the Message object; 2) if the bot's message is a reply
    /// (has reply_to_message_id), sender of the original message.
    pub selective: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a chat photo.
pub struct ChatPhoto {
    /// File identifier of small (160x160) chat photo. This file_id can be used only for photo
    /// download and only for as long as the photo is not changed.
    pub small_file_id: String,
    /// Unique file identifier of small (160x160) chat photo, which is supposed to be the same over
    /// time and for different bots. Can't be used to download or reuse the file.
    pub small_file_unique_id: String,
    /// File identifier of big (640x640) chat photo. This file_id can be used only for photo
    /// download and only for as long as the photo is not changed.
    pub big_file_id: String,
    /// Unique file identifier of big (640x640) chat photo, which is supposed to be the same over
    /// time and for different bots. Can't be used to download or reuse the file.
    pub big_file_unique_id: String,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents an invite link for a chat.
pub struct ChatInviteLink {
    /// The invite link. If the link was created by another chat administrator, then the second
    /// part of the link will be replaced with “…”.
    pub invite_link: String,
    /// Creator of the link
    pub creator: User,
    /// True, if users joining the chat via the link need to be approved by chat administrators
    pub creates_join_request: bool,
    /// True, if the link is primary
    pub is_primary: bool,
    /// True, if the link is revoked
    pub is_revoked: bool,
    /// Invite link name
    pub name: Option<String>,
    /// Point in time (Unix timestamp) when the link will expire or has been expired
    pub expire_date: Option<i64>,
    /// The maximum number of users that can be members of the chat simultaneously after joining
    /// the chat via this invite link; 1-99999
    pub member_limit: Option<i64>,
    /// Number of pending join requests created using this link
    pub pending_join_request_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the rights of an administrator in a chat.
pub struct ChatAdministratorRights {
    /// True, if the user's presence in the chat is hidden
    pub is_anonymous: bool,
    /// True, if the administrator can access the chat event log, chat statistics, message
    /// statistics in channels, see channel members, see anonymous administrators in supergroups
    /// and ignore slow mode. Implied by any other administrator privilege
    pub can_manage_chat: bool,
    /// True, if the administrator can delete messages of other users
    pub can_delete_messages: bool,
    /// True, if the administrator can manage video chats
    pub can_manage_video_chats: bool,
    /// True, if the administrator can restrict, ban or unban chat members
    pub can_restrict_members: bool,
    /// True, if the administrator can add new administrators with a subset of their own privileges
    /// or demote administrators that they have promoted, directly or indirectly (promoted by
    /// administrators that were appointed by the user)
    pub can_promote_members: bool,
    /// True, if the user is allowed to change the chat title, photo and other settings
    pub can_change_info: bool,
    /// True, if the user is allowed to invite new users to the chat
    pub can_invite_users: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the administrator can post in the channel; channels only
    pub can_post_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the administrator can edit messages of other users and can pin messages; channels
    /// only
    pub can_edit_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to pin messages; groups and supergroups only
    pub can_pin_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to create, rename, close, and reopen forum topics; supergroups
    /// only
    pub can_manage_topics: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that owns the chat and has all administrator privileges.
pub struct ChatMemberOwner {
    /// The member's status in the chat, always “creator”
    pub status: String,
    /// Information about the user
    pub user: User,
    /// True, if the user's presence in the chat is hidden
    pub is_anonymous: bool,
    /// Custom title for this user
    pub custom_title: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that has some additional privileges.
pub struct ChatMemberAdministrator {
    /// The member's status in the chat, always “administrator”
    pub status: String,
    /// Information about the user
    pub user: User,
    /// True, if the bot is allowed to edit administrator privileges of that user
    pub can_be_edited: bool,
    /// True, if the user's presence in the chat is hidden
    pub is_anonymous: bool,
    /// True, if the administrator can access the chat event log, chat statistics, message
    /// statistics in channels, see channel members, see anonymous administrators in supergroups
    /// and ignore slow mode. Implied by any other administrator privilege
    pub can_manage_chat: bool,
    /// True, if the administrator can delete messages of other users
    pub can_delete_messages: bool,
    /// True, if the administrator can manage video chats
    pub can_manage_video_chats: bool,
    /// True, if the administrator can restrict, ban or unban chat members
    pub can_restrict_members: bool,
    /// True, if the administrator can add new administrators with a subset of their own privileges
    /// or demote administrators that they have promoted, directly or indirectly (promoted by
    /// administrators that were appointed by the user)
    pub can_promote_members: bool,
    /// True, if the user is allowed to change the chat title, photo and other settings
    pub can_change_info: bool,
    /// True, if the user is allowed to invite new users to the chat
    pub can_invite_users: bool,
    /// True, if the administrator can post in the channel; channels only
    pub can_post_messages: Option<bool>,
    /// True, if the administrator can edit messages of other users and can pin messages; channels
    /// only
    pub can_edit_messages: Option<bool>,
    /// True, if the user is allowed to pin messages; groups and supergroups only
    pub can_pin_messages: Option<bool>,
    /// True, if the user is allowed to create, rename, close, and reopen forum topics; supergroups
    /// only
    pub can_manage_topics: Option<bool>,
    /// Custom title for this user
    pub custom_title: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that has no additional privileges or restrictions.
pub struct ChatMemberMember {
    /// The member's status in the chat, always “member”
    pub status: String,
    /// Information about the user
    pub user: User,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that is under certain restrictions in the chat. Supergroups only.
pub struct ChatMemberRestricted {
    /// The member's status in the chat, always “restricted”
    pub status: String,
    /// Information about the user
    pub user: User,
    /// True, if the user is a member of the chat at the moment of the request
    pub is_member: bool,
    /// True, if the user is allowed to send text messages, contacts, invoices, locations and
    /// venues
    pub can_send_messages: bool,
    /// True, if the user is allowed to send audios
    pub can_send_audios: bool,
    /// True, if the user is allowed to send documents
    pub can_send_documents: bool,
    /// True, if the user is allowed to send photos
    pub can_send_photos: bool,
    /// True, if the user is allowed to send videos
    pub can_send_videos: bool,
    /// True, if the user is allowed to send video notes
    pub can_send_video_notes: bool,
    /// True, if the user is allowed to send voice notes
    pub can_send_voice_notes: bool,
    /// True, if the user is allowed to send polls
    pub can_send_polls: bool,
    /// True, if the user is allowed to send animations, games, stickers and use inline bots
    pub can_send_other_messages: bool,
    /// True, if the user is allowed to add web page previews to their messages
    pub can_add_web_page_previews: bool,
    /// True, if the user is allowed to change the chat title, photo and other settings
    pub can_change_info: bool,
    /// True, if the user is allowed to invite new users to the chat
    pub can_invite_users: bool,
    /// True, if the user is allowed to pin messages
    pub can_pin_messages: bool,
    /// True, if the user is allowed to create forum topics
    pub can_manage_topics: bool,
    /// Date when restrictions will be lifted for this user; unix time. If 0, then the user is
    /// restricted forever
    pub until_date: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that isn't currently a member of the chat, but may join it themselves.
pub struct ChatMemberLeft {
    /// The member's status in the chat, always “left”
    pub status: String,
    /// Information about the user
    pub user: User,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a chat member that was banned in the chat and can't return to the chat or view chat
/// messages.
pub struct ChatMemberBanned {
    /// The member's status in the chat, always “kicked”
    pub status: String,
    /// Information about the user
    pub user: User,
    /// Date when restrictions will be lifted for this user; unix time. If 0, then the user is
    /// banned forever
    pub until_date: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents changes in the status of a chat member.
pub struct ChatMemberUpdated {
    /// Chat the user belongs to
    pub chat: Chat,
    /// Performer of the action, which resulted in the change
    pub from: User,
    /// Date the change was done in Unix time
    pub date: i64,
    /// Previous information about the chat member
    pub old_chat_member: ChatMember,
    /// New information about the chat member
    pub new_chat_member: ChatMember,
    /// Chat invite link, which was used by the user to join the chat; for joining by invite link
    /// events only.
    pub invite_link: Option<ChatInviteLink>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a join request sent to a chat.
pub struct ChatJoinRequest {
    /// Chat to which the request was sent
    pub chat: Chat,
    /// User that sent the join request
    pub from: User,
    /// Identifier of a private chat with the user who sent the join request. This number may have
    /// more than 32 significant bits and some programming languages may have difficulty/silent
    /// defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or
    /// double-precision float type are safe for storing this identifier. The bot can use this
    /// identifier for 24 hours to send messages until the join request is processed, assuming no
    /// other administrator contacted the user.
    pub user_chat_id: i64,
    /// Date the request was sent in Unix time
    pub date: i64,
    /// Bio of the user.
    pub bio: Option<String>,
    /// Chat invite link that was used by the user to send the join request
    pub invite_link: Option<ChatInviteLink>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Describes actions that a non-administrator user is allowed to take in a chat.
pub struct ChatPermissions {
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send text messages, contacts, invoices, locations and
    /// venues
    pub can_send_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send audios
    pub can_send_audios: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send documents
    pub can_send_documents: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send photos
    pub can_send_photos: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send videos
    pub can_send_videos: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send video notes
    pub can_send_video_notes: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send voice notes
    pub can_send_voice_notes: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send polls
    pub can_send_polls: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to send animations, games, stickers and use inline bots
    pub can_send_other_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to add web page previews to their messages
    pub can_add_web_page_previews: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to change the chat title, photo and other settings. Ignored in
    /// public supergroups
    pub can_change_info: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to invite new users to the chat
    pub can_invite_users: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to pin messages. Ignored in public supergroups
    pub can_pin_messages: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// True, if the user is allowed to create forum topics. If omitted defaults to the value of
    /// can_pin_messages
    pub can_manage_topics: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a location to which a chat is connected.
pub struct ChatLocation {
    /// The location to which the supergroup is connected. Can't be a live location.
    pub location: Location,
    /// Location address; 1-64 characters, as defined by the chat owner
    pub address: String,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a forum topic.
pub struct ForumTopic {
    /// Unique identifier of the forum topic
    pub message_thread_id: i64,
    /// Name of the topic
    pub name: String,
    /// Color of the topic icon in RGB format
    pub icon_color: i64,
    /// Unique identifier of the custom emoji shown as the topic icon
    pub icon_custom_emoji_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents a bot command.
pub struct BotCommand {
    /// Text of the command; 1-32 characters. Can contain only lowercase English letters, digits
    /// and underscores.
    pub command: String,
    /// Description of the command; 1-256 characters.
    pub description: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the default scope of bot commands. Default commands are used if no commands with a
/// narrower scope are specified for the user.
pub struct BotCommandScopeDefault {
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering all private chats.
pub struct BotCommandScopeAllPrivateChats {
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering all group and supergroup chats.
pub struct BotCommandScopeAllGroupChats {
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering all group and supergroup chat administrators.
pub struct BotCommandScopeAllChatAdministrators {
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering a specific chat.
pub struct BotCommandScopeChat {
    /// Unique identifier for the target chat or username of the target supergroup (in the format
    /// @supergroupusername)
    pub chat_id: ChatId,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering all administrators of a specific group or
/// supergroup chat.
pub struct BotCommandScopeChatAdministrators {
    /// Unique identifier for the target chat or username of the target supergroup (in the format
    /// @supergroupusername)
    pub chat_id: ChatId,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the scope of bot commands, covering a specific member of a group or supergroup chat.
pub struct BotCommandScopeChatMember {
    /// Unique identifier for the target chat or username of the target supergroup (in the format
    /// @supergroupusername)
    pub chat_id: ChatId,
    /// Unique identifier of the target user
    pub user_id: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a menu button, which opens the bot's list of commands.
pub struct MenuButtonCommands {
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a menu button, which launches a Web App.
pub struct MenuButtonWebApp {
    /// Text on the button
    pub text: String,
    /// Description of the Web App that will be launched when the user presses the button. The Web
    /// App will be able to send an arbitrary message on behalf of the user using the method
    /// answerWebAppQuery.
    pub web_app: WebAppInfo,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Describes that no specific value for the menu button was set.
pub struct MenuButtonDefault {
}

#[derive(Debug, Clone, Deserialize)]
/// Describes why a request was unsuccessful.
pub struct ResponseParameters {
    /// The group has been migrated to a supergroup with the specified identifier. This number may
    /// have more than 32 significant bits and some programming languages may have
    /// difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a
    /// signed 64-bit integer or double-precision float type are safe for storing this identifier.
    pub migrate_to_chat_id: Option<i64>,
    /// In case of exceeding flood control, the number of seconds left to wait before the request
    /// can be repeated
    pub retry_after: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a photo to be sent.
pub struct InputMediaPhoto {
    /// File to send. Pass a file_id to send a file that exists on the Telegram servers
    /// (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass
    /// “attach://<file_attach_name>” to upload a new one using multipart/form-data under
    /// <file_attach_name> name. More information on Sending Files »
    pub media: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the photo to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the photo caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the photo needs to be covered with a spoiler animation
    pub has_spoiler: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a video to be sent.
pub struct InputMediaVideo {
    /// File to send. Pass a file_id to send a file that exists on the Telegram servers
    /// (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass
    /// “attach://<file_attach_name>” to upload a new one using multipart/form-data under
    /// <file_attach_name> name. More information on Sending Files »
    pub media: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// 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 information on Sending Files »
    pub thumb: Option<InputFile>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the video to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the video caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video width
    pub width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video height
    pub height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video duration in seconds
    pub duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the uploaded video is suitable for streaming
    pub supports_streaming: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the video needs to be covered with a spoiler animation
    pub has_spoiler: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an animation file (GIF or H.264/MPEG-4 AVC video without sound) to be sent.
pub struct InputMediaAnimation {
    /// File to send. Pass a file_id to send a file that exists on the Telegram servers
    /// (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass
    /// “attach://<file_attach_name>” to upload a new one using multipart/form-data under
    /// <file_attach_name> name. More information on Sending Files »
    pub media: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// 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 information on Sending Files »
    pub thumb: Option<InputFile>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the animation to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the animation caption. See formatting options for more
    /// details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Animation width
    pub width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Animation height
    pub height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Animation duration in seconds
    pub duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the animation needs to be covered with a spoiler animation
    pub has_spoiler: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an audio file to be treated as music to be sent.
pub struct InputMediaAudio {
    /// File to send. Pass a file_id to send a file that exists on the Telegram servers
    /// (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass
    /// “attach://<file_attach_name>” to upload a new one using multipart/form-data under
    /// <file_attach_name> name. More information on Sending Files »
    pub media: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// 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 information on Sending Files »
    pub thumb: Option<InputFile>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the audio to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the audio caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Duration of the audio in seconds
    pub duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Performer of the audio
    pub performer: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title of the audio
    pub title: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a general file to be sent.
pub struct InputMediaDocument {
    /// File to send. Pass a file_id to send a file that exists on the Telegram servers
    /// (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass
    /// “attach://<file_attach_name>” to upload a new one using multipart/form-data under
    /// <file_attach_name> name. More information on Sending Files »
    pub media: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// 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 information on Sending Files »
    pub thumb: Option<InputFile>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the document to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the document caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Disables automatic server-side content type detection for files uploaded using
    /// multipart/form-data. Always True, if the document is sent as part of an album.
    pub disable_content_type_detection: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a sticker.
pub struct Sticker {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    #[serde(rename = "type")]
    /// Type of the sticker, currently one of “regular”, “mask”, “custom_emoji”. The type of the
    /// sticker is independent from its format, which is determined by the fields is_animated and
    /// is_video.
    pub type_: String,
    /// Sticker width
    pub width: i64,
    /// Sticker height
    pub height: i64,
    /// True, if the sticker is animated
    pub is_animated: bool,
    /// True, if the sticker is a video sticker
    pub is_video: bool,
    /// Sticker thumbnail in the .WEBP or .JPG format
    pub thumb: Option<PhotoSize>,
    /// Emoji associated with the sticker
    pub emoji: Option<String>,
    /// Name of the sticker set to which the sticker belongs
    pub set_name: Option<String>,
    /// For premium regular stickers, premium animation for the sticker
    pub premium_animation: Option<File>,
    /// For mask stickers, the position where the mask should be placed
    pub mask_position: Option<MaskPosition>,
    /// For custom emoji stickers, unique identifier of the custom emoji
    pub custom_emoji_id: Option<String>,
    /// File size in bytes
    pub file_size: Option<i64>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a sticker set.
pub struct StickerSet {
    /// Sticker set name
    pub name: String,
    /// Sticker set title
    pub title: String,
    /// Type of stickers in the set, currently one of “regular”, “mask”, “custom_emoji”
    pub sticker_type: String,
    /// True, if the sticker set contains animated stickers
    pub is_animated: bool,
    /// True, if the sticker set contains video stickers
    pub is_video: bool,
    /// List of all set stickers
    pub stickers: Vec<Sticker>,
    /// Sticker set thumbnail in the .WEBP, .TGS, or .WEBM format
    pub thumb: Option<PhotoSize>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object describes the position on faces where a mask should be placed by default.
pub struct MaskPosition {
    /// The part of the face relative to which the mask should be placed. One of “forehead”,
    /// “eyes”, “mouth”, or “chin”.
    pub point: String,
    /// Shift by X-axis measured in widths of the mask scaled to the face size, from left to right.
    /// For example, choosing -1.0 will place mask just to the left of the default mask position.
    pub x_shift: f64,
    /// Shift by Y-axis measured in heights of the mask scaled to the face size, from top to
    /// bottom. For example, 1.0 will place the mask just below the default mask position.
    pub y_shift: f64,
    /// Mask scaling coefficient. For example, 2.0 means double size.
    pub scale: f64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents an incoming inline query. When the user sends an empty query, your bot
/// could return some default or trending results.
pub struct InlineQuery {
    /// Unique identifier for this query
    pub id: String,
    /// Sender
    pub from: User,
    /// Text of the query (up to 256 characters)
    pub query: String,
    /// Offset of the results to be returned, can be controlled by the bot
    pub offset: String,
    /// Type of the chat from which the inline query was sent. Can be either “sender” for a private
    /// chat with the inline query sender, “private”, “group”, “supergroup”, or “channel”. The chat
    /// type should be always known for requests sent from official clients and most third-party
    /// clients, unless the request was sent from a secret chat
    pub chat_type: Option<String>,
    /// Sender location, only for bots that request user location
    pub location: Option<Location>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to an article or web page.
pub struct InlineQueryResultArticle {
    /// Unique identifier for this result, 1-64 Bytes
    pub id: String,
    /// Title of the result
    pub title: String,
    /// Content of the message to be sent
    pub input_message_content: InputMessageContent,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// URL of the result
    pub url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if you don't want the URL to be shown in the message
    pub hide_url: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Url of the thumbnail for the result
    pub thumb_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail width
    pub thumb_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail height
    pub thumb_height: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a photo. By default, this photo will be sent by the user with optional
/// caption. Alternatively, you can use input_message_content to send a message with the specified
/// content instead of the photo.
pub struct InlineQueryResultPhoto {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL of the photo. Photo must be in JPEG format. Photo size must not exceed 5MB
    pub photo_url: String,
    /// URL of the thumbnail for the photo
    pub thumb_url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Width of the photo
    pub photo_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Height of the photo
    pub photo_height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the photo to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the photo caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the photo
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to an animated GIF file. By default, this animated GIF file will be sent by
/// the user with optional caption. Alternatively, you can use input_message_content to send a
/// message with the specified content instead of the animation.
pub struct InlineQueryResultGif {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL for the GIF file. File size must not exceed 1MB
    pub gif_url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Width of the GIF
    pub gif_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Height of the GIF
    pub gif_height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Duration of the GIF in seconds
    pub gif_duration: Option<i64>,
    /// URL of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the result
    pub thumb_url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// MIME type of the thumbnail, must be one of “image/jpeg”, “image/gif”, or “video/mp4”.
    /// Defaults to “image/jpeg”
    pub thumb_mime_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the GIF file to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the GIF animation
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a video animation (H.264/MPEG-4 AVC video without sound). By default, this
/// animated MPEG-4 file will be sent by the user with optional caption. Alternatively, you can use
/// input_message_content to send a message with the specified content instead of the animation.
pub struct InlineQueryResultMpeg4Gif {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL for the MPEG4 file. File size must not exceed 1MB
    pub mpeg4_url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video width
    pub mpeg4_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video height
    pub mpeg4_height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video duration in seconds
    pub mpeg4_duration: Option<i64>,
    /// URL of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the result
    pub thumb_url: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// MIME type of the thumbnail, must be one of “image/jpeg”, “image/gif”, or “video/mp4”.
    /// Defaults to “image/jpeg”
    pub thumb_mime_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the MPEG-4 file to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the video animation
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a page containing an embedded video player or a video file. By default,
/// this video file will be sent by the user with an optional caption. Alternatively, you can use
/// input_message_content to send a message with the specified content instead of the video.
pub struct InlineQueryResultVideo {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL for the embedded video player or video file
    pub video_url: String,
    /// MIME type of the content of the video URL, “text/html” or “video/mp4”
    pub mime_type: String,
    /// URL of the thumbnail (JPEG only) for the video
    pub thumb_url: String,
    /// Title for the result
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the video to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the video caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video width
    pub video_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video height
    pub video_height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Video duration in seconds
    pub video_duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the video. This field is required if
    /// InlineQueryResultVideo is used to send an HTML-page as a result (e.g., a YouTube video).
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to an MP3 audio file. By default, this audio file will be sent by the user.
/// Alternatively, you can use input_message_content to send a message with the specified content
/// instead of the audio.
pub struct InlineQueryResultAudio {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL for the audio file
    pub audio_url: String,
    /// Title
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the audio caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Performer
    pub performer: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Audio duration in seconds
    pub audio_duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the audio
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a voice recording in an .OGG container encoded with OPUS. By default, this
/// voice recording will be sent by the user. Alternatively, you can use input_message_content to
/// send a message with the specified content instead of the the voice message.
pub struct InlineQueryResultVoice {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid URL for the voice recording
    pub voice_url: String,
    /// Recording title
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the voice message caption. See formatting options for more
    /// details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Recording duration in seconds
    pub voice_duration: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the voice recording
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a file. By default, this file will be sent by the user with an optional
/// caption. Alternatively, you can use input_message_content to send a message with the specified
/// content instead of the file. Currently, only .PDF and .ZIP files can be sent using this method.
pub struct InlineQueryResultDocument {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// Title for the result
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the document to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the document caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    /// A valid URL for the file
    pub document_url: String,
    /// MIME type of the content of the file, either “application/pdf” or “application/zip”
    pub mime_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the file
    pub input_message_content: Option<InputMessageContent>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// URL of the thumbnail (JPEG only) for the file
    pub thumb_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail width
    pub thumb_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail height
    pub thumb_height: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a location on a map. By default, the location will be sent by the user.
/// Alternatively, you can use input_message_content to send a message with the specified content
/// instead of the location.
pub struct InlineQueryResultLocation {
    /// Unique identifier for this result, 1-64 Bytes
    pub id: String,
    /// Location latitude in degrees
    pub latitude: f64,
    /// Location longitude in degrees
    pub longitude: f64,
    /// Location title
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// The radius of uncertainty for the location, measured in meters; 0-1500
    pub horizontal_accuracy: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Period in seconds for which the location can be updated, should be between 60 and 86400.
    pub live_period: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For live locations, a direction in which the user is moving, in degrees. Must be between 1
    /// and 360 if specified.
    pub heading: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For live locations, a maximum distance for proximity alerts about approaching another chat
    /// member, in meters. Must be between 1 and 100000 if specified.
    pub proximity_alert_radius: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the location
    pub input_message_content: Option<InputMessageContent>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Url of the thumbnail for the result
    pub thumb_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail width
    pub thumb_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail height
    pub thumb_height: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use
/// input_message_content to send a message with the specified content instead of the venue.
pub struct InlineQueryResultVenue {
    /// Unique identifier for this result, 1-64 Bytes
    pub id: String,
    /// Latitude of the venue location in degrees
    pub latitude: f64,
    /// Longitude of the venue location in degrees
    pub longitude: f64,
    /// Title of the venue
    pub title: String,
    /// Address of the venue
    pub address: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Foursquare identifier of the venue if known
    pub foursquare_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Foursquare type of the venue, if known. (For example, “arts_entertainment/default”,
    /// “arts_entertainment/aquarium” or “food/icecream”.)
    pub foursquare_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Google Places identifier of the venue
    pub google_place_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Google Places type of the venue. (See supported types.)
    pub google_place_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the venue
    pub input_message_content: Option<InputMessageContent>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Url of the thumbnail for the result
    pub thumb_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail width
    pub thumb_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail height
    pub thumb_height: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a contact with a phone number. By default, this contact will be sent by the user.
/// Alternatively, you can use input_message_content to send a message with the specified content
/// instead of the contact.
pub struct InlineQueryResultContact {
    /// Unique identifier for this result, 1-64 Bytes
    pub id: String,
    /// Contact's phone number
    pub phone_number: String,
    /// Contact's first name
    pub first_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Contact's last name
    pub last_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Additional data about the contact in the form of a vCard, 0-2048 bytes
    pub vcard: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the contact
    pub input_message_content: Option<InputMessageContent>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Url of the thumbnail for the result
    pub thumb_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail width
    pub thumb_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Thumbnail height
    pub thumb_height: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a Game.
pub struct InlineQueryResultGame {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// Short name of the game
    pub game_short_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a photo stored on the Telegram servers. By default, this photo will be
/// sent by the user with an optional caption. Alternatively, you can use input_message_content to
/// send a message with the specified content instead of the photo.
pub struct InlineQueryResultCachedPhoto {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier of the photo
    pub photo_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the photo to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the photo caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the photo
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to an animated GIF file stored on the Telegram servers. By default, this
/// animated GIF file will be sent by the user with an optional caption. Alternatively, you can use
/// input_message_content to send a message with specified content instead of the animation.
pub struct InlineQueryResultCachedGif {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier for the GIF file
    pub gif_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the GIF file to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the GIF animation
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a video animation (H.264/MPEG-4 AVC video without sound) stored on the
/// Telegram servers. By default, this animated MPEG-4 file will be sent by the user with an
/// optional caption. Alternatively, you can use input_message_content to send a message with the
/// specified content instead of the animation.
pub struct InlineQueryResultCachedMpeg4Gif {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier for the MPEG4 file
    pub mpeg4_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Title for the result
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the MPEG-4 file to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the video animation
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a sticker stored on the Telegram servers. By default, this sticker will be
/// sent by the user. Alternatively, you can use input_message_content to send a message with the
/// specified content instead of the sticker.
pub struct InlineQueryResultCachedSticker {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier of the sticker
    pub sticker_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the sticker
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a file stored on the Telegram servers. By default, this file will be sent
/// by the user with an optional caption. Alternatively, you can use input_message_content to send
/// a message with the specified content instead of the file.
pub struct InlineQueryResultCachedDocument {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// Title for the result
    pub title: String,
    /// A valid file identifier for the file
    pub document_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the document to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the document caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the file
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a video file stored on the Telegram servers. By default, this video file
/// will be sent by the user with an optional caption. Alternatively, you can use
/// input_message_content to send a message with the specified content instead of the video.
pub struct InlineQueryResultCachedVideo {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier for the video file
    pub video_file_id: String,
    /// Title for the result
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Short description of the result
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption of the video to be sent, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the video caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the video
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to a voice message stored on the Telegram servers. By default, this voice
/// message will be sent by the user. Alternatively, you can use input_message_content to send a
/// message with the specified content instead of the voice message.
pub struct InlineQueryResultCachedVoice {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier for the voice message
    pub voice_file_id: String,
    /// Voice message title
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the voice message caption. See formatting options for more
    /// details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the voice message
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents a link to an MP3 audio file stored on the Telegram servers. By default, this audio
/// file will be sent by the user. Alternatively, you can use input_message_content to send a
/// message with the specified content instead of the audio.
pub struct InlineQueryResultCachedAudio {
    /// Unique identifier for this result, 1-64 bytes
    pub id: String,
    /// A valid file identifier for the audio file
    pub audio_file_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Caption, 0-1024 characters after entities parsing
    pub caption: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the audio caption. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in the caption, which can be specified instead of
    /// parse_mode
    pub caption_entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Inline keyboard attached to the message
    pub reply_markup: Option<InlineKeyboardMarkup>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Content of the message to be sent instead of the audio
    pub input_message_content: Option<InputMessageContent>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the content of a text message to be sent as the result of an inline query.
pub struct InputTextMessageContent {
    /// Text of the message to be sent, 1-4096 characters
    pub message_text: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Mode for parsing entities in the message text. See formatting options for more details.
    pub parse_mode: Option<ParseMode>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// List of special entities that appear in message text, which can be specified instead of
    /// parse_mode
    pub entities: Option<Vec<MessageEntity>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Disables link previews for links in the sent message
    pub disable_web_page_preview: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the content of a location message to be sent as the result of an inline query.
pub struct InputLocationMessageContent {
    /// Latitude of the location in degrees
    pub latitude: f64,
    /// Longitude of the location in degrees
    pub longitude: f64,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// The radius of uncertainty for the location, measured in meters; 0-1500
    pub horizontal_accuracy: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Period in seconds for which the location can be updated, should be between 60 and 86400.
    pub live_period: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For live locations, a direction in which the user is moving, in degrees. Must be between 1
    /// and 360 if specified.
    pub heading: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// For live locations, a maximum distance for proximity alerts about approaching another chat
    /// member, in meters. Must be between 1 and 100000 if specified.
    pub proximity_alert_radius: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the content of a venue message to be sent as the result of an inline query.
pub struct InputVenueMessageContent {
    /// Latitude of the venue in degrees
    pub latitude: f64,
    /// Longitude of the venue in degrees
    pub longitude: f64,
    /// Name of the venue
    pub title: String,
    /// Address of the venue
    pub address: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Foursquare identifier of the venue, if known
    pub foursquare_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Foursquare type of the venue, if known. (For example, “arts_entertainment/default”,
    /// “arts_entertainment/aquarium” or “food/icecream”.)
    pub foursquare_type: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Google Places identifier of the venue
    pub google_place_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Google Places type of the venue. (See supported types.)
    pub google_place_type: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the content of a contact message to be sent as the result of an inline query.
pub struct InputContactMessageContent {
    /// Contact's phone number
    pub phone_number: String,
    /// Contact's first name
    pub first_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Contact's last name
    pub last_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Additional data about the contact in the form of a vCard, 0-2048 bytes
    pub vcard: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents the content of an invoice message to be sent as the result of an inline query.
pub struct InputInvoiceMessageContent {
    /// Product name, 1-32 characters
    pub title: String,
    /// Product description, 1-255 characters
    pub description: String,
    /// Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for
    /// your internal processes.
    pub payload: String,
    /// Payment provider token, obtained via @BotFather
    pub provider_token: String,
    /// Three-letter ISO 4217 currency code, see more on currencies
    pub currency: String,
    /// Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount,
    /// delivery cost, delivery tax, bonus, etc.)
    pub prices: Vec<LabeledPrice>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// The maximum accepted amount for tips in the smallest units of the currency (integer, not
    /// float/double). For example, for a maximum tip of US$ 1.45 pass max_tip_amount = 145. See
    /// the exp parameter in currencies.json, it shows the number of digits past the decimal point
    /// for each currency (2 for the majority of currencies). Defaults to 0
    pub max_tip_amount: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// A JSON-serialized array of suggested amounts of tip in the smallest units of the currency
    /// (integer, not float/double). At most 4 suggested tip amounts can be specified. The
    /// suggested tip amounts must be positive, passed in a strictly increased order and must not
    /// exceed max_tip_amount.
    pub suggested_tip_amounts: Option<Vec<i64>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// A JSON-serialized object for data about the invoice, which will be shared with the payment
    /// provider. A detailed description of the required fields should be provided by the payment
    /// provider.
    pub provider_data: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// URL of the product photo for the invoice. Can be a photo of the goods or a marketing image
    /// for a service.
    pub photo_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Photo size in bytes
    pub photo_size: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Photo width
    pub photo_width: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Photo height
    pub photo_height: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if you require the user's full name to complete the order
    pub need_name: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if you require the user's phone number to complete the order
    pub need_phone_number: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if you require the user's email address to complete the order
    pub need_email: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if you require the user's shipping address to complete the order
    pub need_shipping_address: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the user's phone number should be sent to provider
    pub send_phone_number_to_provider: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the user's email address should be sent to provider
    pub send_email_to_provider: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    /// Pass True if the final price depends on the shipping method
    pub is_flexible: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
/// Represents a result of an inline query that was chosen by the user and sent to their chat
/// partner.
pub struct ChosenInlineResult {
    /// The unique identifier for the result that was chosen
    pub result_id: String,
    /// The user that chose the result
    pub from: User,
    /// Sender location, only for bots that require user location
    pub location: Option<Location>,
    /// Identifier of the sent inline message. Available only if there is an inline keyboard
    /// attached to the message. Will be also received in callback queries and can be used to edit
    /// the message.
    pub inline_message_id: Option<String>,
    /// The query that was used to obtain the result
    pub query: String,
}

#[derive(Debug, Clone, Deserialize)]
/// Describes an inline message sent by a Web App on behalf of a user.
pub struct SentWebAppMessage {
    /// Identifier of the sent inline message. Available only if there is an inline keyboard
    /// attached to the message.
    pub inline_message_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents a portion of the price for goods or services.
pub struct LabeledPrice {
    /// Portion label
    pub label: String,
    /// Price of the product in the smallest units of the currency (integer, not float/double). For
    /// example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in
    /// currencies.json, it shows the number of digits past the decimal point for each currency (2
    /// for the majority of currencies).
    pub amount: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains basic information about an invoice.
pub struct Invoice {
    /// Product name
    pub title: String,
    /// Product description
    pub description: String,
    /// Unique bot deep-linking parameter that can be used to generate this invoice
    pub start_parameter: String,
    /// Three-letter ISO 4217 currency code
    pub currency: String,
    /// Total price in the smallest units of the currency (integer, not float/double). For example,
    /// for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it
    /// shows the number of digits past the decimal point for each currency (2 for the majority of
    /// currencies).
    pub total_amount: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a shipping address.
pub struct ShippingAddress {
    /// Two-letter ISO 3166-1 alpha-2 country code
    pub country_code: String,
    /// State, if applicable
    pub state: String,
    /// City
    pub city: String,
    /// First line for the address
    pub street_line1: String,
    /// Second line for the address
    pub street_line2: String,
    /// Address post code
    pub post_code: String,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents information about an order.
pub struct OrderInfo {
    /// User name
    pub name: Option<String>,
    /// User's phone number
    pub phone_number: Option<String>,
    /// User email
    pub email: Option<String>,
    /// User shipping address
    pub shipping_address: Option<ShippingAddress>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// This object represents one shipping option.
pub struct ShippingOption {
    /// Shipping option identifier
    pub id: String,
    /// Option title
    pub title: String,
    /// List of price portions
    pub prices: Vec<LabeledPrice>,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains basic information about a successful payment.
pub struct SuccessfulPayment {
    /// Three-letter ISO 4217 currency code
    pub currency: String,
    /// Total price in the smallest units of the currency (integer, not float/double). For example,
    /// for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it
    /// shows the number of digits past the decimal point for each currency (2 for the majority of
    /// currencies).
    pub total_amount: i64,
    /// Bot specified invoice payload
    pub invoice_payload: String,
    /// Identifier of the shipping option chosen by the user
    pub shipping_option_id: Option<String>,
    /// Order information provided by the user
    pub order_info: Option<OrderInfo>,
    /// Telegram payment identifier
    pub telegram_payment_charge_id: String,
    /// Provider payment identifier
    pub provider_payment_charge_id: String,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about an incoming shipping query.
pub struct ShippingQuery {
    /// Unique query identifier
    pub id: String,
    /// User who sent the query
    pub from: User,
    /// Bot specified invoice payload
    pub invoice_payload: String,
    /// User specified shipping address
    pub shipping_address: ShippingAddress,
}

#[derive(Debug, Clone, Deserialize)]
/// This object contains information about an incoming pre-checkout query.
pub struct PreCheckoutQuery {
    /// Unique query identifier
    pub id: String,
    /// User who sent the query
    pub from: User,
    /// Three-letter ISO 4217 currency code
    pub currency: String,
    /// Total price in the smallest units of the currency (integer, not float/double). For example,
    /// for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it
    /// shows the number of digits past the decimal point for each currency (2 for the majority of
    /// currencies).
    pub total_amount: i64,
    /// Bot specified invoice payload
    pub invoice_payload: String,
    /// Identifier of the shipping option chosen by the user
    pub shipping_option_id: Option<String>,
    /// Order information provided by the user
    pub order_info: Option<OrderInfo>,
}

#[derive(Debug, Clone, Deserialize)]
/// Describes Telegram Passport data shared with the bot by the user.
pub struct PassportData {
    /// Array with information about documents and other Telegram Passport elements that was shared
    /// with the bot
    pub data: Vec<EncryptedPassportElement>,
    /// Encrypted credentials required to decrypt the data
    pub credentials: EncryptedCredentials,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a file uploaded to Telegram Passport. Currently all Telegram Passport
/// files are in JPEG format when decrypted and don't exceed 10MB.
pub struct PassportFile {
    /// Identifier for this file, which can be used to download or reuse the file
    pub file_id: String,
    /// Unique identifier for this file, which is supposed to be the same over time and for
    /// different bots. Can't be used to download or reuse the file.
    pub file_unique_id: String,
    /// File size in bytes
    pub file_size: i64,
    /// Unix time when the file was uploaded
    pub file_date: i64,
}

#[derive(Debug, Clone, Deserialize)]
/// Describes documents or other Telegram Passport elements shared with the bot by the user.
pub struct EncryptedPassportElement {
    #[serde(rename = "type")]
    /// Element type. One of “personal_details”, “passport”, “driver_license”, “identity_card”,
    /// “internal_passport”, “address”, “utility_bill”, “bank_statement”, “rental_agreement”,
    /// “passport_registration”, “temporary_registration”, “phone_number”, “email”.
    pub type_: String,
    /// Base64-encoded encrypted Telegram Passport element data provided by the user, available for
    /// “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport” and
    /// “address” types. Can be decrypted and verified using the accompanying EncryptedCredentials.
    pub data: Option<String>,
    /// User's verified phone number, available only for “phone_number” type
    pub phone_number: Option<String>,
    /// User's verified email address, available only for “email” type
    pub email: Option<String>,
    /// Array of encrypted files with documents provided by the user, available for “utility_bill”,
    /// “bank_statement”, “rental_agreement”, “passport_registration” and “temporary_registration”
    /// types. Files can be decrypted and verified using the accompanying EncryptedCredentials.
    pub files: Option<Vec<PassportFile>>,
    /// Encrypted file with the front side of the document, provided by the user. Available for
    /// “passport”, “driver_license”, “identity_card” and “internal_passport”. The file can be
    /// decrypted and verified using the accompanying EncryptedCredentials.
    pub front_side: Option<PassportFile>,
    /// Encrypted file with the reverse side of the document, provided by the user. Available for
    /// “driver_license” and “identity_card”. The file can be decrypted and verified using the
    /// accompanying EncryptedCredentials.
    pub reverse_side: Option<PassportFile>,
    /// Encrypted file with the selfie of the user holding a document, provided by the user;
    /// available for “passport”, “driver_license”, “identity_card” and “internal_passport”. The
    /// file can be decrypted and verified using the accompanying EncryptedCredentials.
    pub selfie: Option<PassportFile>,
    /// Array of encrypted files with translated versions of documents provided by the user.
    /// Available if requested for “passport”, “driver_license”, “identity_card”,
    /// “internal_passport”, “utility_bill”, “bank_statement”, “rental_agreement”,
    /// “passport_registration” and “temporary_registration” types. Files can be decrypted and
    /// verified using the accompanying EncryptedCredentials.
    pub translation: Option<Vec<PassportFile>>,
    /// Base64-encoded element hash for using in PassportElementErrorUnspecified
    pub hash: String,
}

#[derive(Debug, Clone, Deserialize)]
/// Describes data required for decrypting and authenticating EncryptedPassportElement. See the
/// Telegram Passport Documentation for a complete description of the data decryption and
/// authentication processes.
pub struct EncryptedCredentials {
    /// Base64-encoded encrypted JSON-serialized data with unique user's payload, data hashes and
    /// secrets required for EncryptedPassportElement decryption and authentication
    pub data: String,
    /// Base64-encoded data hash for data authentication
    pub hash: String,
    /// Base64-encoded secret, encrypted with the bot's public RSA key, required for data
    /// decryption
    pub secret: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue in one of the data fields that was provided by the user. The error is
/// considered resolved when the field's value changes.
pub struct PassportElementErrorDataField {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the error, one of “personal_details”,
    /// “passport”, “driver_license”, “identity_card”, “internal_passport”, “address”
    pub type_: String,
    /// Name of the data field which has the error
    pub field_name: String,
    /// Base64-encoded data hash
    pub data_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with the front side of a document. The error is considered resolved when
/// the file with the front side of the document changes.
pub struct PassportElementErrorFrontSide {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the issue, one of “passport”,
    /// “driver_license”, “identity_card”, “internal_passport”
    pub type_: String,
    /// Base64-encoded hash of the file with the front side of the document
    pub file_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with the reverse side of a document. The error is considered resolved when
/// the file with reverse side of the document changes.
pub struct PassportElementErrorReverseSide {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the issue, one of “driver_license”,
    /// “identity_card”
    pub type_: String,
    /// Base64-encoded hash of the file with the reverse side of the document
    pub file_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with the selfie with a document. The error is considered resolved when the
/// file with the selfie changes.
pub struct PassportElementErrorSelfie {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the issue, one of “passport”,
    /// “driver_license”, “identity_card”, “internal_passport”
    pub type_: String,
    /// Base64-encoded hash of the file with the selfie
    pub file_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with a document scan. The error is considered resolved when the file with
/// the document scan changes.
pub struct PassportElementErrorFile {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the issue, one of “utility_bill”,
    /// “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration”
    pub type_: String,
    /// Base64-encoded file hash
    pub file_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with a list of scans. The error is considered resolved when the list of
/// files containing the scans changes.
pub struct PassportElementErrorFiles {
    #[serde(rename = "type")]
    /// The section of the user's Telegram Passport which has the issue, one of “utility_bill”,
    /// “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration”
    pub type_: String,
    /// List of base64-encoded file hashes
    pub file_hashes: Vec<String>,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with one of the files that constitute the translation of a document. The
/// error is considered resolved when the file changes.
pub struct PassportElementErrorTranslationFile {
    #[serde(rename = "type")]
    /// Type of element of the user's Telegram Passport which has the issue, one of “passport”,
    /// “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”,
    /// “rental_agreement”, “passport_registration”, “temporary_registration”
    pub type_: String,
    /// Base64-encoded file hash
    pub file_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue with the translated version of a document. The error is considered resolved
/// when a file with the document translation change.
pub struct PassportElementErrorTranslationFiles {
    #[serde(rename = "type")]
    /// Type of element of the user's Telegram Passport which has the issue, one of “passport”,
    /// “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”,
    /// “rental_agreement”, “passport_registration”, “temporary_registration”
    pub type_: String,
    /// List of base64-encoded file hashes
    pub file_hashes: Vec<String>,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// Represents an issue in an unspecified place. The error is considered resolved when new data is
/// added.
pub struct PassportElementErrorUnspecified {
    #[serde(rename = "type")]
    /// Type of element of the user's Telegram Passport which has the issue
    pub type_: String,
    /// Base64-encoded element hash
    pub element_hash: String,
    /// Error message
    pub message: String,
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents a game. Use BotFather to create and edit games, their short names will
/// act as unique identifiers.
pub struct Game {
    /// Title of the game
    pub title: String,
    /// Description of the game
    pub description: String,
    /// Photo that will be displayed in the game message in chats.
    pub photo: Vec<PhotoSize>,
    /// Brief description of the game or high scores included in the game message. Can be
    /// automatically edited to include current high scores for the game when the bot calls
    /// setGameScore, or manually edited using editMessageText. 0-4096 characters.
    pub text: Option<String>,
    /// Special entities that appear in text, such as usernames, URLs, bot commands, etc.
    pub text_entities: Option<Vec<MessageEntity>>,
    /// Animation that will be displayed in the game message in chats. Upload via BotFather
    pub animation: Option<Animation>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
/// A placeholder, currently holds no information. Use BotFather to set up your game.
pub struct CallbackGame {
}

#[derive(Debug, Clone, Deserialize)]
/// This object represents one row of the high scores table for a game.
pub struct GameHighScore {
    /// Position in high score table for the game
    pub position: i64,
    /// User
    pub user: User,
    /// Score
    pub score: i64,
}