openapi-github 0.1.0

OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs
Documentation
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
# Rust API client for openapi

OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs

For more information, please visit [https://github.com/octokit/openapi](https://github.com/octokit/openapi)

## Overview

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: 16.6.0
- Package version: 16.6.0
- Generator version: 7.10.0
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`

## Installation

Put the package under your project folder in a directory named `openapi` and add the following to `Cargo.toml` under `[dependencies]`:

```
openapi = { path = "./openapi" }
```

## Documentation for API Endpoints

All URIs are relative to *https://api.github.com*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ActionsApi* | [**actions_slash_add_custom_labels_to_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_add_custom_labels_to_self_hosted_runner_for_org | **POST** /orgs/{org}/actions/runners/{runner_id}/labels | Add custom labels to a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_add_custom_labels_to_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_add_custom_labels_to_self_hosted_runner_for_repo | **POST** /repos/{owner}/{repo}/actions/runners/{runner_id}/labels | Add custom labels to a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_add_selected_repo_to_org_secret**]docs/ActionsApi.md#actions_slash_add_selected_repo_to_org_secret | **PUT** /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id} | Add selected repository to an organization secret
*ActionsApi* | [**actions_slash_add_selected_repo_to_org_variable**]docs/ActionsApi.md#actions_slash_add_selected_repo_to_org_variable | **PUT** /orgs/{org}/actions/variables/{name}/repositories/{repository_id} | Add selected repository to an organization variable
*ActionsApi* | [**actions_slash_approve_workflow_run**]docs/ActionsApi.md#actions_slash_approve_workflow_run | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/approve | Approve a workflow run for a fork pull request
*ActionsApi* | [**actions_slash_cancel_workflow_run**]docs/ActionsApi.md#actions_slash_cancel_workflow_run | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/cancel | Cancel a workflow run
*ActionsApi* | [**actions_slash_create_environment_variable**]docs/ActionsApi.md#actions_slash_create_environment_variable | **POST** /repos/{owner}/{repo}/environments/{environment_name}/variables | Create an environment variable
*ActionsApi* | [**actions_slash_create_or_update_environment_secret**]docs/ActionsApi.md#actions_slash_create_or_update_environment_secret | **PUT** /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name} | Create or update an environment secret
*ActionsApi* | [**actions_slash_create_or_update_org_secret**]docs/ActionsApi.md#actions_slash_create_or_update_org_secret | **PUT** /orgs/{org}/actions/secrets/{secret_name} | Create or update an organization secret
*ActionsApi* | [**actions_slash_create_or_update_repo_secret**]docs/ActionsApi.md#actions_slash_create_or_update_repo_secret | **PUT** /repos/{owner}/{repo}/actions/secrets/{secret_name} | Create or update a repository secret
*ActionsApi* | [**actions_slash_create_org_variable**]docs/ActionsApi.md#actions_slash_create_org_variable | **POST** /orgs/{org}/actions/variables | Create an organization variable
*ActionsApi* | [**actions_slash_create_registration_token_for_org**]docs/ActionsApi.md#actions_slash_create_registration_token_for_org | **POST** /orgs/{org}/actions/runners/registration-token | Create a registration token for an organization
*ActionsApi* | [**actions_slash_create_registration_token_for_repo**]docs/ActionsApi.md#actions_slash_create_registration_token_for_repo | **POST** /repos/{owner}/{repo}/actions/runners/registration-token | Create a registration token for a repository
*ActionsApi* | [**actions_slash_create_remove_token_for_org**]docs/ActionsApi.md#actions_slash_create_remove_token_for_org | **POST** /orgs/{org}/actions/runners/remove-token | Create a remove token for an organization
*ActionsApi* | [**actions_slash_create_remove_token_for_repo**]docs/ActionsApi.md#actions_slash_create_remove_token_for_repo | **POST** /repos/{owner}/{repo}/actions/runners/remove-token | Create a remove token for a repository
*ActionsApi* | [**actions_slash_create_repo_variable**]docs/ActionsApi.md#actions_slash_create_repo_variable | **POST** /repos/{owner}/{repo}/actions/variables | Create a repository variable
*ActionsApi* | [**actions_slash_create_workflow_dispatch**]docs/ActionsApi.md#actions_slash_create_workflow_dispatch | **POST** /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches | Create a workflow dispatch event
*ActionsApi* | [**actions_slash_delete_actions_cache_by_id**]docs/ActionsApi.md#actions_slash_delete_actions_cache_by_id | **DELETE** /repos/{owner}/{repo}/actions/caches/{cache_id} | Delete a GitHub Actions cache for a repository (using a cache ID)
*ActionsApi* | [**actions_slash_delete_actions_cache_by_key**]docs/ActionsApi.md#actions_slash_delete_actions_cache_by_key | **DELETE** /repos/{owner}/{repo}/actions/caches | Delete GitHub Actions caches for a repository (using a cache key)
*ActionsApi* | [**actions_slash_delete_artifact**]docs/ActionsApi.md#actions_slash_delete_artifact | **DELETE** /repos/{owner}/{repo}/actions/artifacts/{artifact_id} | Delete an artifact
*ActionsApi* | [**actions_slash_delete_environment_secret**]docs/ActionsApi.md#actions_slash_delete_environment_secret | **DELETE** /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name} | Delete an environment secret
*ActionsApi* | [**actions_slash_delete_environment_variable**]docs/ActionsApi.md#actions_slash_delete_environment_variable | **DELETE** /repos/{owner}/{repo}/environments/{environment_name}/variables/{name} | Delete an environment variable
*ActionsApi* | [**actions_slash_delete_org_secret**]docs/ActionsApi.md#actions_slash_delete_org_secret | **DELETE** /orgs/{org}/actions/secrets/{secret_name} | Delete an organization secret
*ActionsApi* | [**actions_slash_delete_org_variable**]docs/ActionsApi.md#actions_slash_delete_org_variable | **DELETE** /orgs/{org}/actions/variables/{name} | Delete an organization variable
*ActionsApi* | [**actions_slash_delete_repo_secret**]docs/ActionsApi.md#actions_slash_delete_repo_secret | **DELETE** /repos/{owner}/{repo}/actions/secrets/{secret_name} | Delete a repository secret
*ActionsApi* | [**actions_slash_delete_repo_variable**]docs/ActionsApi.md#actions_slash_delete_repo_variable | **DELETE** /repos/{owner}/{repo}/actions/variables/{name} | Delete a repository variable
*ActionsApi* | [**actions_slash_delete_self_hosted_runner_from_org**]docs/ActionsApi.md#actions_slash_delete_self_hosted_runner_from_org | **DELETE** /orgs/{org}/actions/runners/{runner_id} | Delete a self-hosted runner from an organization
*ActionsApi* | [**actions_slash_delete_self_hosted_runner_from_repo**]docs/ActionsApi.md#actions_slash_delete_self_hosted_runner_from_repo | **DELETE** /repos/{owner}/{repo}/actions/runners/{runner_id} | Delete a self-hosted runner from a repository
*ActionsApi* | [**actions_slash_delete_workflow_run**]docs/ActionsApi.md#actions_slash_delete_workflow_run | **DELETE** /repos/{owner}/{repo}/actions/runs/{run_id} | Delete a workflow run
*ActionsApi* | [**actions_slash_delete_workflow_run_logs**]docs/ActionsApi.md#actions_slash_delete_workflow_run_logs | **DELETE** /repos/{owner}/{repo}/actions/runs/{run_id}/logs | Delete workflow run logs
*ActionsApi* | [**actions_slash_disable_selected_repository_github_actions_organization**]docs/ActionsApi.md#actions_slash_disable_selected_repository_github_actions_organization | **DELETE** /orgs/{org}/actions/permissions/repositories/{repository_id} | Disable a selected repository for GitHub Actions in an organization
*ActionsApi* | [**actions_slash_disable_workflow**]docs/ActionsApi.md#actions_slash_disable_workflow | **PUT** /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable | Disable a workflow
*ActionsApi* | [**actions_slash_download_artifact**]docs/ActionsApi.md#actions_slash_download_artifact | **GET** /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format} | Download an artifact
*ActionsApi* | [**actions_slash_download_job_logs_for_workflow_run**]docs/ActionsApi.md#actions_slash_download_job_logs_for_workflow_run | **GET** /repos/{owner}/{repo}/actions/jobs/{job_id}/logs | Download job logs for a workflow run
*ActionsApi* | [**actions_slash_download_workflow_run_attempt_logs**]docs/ActionsApi.md#actions_slash_download_workflow_run_attempt_logs | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs | Download workflow run attempt logs
*ActionsApi* | [**actions_slash_download_workflow_run_logs**]docs/ActionsApi.md#actions_slash_download_workflow_run_logs | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/logs | Download workflow run logs
*ActionsApi* | [**actions_slash_enable_selected_repository_github_actions_organization**]docs/ActionsApi.md#actions_slash_enable_selected_repository_github_actions_organization | **PUT** /orgs/{org}/actions/permissions/repositories/{repository_id} | Enable a selected repository for GitHub Actions in an organization
*ActionsApi* | [**actions_slash_enable_workflow**]docs/ActionsApi.md#actions_slash_enable_workflow | **PUT** /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable | Enable a workflow
*ActionsApi* | [**actions_slash_force_cancel_workflow_run**]docs/ActionsApi.md#actions_slash_force_cancel_workflow_run | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel | Force cancel a workflow run
*ActionsApi* | [**actions_slash_generate_runner_jitconfig_for_org**]docs/ActionsApi.md#actions_slash_generate_runner_jitconfig_for_org | **POST** /orgs/{org}/actions/runners/generate-jitconfig | Create configuration for a just-in-time runner for an organization
*ActionsApi* | [**actions_slash_generate_runner_jitconfig_for_repo**]docs/ActionsApi.md#actions_slash_generate_runner_jitconfig_for_repo | **POST** /repos/{owner}/{repo}/actions/runners/generate-jitconfig | Create configuration for a just-in-time runner for a repository
*ActionsApi* | [**actions_slash_get_actions_cache_list**]docs/ActionsApi.md#actions_slash_get_actions_cache_list | **GET** /repos/{owner}/{repo}/actions/caches | List GitHub Actions caches for a repository
*ActionsApi* | [**actions_slash_get_actions_cache_usage**]docs/ActionsApi.md#actions_slash_get_actions_cache_usage | **GET** /repos/{owner}/{repo}/actions/cache/usage | Get GitHub Actions cache usage for a repository
*ActionsApi* | [**actions_slash_get_actions_cache_usage_by_repo_for_org**]docs/ActionsApi.md#actions_slash_get_actions_cache_usage_by_repo_for_org | **GET** /orgs/{org}/actions/cache/usage-by-repository | List repositories with GitHub Actions cache usage for an organization
*ActionsApi* | [**actions_slash_get_actions_cache_usage_for_org**]docs/ActionsApi.md#actions_slash_get_actions_cache_usage_for_org | **GET** /orgs/{org}/actions/cache/usage | Get GitHub Actions cache usage for an organization
*ActionsApi* | [**actions_slash_get_allowed_actions_organization**]docs/ActionsApi.md#actions_slash_get_allowed_actions_organization | **GET** /orgs/{org}/actions/permissions/selected-actions | Get allowed actions and reusable workflows for an organization
*ActionsApi* | [**actions_slash_get_allowed_actions_repository**]docs/ActionsApi.md#actions_slash_get_allowed_actions_repository | **GET** /repos/{owner}/{repo}/actions/permissions/selected-actions | Get allowed actions and reusable workflows for a repository
*ActionsApi* | [**actions_slash_get_artifact**]docs/ActionsApi.md#actions_slash_get_artifact | **GET** /repos/{owner}/{repo}/actions/artifacts/{artifact_id} | Get an artifact
*ActionsApi* | [**actions_slash_get_custom_oidc_sub_claim_for_repo**]docs/ActionsApi.md#actions_slash_get_custom_oidc_sub_claim_for_repo | **GET** /repos/{owner}/{repo}/actions/oidc/customization/sub | Get the customization template for an OIDC subject claim for a repository
*ActionsApi* | [**actions_slash_get_environment_public_key**]docs/ActionsApi.md#actions_slash_get_environment_public_key | **GET** /repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key | Get an environment public key
*ActionsApi* | [**actions_slash_get_environment_secret**]docs/ActionsApi.md#actions_slash_get_environment_secret | **GET** /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name} | Get an environment secret
*ActionsApi* | [**actions_slash_get_environment_variable**]docs/ActionsApi.md#actions_slash_get_environment_variable | **GET** /repos/{owner}/{repo}/environments/{environment_name}/variables/{name} | Get an environment variable
*ActionsApi* | [**actions_slash_get_github_actions_default_workflow_permissions_organization**]docs/ActionsApi.md#actions_slash_get_github_actions_default_workflow_permissions_organization | **GET** /orgs/{org}/actions/permissions/workflow | Get default workflow permissions for an organization
*ActionsApi* | [**actions_slash_get_github_actions_default_workflow_permissions_repository**]docs/ActionsApi.md#actions_slash_get_github_actions_default_workflow_permissions_repository | **GET** /repos/{owner}/{repo}/actions/permissions/workflow | Get default workflow permissions for a repository
*ActionsApi* | [**actions_slash_get_github_actions_permissions_organization**]docs/ActionsApi.md#actions_slash_get_github_actions_permissions_organization | **GET** /orgs/{org}/actions/permissions | Get GitHub Actions permissions for an organization
*ActionsApi* | [**actions_slash_get_github_actions_permissions_repository**]docs/ActionsApi.md#actions_slash_get_github_actions_permissions_repository | **GET** /repos/{owner}/{repo}/actions/permissions | Get GitHub Actions permissions for a repository
*ActionsApi* | [**actions_slash_get_job_for_workflow_run**]docs/ActionsApi.md#actions_slash_get_job_for_workflow_run | **GET** /repos/{owner}/{repo}/actions/jobs/{job_id} | Get a job for a workflow run
*ActionsApi* | [**actions_slash_get_org_public_key**]docs/ActionsApi.md#actions_slash_get_org_public_key | **GET** /orgs/{org}/actions/secrets/public-key | Get an organization public key
*ActionsApi* | [**actions_slash_get_org_secret**]docs/ActionsApi.md#actions_slash_get_org_secret | **GET** /orgs/{org}/actions/secrets/{secret_name} | Get an organization secret
*ActionsApi* | [**actions_slash_get_org_variable**]docs/ActionsApi.md#actions_slash_get_org_variable | **GET** /orgs/{org}/actions/variables/{name} | Get an organization variable
*ActionsApi* | [**actions_slash_get_pending_deployments_for_run**]docs/ActionsApi.md#actions_slash_get_pending_deployments_for_run | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments | Get pending deployments for a workflow run
*ActionsApi* | [**actions_slash_get_repo_public_key**]docs/ActionsApi.md#actions_slash_get_repo_public_key | **GET** /repos/{owner}/{repo}/actions/secrets/public-key | Get a repository public key
*ActionsApi* | [**actions_slash_get_repo_secret**]docs/ActionsApi.md#actions_slash_get_repo_secret | **GET** /repos/{owner}/{repo}/actions/secrets/{secret_name} | Get a repository secret
*ActionsApi* | [**actions_slash_get_repo_variable**]docs/ActionsApi.md#actions_slash_get_repo_variable | **GET** /repos/{owner}/{repo}/actions/variables/{name} | Get a repository variable
*ActionsApi* | [**actions_slash_get_reviews_for_run**]docs/ActionsApi.md#actions_slash_get_reviews_for_run | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/approvals | Get the review history for a workflow run
*ActionsApi* | [**actions_slash_get_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_get_self_hosted_runner_for_org | **GET** /orgs/{org}/actions/runners/{runner_id} | Get a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_get_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_get_self_hosted_runner_for_repo | **GET** /repos/{owner}/{repo}/actions/runners/{runner_id} | Get a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_get_workflow**]docs/ActionsApi.md#actions_slash_get_workflow | **GET** /repos/{owner}/{repo}/actions/workflows/{workflow_id} | Get a workflow
*ActionsApi* | [**actions_slash_get_workflow_access_to_repository**]docs/ActionsApi.md#actions_slash_get_workflow_access_to_repository | **GET** /repos/{owner}/{repo}/actions/permissions/access | Get the level of access for workflows outside of the repository
*ActionsApi* | [**actions_slash_get_workflow_run**]docs/ActionsApi.md#actions_slash_get_workflow_run | **GET** /repos/{owner}/{repo}/actions/runs/{run_id} | Get a workflow run
*ActionsApi* | [**actions_slash_get_workflow_run_attempt**]docs/ActionsApi.md#actions_slash_get_workflow_run_attempt | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number} | Get a workflow run attempt
*ActionsApi* | [**actions_slash_get_workflow_run_usage**]docs/ActionsApi.md#actions_slash_get_workflow_run_usage | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/timing | Get workflow run usage
*ActionsApi* | [**actions_slash_get_workflow_usage**]docs/ActionsApi.md#actions_slash_get_workflow_usage | **GET** /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing | Get workflow usage
*ActionsApi* | [**actions_slash_list_artifacts_for_repo**]docs/ActionsApi.md#actions_slash_list_artifacts_for_repo | **GET** /repos/{owner}/{repo}/actions/artifacts | List artifacts for a repository
*ActionsApi* | [**actions_slash_list_environment_secrets**]docs/ActionsApi.md#actions_slash_list_environment_secrets | **GET** /repos/{owner}/{repo}/environments/{environment_name}/secrets | List environment secrets
*ActionsApi* | [**actions_slash_list_environment_variables**]docs/ActionsApi.md#actions_slash_list_environment_variables | **GET** /repos/{owner}/{repo}/environments/{environment_name}/variables | List environment variables
*ActionsApi* | [**actions_slash_list_jobs_for_workflow_run**]docs/ActionsApi.md#actions_slash_list_jobs_for_workflow_run | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/jobs | List jobs for a workflow run
*ActionsApi* | [**actions_slash_list_jobs_for_workflow_run_attempt**]docs/ActionsApi.md#actions_slash_list_jobs_for_workflow_run_attempt | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs | List jobs for a workflow run attempt
*ActionsApi* | [**actions_slash_list_labels_for_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_list_labels_for_self_hosted_runner_for_org | **GET** /orgs/{org}/actions/runners/{runner_id}/labels | List labels for a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_list_labels_for_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_list_labels_for_self_hosted_runner_for_repo | **GET** /repos/{owner}/{repo}/actions/runners/{runner_id}/labels | List labels for a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_list_org_secrets**]docs/ActionsApi.md#actions_slash_list_org_secrets | **GET** /orgs/{org}/actions/secrets | List organization secrets
*ActionsApi* | [**actions_slash_list_org_variables**]docs/ActionsApi.md#actions_slash_list_org_variables | **GET** /orgs/{org}/actions/variables | List organization variables
*ActionsApi* | [**actions_slash_list_repo_organization_secrets**]docs/ActionsApi.md#actions_slash_list_repo_organization_secrets | **GET** /repos/{owner}/{repo}/actions/organization-secrets | List repository organization secrets
*ActionsApi* | [**actions_slash_list_repo_organization_variables**]docs/ActionsApi.md#actions_slash_list_repo_organization_variables | **GET** /repos/{owner}/{repo}/actions/organization-variables | List repository organization variables
*ActionsApi* | [**actions_slash_list_repo_secrets**]docs/ActionsApi.md#actions_slash_list_repo_secrets | **GET** /repos/{owner}/{repo}/actions/secrets | List repository secrets
*ActionsApi* | [**actions_slash_list_repo_variables**]docs/ActionsApi.md#actions_slash_list_repo_variables | **GET** /repos/{owner}/{repo}/actions/variables | List repository variables
*ActionsApi* | [**actions_slash_list_repo_workflows**]docs/ActionsApi.md#actions_slash_list_repo_workflows | **GET** /repos/{owner}/{repo}/actions/workflows | List repository workflows
*ActionsApi* | [**actions_slash_list_runner_applications_for_org**]docs/ActionsApi.md#actions_slash_list_runner_applications_for_org | **GET** /orgs/{org}/actions/runners/downloads | List runner applications for an organization
*ActionsApi* | [**actions_slash_list_runner_applications_for_repo**]docs/ActionsApi.md#actions_slash_list_runner_applications_for_repo | **GET** /repos/{owner}/{repo}/actions/runners/downloads | List runner applications for a repository
*ActionsApi* | [**actions_slash_list_selected_repos_for_org_secret**]docs/ActionsApi.md#actions_slash_list_selected_repos_for_org_secret | **GET** /orgs/{org}/actions/secrets/{secret_name}/repositories | List selected repositories for an organization secret
*ActionsApi* | [**actions_slash_list_selected_repos_for_org_variable**]docs/ActionsApi.md#actions_slash_list_selected_repos_for_org_variable | **GET** /orgs/{org}/actions/variables/{name}/repositories | List selected repositories for an organization variable
*ActionsApi* | [**actions_slash_list_selected_repositories_enabled_github_actions_organization**]docs/ActionsApi.md#actions_slash_list_selected_repositories_enabled_github_actions_organization | **GET** /orgs/{org}/actions/permissions/repositories | List selected repositories enabled for GitHub Actions in an organization
*ActionsApi* | [**actions_slash_list_self_hosted_runners_for_org**]docs/ActionsApi.md#actions_slash_list_self_hosted_runners_for_org | **GET** /orgs/{org}/actions/runners | List self-hosted runners for an organization
*ActionsApi* | [**actions_slash_list_self_hosted_runners_for_repo**]docs/ActionsApi.md#actions_slash_list_self_hosted_runners_for_repo | **GET** /repos/{owner}/{repo}/actions/runners | List self-hosted runners for a repository
*ActionsApi* | [**actions_slash_list_workflow_run_artifacts**]docs/ActionsApi.md#actions_slash_list_workflow_run_artifacts | **GET** /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts | List workflow run artifacts
*ActionsApi* | [**actions_slash_list_workflow_runs**]docs/ActionsApi.md#actions_slash_list_workflow_runs | **GET** /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs | List workflow runs for a workflow
*ActionsApi* | [**actions_slash_list_workflow_runs_for_repo**]docs/ActionsApi.md#actions_slash_list_workflow_runs_for_repo | **GET** /repos/{owner}/{repo}/actions/runs | List workflow runs for a repository
*ActionsApi* | [**actions_slash_re_run_job_for_workflow_run**]docs/ActionsApi.md#actions_slash_re_run_job_for_workflow_run | **POST** /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun | Re-run a job from a workflow run
*ActionsApi* | [**actions_slash_re_run_workflow**]docs/ActionsApi.md#actions_slash_re_run_workflow | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/rerun | Re-run a workflow
*ActionsApi* | [**actions_slash_re_run_workflow_failed_jobs**]docs/ActionsApi.md#actions_slash_re_run_workflow_failed_jobs | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs | Re-run failed jobs from a workflow run
*ActionsApi* | [**actions_slash_remove_all_custom_labels_from_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_remove_all_custom_labels_from_self_hosted_runner_for_org | **DELETE** /orgs/{org}/actions/runners/{runner_id}/labels | Remove all custom labels from a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_remove_all_custom_labels_from_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_remove_all_custom_labels_from_self_hosted_runner_for_repo | **DELETE** /repos/{owner}/{repo}/actions/runners/{runner_id}/labels | Remove all custom labels from a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_remove_custom_label_from_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_remove_custom_label_from_self_hosted_runner_for_org | **DELETE** /orgs/{org}/actions/runners/{runner_id}/labels/{name} | Remove a custom label from a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_remove_custom_label_from_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_remove_custom_label_from_self_hosted_runner_for_repo | **DELETE** /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name} | Remove a custom label from a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_remove_selected_repo_from_org_secret**]docs/ActionsApi.md#actions_slash_remove_selected_repo_from_org_secret | **DELETE** /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id} | Remove selected repository from an organization secret
*ActionsApi* | [**actions_slash_remove_selected_repo_from_org_variable**]docs/ActionsApi.md#actions_slash_remove_selected_repo_from_org_variable | **DELETE** /orgs/{org}/actions/variables/{name}/repositories/{repository_id} | Remove selected repository from an organization variable
*ActionsApi* | [**actions_slash_review_custom_gates_for_run**]docs/ActionsApi.md#actions_slash_review_custom_gates_for_run | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule | Review custom deployment protection rules for a workflow run
*ActionsApi* | [**actions_slash_review_pending_deployments_for_run**]docs/ActionsApi.md#actions_slash_review_pending_deployments_for_run | **POST** /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments | Review pending deployments for a workflow run
*ActionsApi* | [**actions_slash_set_allowed_actions_organization**]docs/ActionsApi.md#actions_slash_set_allowed_actions_organization | **PUT** /orgs/{org}/actions/permissions/selected-actions | Set allowed actions and reusable workflows for an organization
*ActionsApi* | [**actions_slash_set_allowed_actions_repository**]docs/ActionsApi.md#actions_slash_set_allowed_actions_repository | **PUT** /repos/{owner}/{repo}/actions/permissions/selected-actions | Set allowed actions and reusable workflows for a repository
*ActionsApi* | [**actions_slash_set_custom_labels_for_self_hosted_runner_for_org**]docs/ActionsApi.md#actions_slash_set_custom_labels_for_self_hosted_runner_for_org | **PUT** /orgs/{org}/actions/runners/{runner_id}/labels | Set custom labels for a self-hosted runner for an organization
*ActionsApi* | [**actions_slash_set_custom_labels_for_self_hosted_runner_for_repo**]docs/ActionsApi.md#actions_slash_set_custom_labels_for_self_hosted_runner_for_repo | **PUT** /repos/{owner}/{repo}/actions/runners/{runner_id}/labels | Set custom labels for a self-hosted runner for a repository
*ActionsApi* | [**actions_slash_set_custom_oidc_sub_claim_for_repo**]docs/ActionsApi.md#actions_slash_set_custom_oidc_sub_claim_for_repo | **PUT** /repos/{owner}/{repo}/actions/oidc/customization/sub | Set the customization template for an OIDC subject claim for a repository
*ActionsApi* | [**actions_slash_set_github_actions_default_workflow_permissions_organization**]docs/ActionsApi.md#actions_slash_set_github_actions_default_workflow_permissions_organization | **PUT** /orgs/{org}/actions/permissions/workflow | Set default workflow permissions for an organization
*ActionsApi* | [**actions_slash_set_github_actions_default_workflow_permissions_repository**]docs/ActionsApi.md#actions_slash_set_github_actions_default_workflow_permissions_repository | **PUT** /repos/{owner}/{repo}/actions/permissions/workflow | Set default workflow permissions for a repository
*ActionsApi* | [**actions_slash_set_github_actions_permissions_organization**]docs/ActionsApi.md#actions_slash_set_github_actions_permissions_organization | **PUT** /orgs/{org}/actions/permissions | Set GitHub Actions permissions for an organization
*ActionsApi* | [**actions_slash_set_github_actions_permissions_repository**]docs/ActionsApi.md#actions_slash_set_github_actions_permissions_repository | **PUT** /repos/{owner}/{repo}/actions/permissions | Set GitHub Actions permissions for a repository
*ActionsApi* | [**actions_slash_set_selected_repos_for_org_secret**]docs/ActionsApi.md#actions_slash_set_selected_repos_for_org_secret | **PUT** /orgs/{org}/actions/secrets/{secret_name}/repositories | Set selected repositories for an organization secret
*ActionsApi* | [**actions_slash_set_selected_repos_for_org_variable**]docs/ActionsApi.md#actions_slash_set_selected_repos_for_org_variable | **PUT** /orgs/{org}/actions/variables/{name}/repositories | Set selected repositories for an organization variable
*ActionsApi* | [**actions_slash_set_selected_repositories_enabled_github_actions_organization**]docs/ActionsApi.md#actions_slash_set_selected_repositories_enabled_github_actions_organization | **PUT** /orgs/{org}/actions/permissions/repositories | Set selected repositories enabled for GitHub Actions in an organization
*ActionsApi* | [**actions_slash_set_workflow_access_to_repository**]docs/ActionsApi.md#actions_slash_set_workflow_access_to_repository | **PUT** /repos/{owner}/{repo}/actions/permissions/access | Set the level of access for workflows outside of the repository
*ActionsApi* | [**actions_slash_update_environment_variable**]docs/ActionsApi.md#actions_slash_update_environment_variable | **PATCH** /repos/{owner}/{repo}/environments/{environment_name}/variables/{name} | Update an environment variable
*ActionsApi* | [**actions_slash_update_org_variable**]docs/ActionsApi.md#actions_slash_update_org_variable | **PATCH** /orgs/{org}/actions/variables/{name} | Update an organization variable
*ActionsApi* | [**actions_slash_update_repo_variable**]docs/ActionsApi.md#actions_slash_update_repo_variable | **PATCH** /repos/{owner}/{repo}/actions/variables/{name} | Update a repository variable
*ActivityApi* | [**activity_slash_check_repo_is_starred_by_authenticated_user**]docs/ActivityApi.md#activity_slash_check_repo_is_starred_by_authenticated_user | **GET** /user/starred/{owner}/{repo} | Check if a repository is starred by the authenticated user
*ActivityApi* | [**activity_slash_delete_repo_subscription**]docs/ActivityApi.md#activity_slash_delete_repo_subscription | **DELETE** /repos/{owner}/{repo}/subscription | Delete a repository subscription
*ActivityApi* | [**activity_slash_delete_thread_subscription**]docs/ActivityApi.md#activity_slash_delete_thread_subscription | **DELETE** /notifications/threads/{thread_id}/subscription | Delete a thread subscription
*ActivityApi* | [**activity_slash_get_feeds**]docs/ActivityApi.md#activity_slash_get_feeds | **GET** /feeds | Get feeds
*ActivityApi* | [**activity_slash_get_repo_subscription**]docs/ActivityApi.md#activity_slash_get_repo_subscription | **GET** /repos/{owner}/{repo}/subscription | Get a repository subscription
*ActivityApi* | [**activity_slash_get_thread**]docs/ActivityApi.md#activity_slash_get_thread | **GET** /notifications/threads/{thread_id} | Get a thread
*ActivityApi* | [**activity_slash_get_thread_subscription_for_authenticated_user**]docs/ActivityApi.md#activity_slash_get_thread_subscription_for_authenticated_user | **GET** /notifications/threads/{thread_id}/subscription | Get a thread subscription for the authenticated user
*ActivityApi* | [**activity_slash_list_events_for_authenticated_user**]docs/ActivityApi.md#activity_slash_list_events_for_authenticated_user | **GET** /users/{username}/events | List events for the authenticated user
*ActivityApi* | [**activity_slash_list_notifications_for_authenticated_user**]docs/ActivityApi.md#activity_slash_list_notifications_for_authenticated_user | **GET** /notifications | List notifications for the authenticated user
*ActivityApi* | [**activity_slash_list_org_events_for_authenticated_user**]docs/ActivityApi.md#activity_slash_list_org_events_for_authenticated_user | **GET** /users/{username}/events/orgs/{org} | List organization events for the authenticated user
*ActivityApi* | [**activity_slash_list_public_events**]docs/ActivityApi.md#activity_slash_list_public_events | **GET** /events | List public events
*ActivityApi* | [**activity_slash_list_public_events_for_repo_network**]docs/ActivityApi.md#activity_slash_list_public_events_for_repo_network | **GET** /networks/{owner}/{repo}/events | List public events for a network of repositories
*ActivityApi* | [**activity_slash_list_public_events_for_user**]docs/ActivityApi.md#activity_slash_list_public_events_for_user | **GET** /users/{username}/events/public | List public events for a user
*ActivityApi* | [**activity_slash_list_public_org_events**]docs/ActivityApi.md#activity_slash_list_public_org_events | **GET** /orgs/{org}/events | List public organization events
*ActivityApi* | [**activity_slash_list_received_events_for_user**]docs/ActivityApi.md#activity_slash_list_received_events_for_user | **GET** /users/{username}/received_events | List events received by the authenticated user
*ActivityApi* | [**activity_slash_list_received_public_events_for_user**]docs/ActivityApi.md#activity_slash_list_received_public_events_for_user | **GET** /users/{username}/received_events/public | List public events received by a user
*ActivityApi* | [**activity_slash_list_repo_events**]docs/ActivityApi.md#activity_slash_list_repo_events | **GET** /repos/{owner}/{repo}/events | List repository events
*ActivityApi* | [**activity_slash_list_repo_notifications_for_authenticated_user**]docs/ActivityApi.md#activity_slash_list_repo_notifications_for_authenticated_user | **GET** /repos/{owner}/{repo}/notifications | List repository notifications for the authenticated user
*ActivityApi* | [**activity_slash_list_repos_starred_by_authenticated_user**]docs/ActivityApi.md#activity_slash_list_repos_starred_by_authenticated_user | **GET** /user/starred | List repositories starred by the authenticated user
*ActivityApi* | [**activity_slash_list_repos_starred_by_user**]docs/ActivityApi.md#activity_slash_list_repos_starred_by_user | **GET** /users/{username}/starred | List repositories starred by a user
*ActivityApi* | [**activity_slash_list_repos_watched_by_user**]docs/ActivityApi.md#activity_slash_list_repos_watched_by_user | **GET** /users/{username}/subscriptions | List repositories watched by a user
*ActivityApi* | [**activity_slash_list_stargazers_for_repo**]docs/ActivityApi.md#activity_slash_list_stargazers_for_repo | **GET** /repos/{owner}/{repo}/stargazers | List stargazers
*ActivityApi* | [**activity_slash_list_watched_repos_for_authenticated_user**]docs/ActivityApi.md#activity_slash_list_watched_repos_for_authenticated_user | **GET** /user/subscriptions | List repositories watched by the authenticated user
*ActivityApi* | [**activity_slash_list_watchers_for_repo**]docs/ActivityApi.md#activity_slash_list_watchers_for_repo | **GET** /repos/{owner}/{repo}/subscribers | List watchers
*ActivityApi* | [**activity_slash_mark_notifications_as_read**]docs/ActivityApi.md#activity_slash_mark_notifications_as_read | **PUT** /notifications | Mark notifications as read
*ActivityApi* | [**activity_slash_mark_repo_notifications_as_read**]docs/ActivityApi.md#activity_slash_mark_repo_notifications_as_read | **PUT** /repos/{owner}/{repo}/notifications | Mark repository notifications as read
*ActivityApi* | [**activity_slash_mark_thread_as_done**]docs/ActivityApi.md#activity_slash_mark_thread_as_done | **DELETE** /notifications/threads/{thread_id} | Mark a thread as done
*ActivityApi* | [**activity_slash_mark_thread_as_read**]docs/ActivityApi.md#activity_slash_mark_thread_as_read | **PATCH** /notifications/threads/{thread_id} | Mark a thread as read
*ActivityApi* | [**activity_slash_set_repo_subscription**]docs/ActivityApi.md#activity_slash_set_repo_subscription | **PUT** /repos/{owner}/{repo}/subscription | Set a repository subscription
*ActivityApi* | [**activity_slash_set_thread_subscription**]docs/ActivityApi.md#activity_slash_set_thread_subscription | **PUT** /notifications/threads/{thread_id}/subscription | Set a thread subscription
*ActivityApi* | [**activity_slash_star_repo_for_authenticated_user**]docs/ActivityApi.md#activity_slash_star_repo_for_authenticated_user | **PUT** /user/starred/{owner}/{repo} | Star a repository for the authenticated user
*ActivityApi* | [**activity_slash_unstar_repo_for_authenticated_user**]docs/ActivityApi.md#activity_slash_unstar_repo_for_authenticated_user | **DELETE** /user/starred/{owner}/{repo} | Unstar a repository for the authenticated user
*AppsApi* | [**apps_slash_add_repo_to_installation_for_authenticated_user**]docs/AppsApi.md#apps_slash_add_repo_to_installation_for_authenticated_user | **PUT** /user/installations/{installation_id}/repositories/{repository_id} | Add a repository to an app installation
*AppsApi* | [**apps_slash_check_token**]docs/AppsApi.md#apps_slash_check_token | **POST** /applications/{client_id}/token | Check a token
*AppsApi* | [**apps_slash_create_from_manifest**]docs/AppsApi.md#apps_slash_create_from_manifest | **POST** /app-manifests/{code}/conversions | Create a GitHub App from a manifest
*AppsApi* | [**apps_slash_create_installation_access_token**]docs/AppsApi.md#apps_slash_create_installation_access_token | **POST** /app/installations/{installation_id}/access_tokens | Create an installation access token for an app
*AppsApi* | [**apps_slash_delete_authorization**]docs/AppsApi.md#apps_slash_delete_authorization | **DELETE** /applications/{client_id}/grant | Delete an app authorization
*AppsApi* | [**apps_slash_delete_installation**]docs/AppsApi.md#apps_slash_delete_installation | **DELETE** /app/installations/{installation_id} | Delete an installation for the authenticated app
*AppsApi* | [**apps_slash_delete_token**]docs/AppsApi.md#apps_slash_delete_token | **DELETE** /applications/{client_id}/token | Delete an app token
*AppsApi* | [**apps_slash_get_authenticated**]docs/AppsApi.md#apps_slash_get_authenticated | **GET** /app | Get the authenticated app
*AppsApi* | [**apps_slash_get_by_slug**]docs/AppsApi.md#apps_slash_get_by_slug | **GET** /apps/{app_slug} | Get an app
*AppsApi* | [**apps_slash_get_installation**]docs/AppsApi.md#apps_slash_get_installation | **GET** /app/installations/{installation_id} | Get an installation for the authenticated app
*AppsApi* | [**apps_slash_get_org_installation**]docs/AppsApi.md#apps_slash_get_org_installation | **GET** /orgs/{org}/installation | Get an organization installation for the authenticated app
*AppsApi* | [**apps_slash_get_repo_installation**]docs/AppsApi.md#apps_slash_get_repo_installation | **GET** /repos/{owner}/{repo}/installation | Get a repository installation for the authenticated app
*AppsApi* | [**apps_slash_get_subscription_plan_for_account**]docs/AppsApi.md#apps_slash_get_subscription_plan_for_account | **GET** /marketplace_listing/accounts/{account_id} | Get a subscription plan for an account
*AppsApi* | [**apps_slash_get_subscription_plan_for_account_stubbed**]docs/AppsApi.md#apps_slash_get_subscription_plan_for_account_stubbed | **GET** /marketplace_listing/stubbed/accounts/{account_id} | Get a subscription plan for an account (stubbed)
*AppsApi* | [**apps_slash_get_user_installation**]docs/AppsApi.md#apps_slash_get_user_installation | **GET** /users/{username}/installation | Get a user installation for the authenticated app
*AppsApi* | [**apps_slash_get_webhook_config_for_app**]docs/AppsApi.md#apps_slash_get_webhook_config_for_app | **GET** /app/hook/config | Get a webhook configuration for an app
*AppsApi* | [**apps_slash_get_webhook_delivery**]docs/AppsApi.md#apps_slash_get_webhook_delivery | **GET** /app/hook/deliveries/{delivery_id} | Get a delivery for an app webhook
*AppsApi* | [**apps_slash_list_accounts_for_plan**]docs/AppsApi.md#apps_slash_list_accounts_for_plan | **GET** /marketplace_listing/plans/{plan_id}/accounts | List accounts for a plan
*AppsApi* | [**apps_slash_list_accounts_for_plan_stubbed**]docs/AppsApi.md#apps_slash_list_accounts_for_plan_stubbed | **GET** /marketplace_listing/stubbed/plans/{plan_id}/accounts | List accounts for a plan (stubbed)
*AppsApi* | [**apps_slash_list_installation_repos_for_authenticated_user**]docs/AppsApi.md#apps_slash_list_installation_repos_for_authenticated_user | **GET** /user/installations/{installation_id}/repositories | List repositories accessible to the user access token
*AppsApi* | [**apps_slash_list_installation_requests_for_authenticated_app**]docs/AppsApi.md#apps_slash_list_installation_requests_for_authenticated_app | **GET** /app/installation-requests | List installation requests for the authenticated app
*AppsApi* | [**apps_slash_list_installations**]docs/AppsApi.md#apps_slash_list_installations | **GET** /app/installations | List installations for the authenticated app
*AppsApi* | [**apps_slash_list_installations_for_authenticated_user**]docs/AppsApi.md#apps_slash_list_installations_for_authenticated_user | **GET** /user/installations | List app installations accessible to the user access token
*AppsApi* | [**apps_slash_list_plans**]docs/AppsApi.md#apps_slash_list_plans | **GET** /marketplace_listing/plans | List plans
*AppsApi* | [**apps_slash_list_plans_stubbed**]docs/AppsApi.md#apps_slash_list_plans_stubbed | **GET** /marketplace_listing/stubbed/plans | List plans (stubbed)
*AppsApi* | [**apps_slash_list_repos_accessible_to_installation**]docs/AppsApi.md#apps_slash_list_repos_accessible_to_installation | **GET** /installation/repositories | List repositories accessible to the app installation
*AppsApi* | [**apps_slash_list_subscriptions_for_authenticated_user**]docs/AppsApi.md#apps_slash_list_subscriptions_for_authenticated_user | **GET** /user/marketplace_purchases | List subscriptions for the authenticated user
*AppsApi* | [**apps_slash_list_subscriptions_for_authenticated_user_stubbed**]docs/AppsApi.md#apps_slash_list_subscriptions_for_authenticated_user_stubbed | **GET** /user/marketplace_purchases/stubbed | List subscriptions for the authenticated user (stubbed)
*AppsApi* | [**apps_slash_list_webhook_deliveries**]docs/AppsApi.md#apps_slash_list_webhook_deliveries | **GET** /app/hook/deliveries | List deliveries for an app webhook
*AppsApi* | [**apps_slash_redeliver_webhook_delivery**]docs/AppsApi.md#apps_slash_redeliver_webhook_delivery | **POST** /app/hook/deliveries/{delivery_id}/attempts | Redeliver a delivery for an app webhook
*AppsApi* | [**apps_slash_remove_repo_from_installation_for_authenticated_user**]docs/AppsApi.md#apps_slash_remove_repo_from_installation_for_authenticated_user | **DELETE** /user/installations/{installation_id}/repositories/{repository_id} | Remove a repository from an app installation
*AppsApi* | [**apps_slash_reset_token**]docs/AppsApi.md#apps_slash_reset_token | **PATCH** /applications/{client_id}/token | Reset a token
*AppsApi* | [**apps_slash_revoke_installation_access_token**]docs/AppsApi.md#apps_slash_revoke_installation_access_token | **DELETE** /installation/token | Revoke an installation access token
*AppsApi* | [**apps_slash_scope_token**]docs/AppsApi.md#apps_slash_scope_token | **POST** /applications/{client_id}/token/scoped | Create a scoped access token
*AppsApi* | [**apps_slash_suspend_installation**]docs/AppsApi.md#apps_slash_suspend_installation | **PUT** /app/installations/{installation_id}/suspended | Suspend an app installation
*AppsApi* | [**apps_slash_unsuspend_installation**]docs/AppsApi.md#apps_slash_unsuspend_installation | **DELETE** /app/installations/{installation_id}/suspended | Unsuspend an app installation
*AppsApi* | [**apps_slash_update_webhook_config_for_app**]docs/AppsApi.md#apps_slash_update_webhook_config_for_app | **PATCH** /app/hook/config | Update a webhook configuration for an app
*BillingApi* | [**billing_slash_get_github_actions_billing_org**]docs/BillingApi.md#billing_slash_get_github_actions_billing_org | **GET** /orgs/{org}/settings/billing/actions | Get GitHub Actions billing for an organization
*BillingApi* | [**billing_slash_get_github_actions_billing_user**]docs/BillingApi.md#billing_slash_get_github_actions_billing_user | **GET** /users/{username}/settings/billing/actions | Get GitHub Actions billing for a user
*BillingApi* | [**billing_slash_get_github_packages_billing_org**]docs/BillingApi.md#billing_slash_get_github_packages_billing_org | **GET** /orgs/{org}/settings/billing/packages | Get GitHub Packages billing for an organization
*BillingApi* | [**billing_slash_get_github_packages_billing_user**]docs/BillingApi.md#billing_slash_get_github_packages_billing_user | **GET** /users/{username}/settings/billing/packages | Get GitHub Packages billing for a user
*BillingApi* | [**billing_slash_get_shared_storage_billing_org**]docs/BillingApi.md#billing_slash_get_shared_storage_billing_org | **GET** /orgs/{org}/settings/billing/shared-storage | Get shared storage billing for an organization
*BillingApi* | [**billing_slash_get_shared_storage_billing_user**]docs/BillingApi.md#billing_slash_get_shared_storage_billing_user | **GET** /users/{username}/settings/billing/shared-storage | Get shared storage billing for a user
*ChecksApi* | [**checks_slash_create**]docs/ChecksApi.md#checks_slash_create | **POST** /repos/{owner}/{repo}/check-runs | Create a check run
*ChecksApi* | [**checks_slash_create_suite**]docs/ChecksApi.md#checks_slash_create_suite | **POST** /repos/{owner}/{repo}/check-suites | Create a check suite
*ChecksApi* | [**checks_slash_get**]docs/ChecksApi.md#checks_slash_get | **GET** /repos/{owner}/{repo}/check-runs/{check_run_id} | Get a check run
*ChecksApi* | [**checks_slash_get_suite**]docs/ChecksApi.md#checks_slash_get_suite | **GET** /repos/{owner}/{repo}/check-suites/{check_suite_id} | Get a check suite
*ChecksApi* | [**checks_slash_list_annotations**]docs/ChecksApi.md#checks_slash_list_annotations | **GET** /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations | List check run annotations
*ChecksApi* | [**checks_slash_list_for_ref**]docs/ChecksApi.md#checks_slash_list_for_ref | **GET** /repos/{owner}/{repo}/commits/{ref}/check-runs | List check runs for a Git reference
*ChecksApi* | [**checks_slash_list_for_suite**]docs/ChecksApi.md#checks_slash_list_for_suite | **GET** /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs | List check runs in a check suite
*ChecksApi* | [**checks_slash_list_suites_for_ref**]docs/ChecksApi.md#checks_slash_list_suites_for_ref | **GET** /repos/{owner}/{repo}/commits/{ref}/check-suites | List check suites for a Git reference
*ChecksApi* | [**checks_slash_rerequest_run**]docs/ChecksApi.md#checks_slash_rerequest_run | **POST** /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest | Rerequest a check run
*ChecksApi* | [**checks_slash_rerequest_suite**]docs/ChecksApi.md#checks_slash_rerequest_suite | **POST** /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest | Rerequest a check suite
*ChecksApi* | [**checks_slash_set_suites_preferences**]docs/ChecksApi.md#checks_slash_set_suites_preferences | **PATCH** /repos/{owner}/{repo}/check-suites/preferences | Update repository preferences for check suites
*ChecksApi* | [**checks_slash_update**]docs/ChecksApi.md#checks_slash_update | **PATCH** /repos/{owner}/{repo}/check-runs/{check_run_id} | Update a check run
*ClassroomApi* | [**classroom_slash_get_a_classroom**]docs/ClassroomApi.md#classroom_slash_get_a_classroom | **GET** /classrooms/{classroom_id} | Get a classroom
*ClassroomApi* | [**classroom_slash_get_an_assignment**]docs/ClassroomApi.md#classroom_slash_get_an_assignment | **GET** /assignments/{assignment_id} | Get an assignment
*ClassroomApi* | [**classroom_slash_get_assignment_grades**]docs/ClassroomApi.md#classroom_slash_get_assignment_grades | **GET** /assignments/{assignment_id}/grades | Get assignment grades
*ClassroomApi* | [**classroom_slash_list_accepted_assigments_for_an_assignment**]docs/ClassroomApi.md#classroom_slash_list_accepted_assigments_for_an_assignment | **GET** /assignments/{assignment_id}/accepted_assignments | List accepted assignments for an assignment
*ClassroomApi* | [**classroom_slash_list_assignments_for_a_classroom**]docs/ClassroomApi.md#classroom_slash_list_assignments_for_a_classroom | **GET** /classrooms/{classroom_id}/assignments | List assignments for a classroom
*ClassroomApi* | [**classroom_slash_list_classrooms**]docs/ClassroomApi.md#classroom_slash_list_classrooms | **GET** /classrooms | List classrooms
*CodeScanningApi* | [**code_scanning_slash_delete_analysis**]docs/CodeScanningApi.md#code_scanning_slash_delete_analysis | **DELETE** /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id} | Delete a code scanning analysis from a repository
*CodeScanningApi* | [**code_scanning_slash_get_alert**]docs/CodeScanningApi.md#code_scanning_slash_get_alert | **GET** /repos/{owner}/{repo}/code-scanning/alerts/{alert_number} | Get a code scanning alert
*CodeScanningApi* | [**code_scanning_slash_get_analysis**]docs/CodeScanningApi.md#code_scanning_slash_get_analysis | **GET** /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id} | Get a code scanning analysis for a repository
*CodeScanningApi* | [**code_scanning_slash_get_codeql_database**]docs/CodeScanningApi.md#code_scanning_slash_get_codeql_database | **GET** /repos/{owner}/{repo}/code-scanning/codeql/databases/{language} | Get a CodeQL database for a repository
*CodeScanningApi* | [**code_scanning_slash_get_default_setup**]docs/CodeScanningApi.md#code_scanning_slash_get_default_setup | **GET** /repos/{owner}/{repo}/code-scanning/default-setup | Get a code scanning default setup configuration
*CodeScanningApi* | [**code_scanning_slash_get_sarif**]docs/CodeScanningApi.md#code_scanning_slash_get_sarif | **GET** /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id} | Get information about a SARIF upload
*CodeScanningApi* | [**code_scanning_slash_list_alert_instances**]docs/CodeScanningApi.md#code_scanning_slash_list_alert_instances | **GET** /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances | List instances of a code scanning alert
*CodeScanningApi* | [**code_scanning_slash_list_alerts_for_org**]docs/CodeScanningApi.md#code_scanning_slash_list_alerts_for_org | **GET** /orgs/{org}/code-scanning/alerts | List code scanning alerts for an organization
*CodeScanningApi* | [**code_scanning_slash_list_alerts_for_repo**]docs/CodeScanningApi.md#code_scanning_slash_list_alerts_for_repo | **GET** /repos/{owner}/{repo}/code-scanning/alerts | List code scanning alerts for a repository
*CodeScanningApi* | [**code_scanning_slash_list_codeql_databases**]docs/CodeScanningApi.md#code_scanning_slash_list_codeql_databases | **GET** /repos/{owner}/{repo}/code-scanning/codeql/databases | List CodeQL databases for a repository
*CodeScanningApi* | [**code_scanning_slash_list_recent_analyses**]docs/CodeScanningApi.md#code_scanning_slash_list_recent_analyses | **GET** /repos/{owner}/{repo}/code-scanning/analyses | List code scanning analyses for a repository
*CodeScanningApi* | [**code_scanning_slash_update_alert**]docs/CodeScanningApi.md#code_scanning_slash_update_alert | **PATCH** /repos/{owner}/{repo}/code-scanning/alerts/{alert_number} | Update a code scanning alert
*CodeScanningApi* | [**code_scanning_slash_update_default_setup**]docs/CodeScanningApi.md#code_scanning_slash_update_default_setup | **PATCH** /repos/{owner}/{repo}/code-scanning/default-setup | Update a code scanning default setup configuration
*CodeScanningApi* | [**code_scanning_slash_upload_sarif**]docs/CodeScanningApi.md#code_scanning_slash_upload_sarif | **POST** /repos/{owner}/{repo}/code-scanning/sarifs | Upload an analysis as SARIF data
*CodesOfConductApi* | [**codes_of_conduct_slash_get_all_codes_of_conduct**]docs/CodesOfConductApi.md#codes_of_conduct_slash_get_all_codes_of_conduct | **GET** /codes_of_conduct | Get all codes of conduct
*CodesOfConductApi* | [**codes_of_conduct_slash_get_conduct_code**]docs/CodesOfConductApi.md#codes_of_conduct_slash_get_conduct_code | **GET** /codes_of_conduct/{key} | Get a code of conduct
*CodespacesApi* | [**codespaces_slash_add_repository_for_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_add_repository_for_secret_for_authenticated_user | **PUT** /user/codespaces/secrets/{secret_name}/repositories/{repository_id} | Add a selected repository to a user secret
*CodespacesApi* | [**codespaces_slash_add_selected_repo_to_org_secret**]docs/CodespacesApi.md#codespaces_slash_add_selected_repo_to_org_secret | **PUT** /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id} | Add selected repository to an organization secret
*CodespacesApi* | [**codespaces_slash_check_permissions_for_devcontainer**]docs/CodespacesApi.md#codespaces_slash_check_permissions_for_devcontainer | **GET** /repos/{owner}/{repo}/codespaces/permissions_check | Check if permissions defined by a devcontainer have been accepted by the authenticated user
*CodespacesApi* | [**codespaces_slash_codespace_machines_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_codespace_machines_for_authenticated_user | **GET** /user/codespaces/{codespace_name}/machines | List machine types for a codespace
*CodespacesApi* | [**codespaces_slash_create_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_create_for_authenticated_user | **POST** /user/codespaces | Create a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_create_or_update_org_secret**]docs/CodespacesApi.md#codespaces_slash_create_or_update_org_secret | **PUT** /orgs/{org}/codespaces/secrets/{secret_name} | Create or update an organization secret
*CodespacesApi* | [**codespaces_slash_create_or_update_repo_secret**]docs/CodespacesApi.md#codespaces_slash_create_or_update_repo_secret | **PUT** /repos/{owner}/{repo}/codespaces/secrets/{secret_name} | Create or update a repository secret
*CodespacesApi* | [**codespaces_slash_create_or_update_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_create_or_update_secret_for_authenticated_user | **PUT** /user/codespaces/secrets/{secret_name} | Create or update a secret for the authenticated user
*CodespacesApi* | [**codespaces_slash_create_with_pr_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_create_with_pr_for_authenticated_user | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/codespaces | Create a codespace from a pull request
*CodespacesApi* | [**codespaces_slash_create_with_repo_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_create_with_repo_for_authenticated_user | **POST** /repos/{owner}/{repo}/codespaces | Create a codespace in a repository
*CodespacesApi* | [**codespaces_slash_delete_codespaces_access_users**]docs/CodespacesApi.md#codespaces_slash_delete_codespaces_access_users | **DELETE** /orgs/{org}/codespaces/access/selected_users | Remove users from Codespaces access for an organization
*CodespacesApi* | [**codespaces_slash_delete_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_delete_for_authenticated_user | **DELETE** /user/codespaces/{codespace_name} | Delete a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_delete_from_organization**]docs/CodespacesApi.md#codespaces_slash_delete_from_organization | **DELETE** /orgs/{org}/members/{username}/codespaces/{codespace_name} | Delete a codespace from the organization
*CodespacesApi* | [**codespaces_slash_delete_org_secret**]docs/CodespacesApi.md#codespaces_slash_delete_org_secret | **DELETE** /orgs/{org}/codespaces/secrets/{secret_name} | Delete an organization secret
*CodespacesApi* | [**codespaces_slash_delete_repo_secret**]docs/CodespacesApi.md#codespaces_slash_delete_repo_secret | **DELETE** /repos/{owner}/{repo}/codespaces/secrets/{secret_name} | Delete a repository secret
*CodespacesApi* | [**codespaces_slash_delete_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_delete_secret_for_authenticated_user | **DELETE** /user/codespaces/secrets/{secret_name} | Delete a secret for the authenticated user
*CodespacesApi* | [**codespaces_slash_export_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_export_for_authenticated_user | **POST** /user/codespaces/{codespace_name}/exports | Export a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_get_codespaces_for_user_in_org**]docs/CodespacesApi.md#codespaces_slash_get_codespaces_for_user_in_org | **GET** /orgs/{org}/members/{username}/codespaces | List codespaces for a user in organization
*CodespacesApi* | [**codespaces_slash_get_export_details_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_get_export_details_for_authenticated_user | **GET** /user/codespaces/{codespace_name}/exports/{export_id} | Get details about a codespace export
*CodespacesApi* | [**codespaces_slash_get_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_get_for_authenticated_user | **GET** /user/codespaces/{codespace_name} | Get a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_get_org_public_key**]docs/CodespacesApi.md#codespaces_slash_get_org_public_key | **GET** /orgs/{org}/codespaces/secrets/public-key | Get an organization public key
*CodespacesApi* | [**codespaces_slash_get_org_secret**]docs/CodespacesApi.md#codespaces_slash_get_org_secret | **GET** /orgs/{org}/codespaces/secrets/{secret_name} | Get an organization secret
*CodespacesApi* | [**codespaces_slash_get_public_key_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_get_public_key_for_authenticated_user | **GET** /user/codespaces/secrets/public-key | Get public key for the authenticated user
*CodespacesApi* | [**codespaces_slash_get_repo_public_key**]docs/CodespacesApi.md#codespaces_slash_get_repo_public_key | **GET** /repos/{owner}/{repo}/codespaces/secrets/public-key | Get a repository public key
*CodespacesApi* | [**codespaces_slash_get_repo_secret**]docs/CodespacesApi.md#codespaces_slash_get_repo_secret | **GET** /repos/{owner}/{repo}/codespaces/secrets/{secret_name} | Get a repository secret
*CodespacesApi* | [**codespaces_slash_get_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_get_secret_for_authenticated_user | **GET** /user/codespaces/secrets/{secret_name} | Get a secret for the authenticated user
*CodespacesApi* | [**codespaces_slash_list_devcontainers_in_repository_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_list_devcontainers_in_repository_for_authenticated_user | **GET** /repos/{owner}/{repo}/codespaces/devcontainers | List devcontainer configurations in a repository for the authenticated user
*CodespacesApi* | [**codespaces_slash_list_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_list_for_authenticated_user | **GET** /user/codespaces | List codespaces for the authenticated user
*CodespacesApi* | [**codespaces_slash_list_in_organization**]docs/CodespacesApi.md#codespaces_slash_list_in_organization | **GET** /orgs/{org}/codespaces | List codespaces for the organization
*CodespacesApi* | [**codespaces_slash_list_in_repository_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_list_in_repository_for_authenticated_user | **GET** /repos/{owner}/{repo}/codespaces | List codespaces in a repository for the authenticated user
*CodespacesApi* | [**codespaces_slash_list_org_secrets**]docs/CodespacesApi.md#codespaces_slash_list_org_secrets | **GET** /orgs/{org}/codespaces/secrets | List organization secrets
*CodespacesApi* | [**codespaces_slash_list_repo_secrets**]docs/CodespacesApi.md#codespaces_slash_list_repo_secrets | **GET** /repos/{owner}/{repo}/codespaces/secrets | List repository secrets
*CodespacesApi* | [**codespaces_slash_list_repositories_for_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_list_repositories_for_secret_for_authenticated_user | **GET** /user/codespaces/secrets/{secret_name}/repositories | List selected repositories for a user secret
*CodespacesApi* | [**codespaces_slash_list_secrets_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_list_secrets_for_authenticated_user | **GET** /user/codespaces/secrets | List secrets for the authenticated user
*CodespacesApi* | [**codespaces_slash_list_selected_repos_for_org_secret**]docs/CodespacesApi.md#codespaces_slash_list_selected_repos_for_org_secret | **GET** /orgs/{org}/codespaces/secrets/{secret_name}/repositories | List selected repositories for an organization secret
*CodespacesApi* | [**codespaces_slash_pre_flight_with_repo_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_pre_flight_with_repo_for_authenticated_user | **GET** /repos/{owner}/{repo}/codespaces/new | Get default attributes for a codespace
*CodespacesApi* | [**codespaces_slash_publish_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_publish_for_authenticated_user | **POST** /user/codespaces/{codespace_name}/publish | Create a repository from an unpublished codespace
*CodespacesApi* | [**codespaces_slash_remove_repository_for_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_remove_repository_for_secret_for_authenticated_user | **DELETE** /user/codespaces/secrets/{secret_name}/repositories/{repository_id} | Remove a selected repository from a user secret
*CodespacesApi* | [**codespaces_slash_remove_selected_repo_from_org_secret**]docs/CodespacesApi.md#codespaces_slash_remove_selected_repo_from_org_secret | **DELETE** /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id} | Remove selected repository from an organization secret
*CodespacesApi* | [**codespaces_slash_repo_machines_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_repo_machines_for_authenticated_user | **GET** /repos/{owner}/{repo}/codespaces/machines | List available machine types for a repository
*CodespacesApi* | [**codespaces_slash_set_codespaces_access**]docs/CodespacesApi.md#codespaces_slash_set_codespaces_access | **PUT** /orgs/{org}/codespaces/access | Manage access control for organization codespaces
*CodespacesApi* | [**codespaces_slash_set_codespaces_access_users**]docs/CodespacesApi.md#codespaces_slash_set_codespaces_access_users | **POST** /orgs/{org}/codespaces/access/selected_users | Add users to Codespaces access for an organization
*CodespacesApi* | [**codespaces_slash_set_repositories_for_secret_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_set_repositories_for_secret_for_authenticated_user | **PUT** /user/codespaces/secrets/{secret_name}/repositories | Set selected repositories for a user secret
*CodespacesApi* | [**codespaces_slash_set_selected_repos_for_org_secret**]docs/CodespacesApi.md#codespaces_slash_set_selected_repos_for_org_secret | **PUT** /orgs/{org}/codespaces/secrets/{secret_name}/repositories | Set selected repositories for an organization secret
*CodespacesApi* | [**codespaces_slash_start_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_start_for_authenticated_user | **POST** /user/codespaces/{codespace_name}/start | Start a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_stop_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_stop_for_authenticated_user | **POST** /user/codespaces/{codespace_name}/stop | Stop a codespace for the authenticated user
*CodespacesApi* | [**codespaces_slash_stop_in_organization**]docs/CodespacesApi.md#codespaces_slash_stop_in_organization | **POST** /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop | Stop a codespace for an organization user
*CodespacesApi* | [**codespaces_slash_update_for_authenticated_user**]docs/CodespacesApi.md#codespaces_slash_update_for_authenticated_user | **PATCH** /user/codespaces/{codespace_name} | Update a codespace for the authenticated user
*CopilotApi* | [**copilot_slash_add_copilot_seats_for_teams**]docs/CopilotApi.md#copilot_slash_add_copilot_seats_for_teams | **POST** /orgs/{org}/copilot/billing/selected_teams | Add teams to the Copilot subscription for an organization
*CopilotApi* | [**copilot_slash_add_copilot_seats_for_users**]docs/CopilotApi.md#copilot_slash_add_copilot_seats_for_users | **POST** /orgs/{org}/copilot/billing/selected_users | Add users to the Copilot subscription for an organization
*CopilotApi* | [**copilot_slash_cancel_copilot_seat_assignment_for_teams**]docs/CopilotApi.md#copilot_slash_cancel_copilot_seat_assignment_for_teams | **DELETE** /orgs/{org}/copilot/billing/selected_teams | Remove teams from the Copilot subscription for an organization
*CopilotApi* | [**copilot_slash_cancel_copilot_seat_assignment_for_users**]docs/CopilotApi.md#copilot_slash_cancel_copilot_seat_assignment_for_users | **DELETE** /orgs/{org}/copilot/billing/selected_users | Remove users from the Copilot subscription for an organization
*CopilotApi* | [**copilot_slash_get_copilot_organization_details**]docs/CopilotApi.md#copilot_slash_get_copilot_organization_details | **GET** /orgs/{org}/copilot/billing | Get Copilot seat information and settings for an organization
*CopilotApi* | [**copilot_slash_get_copilot_seat_details_for_user**]docs/CopilotApi.md#copilot_slash_get_copilot_seat_details_for_user | **GET** /orgs/{org}/members/{username}/copilot | Get Copilot seat assignment details for a user
*CopilotApi* | [**copilot_slash_list_copilot_seats**]docs/CopilotApi.md#copilot_slash_list_copilot_seats | **GET** /orgs/{org}/copilot/billing/seats | List all Copilot seat assignments for an organization
*CopilotApi* | [**copilot_slash_usage_metrics_for_enterprise**]docs/CopilotApi.md#copilot_slash_usage_metrics_for_enterprise | **GET** /enterprises/{enterprise}/copilot/usage | Get a summary of Copilot usage for enterprise members
*CopilotApi* | [**copilot_slash_usage_metrics_for_org**]docs/CopilotApi.md#copilot_slash_usage_metrics_for_org | **GET** /orgs/{org}/copilot/usage | Get a summary of Copilot usage for organization members
*CopilotApi* | [**copilot_slash_usage_metrics_for_team**]docs/CopilotApi.md#copilot_slash_usage_metrics_for_team | **GET** /orgs/{org}/team/{team_slug}/copilot/usage | Get a summary of Copilot usage for a team
*DependabotApi* | [**dependabot_slash_add_selected_repo_to_org_secret**]docs/DependabotApi.md#dependabot_slash_add_selected_repo_to_org_secret | **PUT** /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id} | Add selected repository to an organization secret
*DependabotApi* | [**dependabot_slash_create_or_update_org_secret**]docs/DependabotApi.md#dependabot_slash_create_or_update_org_secret | **PUT** /orgs/{org}/dependabot/secrets/{secret_name} | Create or update an organization secret
*DependabotApi* | [**dependabot_slash_create_or_update_repo_secret**]docs/DependabotApi.md#dependabot_slash_create_or_update_repo_secret | **PUT** /repos/{owner}/{repo}/dependabot/secrets/{secret_name} | Create or update a repository secret
*DependabotApi* | [**dependabot_slash_delete_org_secret**]docs/DependabotApi.md#dependabot_slash_delete_org_secret | **DELETE** /orgs/{org}/dependabot/secrets/{secret_name} | Delete an organization secret
*DependabotApi* | [**dependabot_slash_delete_repo_secret**]docs/DependabotApi.md#dependabot_slash_delete_repo_secret | **DELETE** /repos/{owner}/{repo}/dependabot/secrets/{secret_name} | Delete a repository secret
*DependabotApi* | [**dependabot_slash_get_alert**]docs/DependabotApi.md#dependabot_slash_get_alert | **GET** /repos/{owner}/{repo}/dependabot/alerts/{alert_number} | Get a Dependabot alert
*DependabotApi* | [**dependabot_slash_get_org_public_key**]docs/DependabotApi.md#dependabot_slash_get_org_public_key | **GET** /orgs/{org}/dependabot/secrets/public-key | Get an organization public key
*DependabotApi* | [**dependabot_slash_get_org_secret**]docs/DependabotApi.md#dependabot_slash_get_org_secret | **GET** /orgs/{org}/dependabot/secrets/{secret_name} | Get an organization secret
*DependabotApi* | [**dependabot_slash_get_repo_public_key**]docs/DependabotApi.md#dependabot_slash_get_repo_public_key | **GET** /repos/{owner}/{repo}/dependabot/secrets/public-key | Get a repository public key
*DependabotApi* | [**dependabot_slash_get_repo_secret**]docs/DependabotApi.md#dependabot_slash_get_repo_secret | **GET** /repos/{owner}/{repo}/dependabot/secrets/{secret_name} | Get a repository secret
*DependabotApi* | [**dependabot_slash_list_alerts_for_enterprise**]docs/DependabotApi.md#dependabot_slash_list_alerts_for_enterprise | **GET** /enterprises/{enterprise}/dependabot/alerts | List Dependabot alerts for an enterprise
*DependabotApi* | [**dependabot_slash_list_alerts_for_org**]docs/DependabotApi.md#dependabot_slash_list_alerts_for_org | **GET** /orgs/{org}/dependabot/alerts | List Dependabot alerts for an organization
*DependabotApi* | [**dependabot_slash_list_alerts_for_repo**]docs/DependabotApi.md#dependabot_slash_list_alerts_for_repo | **GET** /repos/{owner}/{repo}/dependabot/alerts | List Dependabot alerts for a repository
*DependabotApi* | [**dependabot_slash_list_org_secrets**]docs/DependabotApi.md#dependabot_slash_list_org_secrets | **GET** /orgs/{org}/dependabot/secrets | List organization secrets
*DependabotApi* | [**dependabot_slash_list_repo_secrets**]docs/DependabotApi.md#dependabot_slash_list_repo_secrets | **GET** /repos/{owner}/{repo}/dependabot/secrets | List repository secrets
*DependabotApi* | [**dependabot_slash_list_selected_repos_for_org_secret**]docs/DependabotApi.md#dependabot_slash_list_selected_repos_for_org_secret | **GET** /orgs/{org}/dependabot/secrets/{secret_name}/repositories | List selected repositories for an organization secret
*DependabotApi* | [**dependabot_slash_remove_selected_repo_from_org_secret**]docs/DependabotApi.md#dependabot_slash_remove_selected_repo_from_org_secret | **DELETE** /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id} | Remove selected repository from an organization secret
*DependabotApi* | [**dependabot_slash_set_selected_repos_for_org_secret**]docs/DependabotApi.md#dependabot_slash_set_selected_repos_for_org_secret | **PUT** /orgs/{org}/dependabot/secrets/{secret_name}/repositories | Set selected repositories for an organization secret
*DependabotApi* | [**dependabot_slash_update_alert**]docs/DependabotApi.md#dependabot_slash_update_alert | **PATCH** /repos/{owner}/{repo}/dependabot/alerts/{alert_number} | Update a Dependabot alert
*DependencyGraphApi* | [**dependency_graph_slash_create_repository_snapshot**]docs/DependencyGraphApi.md#dependency_graph_slash_create_repository_snapshot | **POST** /repos/{owner}/{repo}/dependency-graph/snapshots | Create a snapshot of dependencies for a repository
*DependencyGraphApi* | [**dependency_graph_slash_diff_range**]docs/DependencyGraphApi.md#dependency_graph_slash_diff_range | **GET** /repos/{owner}/{repo}/dependency-graph/compare/{basehead} | Get a diff of the dependencies between commits
*DependencyGraphApi* | [**dependency_graph_slash_export_sbom**]docs/DependencyGraphApi.md#dependency_graph_slash_export_sbom | **GET** /repos/{owner}/{repo}/dependency-graph/sbom | Export a software bill of materials (SBOM) for a repository.
*EmojisApi* | [**emojis_slash_get**]docs/EmojisApi.md#emojis_slash_get | **GET** /emojis | Get emojis
*GistsApi* | [**gists_slash_check_is_starred**]docs/GistsApi.md#gists_slash_check_is_starred | **GET** /gists/{gist_id}/star | Check if a gist is starred
*GistsApi* | [**gists_slash_create**]docs/GistsApi.md#gists_slash_create | **POST** /gists | Create a gist
*GistsApi* | [**gists_slash_create_comment**]docs/GistsApi.md#gists_slash_create_comment | **POST** /gists/{gist_id}/comments | Create a gist comment
*GistsApi* | [**gists_slash_delete**]docs/GistsApi.md#gists_slash_delete | **DELETE** /gists/{gist_id} | Delete a gist
*GistsApi* | [**gists_slash_delete_comment**]docs/GistsApi.md#gists_slash_delete_comment | **DELETE** /gists/{gist_id}/comments/{comment_id} | Delete a gist comment
*GistsApi* | [**gists_slash_fork**]docs/GistsApi.md#gists_slash_fork | **POST** /gists/{gist_id}/forks | Fork a gist
*GistsApi* | [**gists_slash_get**]docs/GistsApi.md#gists_slash_get | **GET** /gists/{gist_id} | Get a gist
*GistsApi* | [**gists_slash_get_comment**]docs/GistsApi.md#gists_slash_get_comment | **GET** /gists/{gist_id}/comments/{comment_id} | Get a gist comment
*GistsApi* | [**gists_slash_get_revision**]docs/GistsApi.md#gists_slash_get_revision | **GET** /gists/{gist_id}/{sha} | Get a gist revision
*GistsApi* | [**gists_slash_list**]docs/GistsApi.md#gists_slash_list | **GET** /gists | List gists for the authenticated user
*GistsApi* | [**gists_slash_list_comments**]docs/GistsApi.md#gists_slash_list_comments | **GET** /gists/{gist_id}/comments | List gist comments
*GistsApi* | [**gists_slash_list_commits**]docs/GistsApi.md#gists_slash_list_commits | **GET** /gists/{gist_id}/commits | List gist commits
*GistsApi* | [**gists_slash_list_for_user**]docs/GistsApi.md#gists_slash_list_for_user | **GET** /users/{username}/gists | List gists for a user
*GistsApi* | [**gists_slash_list_forks**]docs/GistsApi.md#gists_slash_list_forks | **GET** /gists/{gist_id}/forks | List gist forks
*GistsApi* | [**gists_slash_list_public**]docs/GistsApi.md#gists_slash_list_public | **GET** /gists/public | List public gists
*GistsApi* | [**gists_slash_list_starred**]docs/GistsApi.md#gists_slash_list_starred | **GET** /gists/starred | List starred gists
*GistsApi* | [**gists_slash_star**]docs/GistsApi.md#gists_slash_star | **PUT** /gists/{gist_id}/star | Star a gist
*GistsApi* | [**gists_slash_unstar**]docs/GistsApi.md#gists_slash_unstar | **DELETE** /gists/{gist_id}/star | Unstar a gist
*GistsApi* | [**gists_slash_update**]docs/GistsApi.md#gists_slash_update | **PATCH** /gists/{gist_id} | Update a gist
*GistsApi* | [**gists_slash_update_comment**]docs/GistsApi.md#gists_slash_update_comment | **PATCH** /gists/{gist_id}/comments/{comment_id} | Update a gist comment
*GitApi* | [**git_slash_create_blob**]docs/GitApi.md#git_slash_create_blob | **POST** /repos/{owner}/{repo}/git/blobs | Create a blob
*GitApi* | [**git_slash_create_commit**]docs/GitApi.md#git_slash_create_commit | **POST** /repos/{owner}/{repo}/git/commits | Create a commit
*GitApi* | [**git_slash_create_ref**]docs/GitApi.md#git_slash_create_ref | **POST** /repos/{owner}/{repo}/git/refs | Create a reference
*GitApi* | [**git_slash_create_tag**]docs/GitApi.md#git_slash_create_tag | **POST** /repos/{owner}/{repo}/git/tags | Create a tag object
*GitApi* | [**git_slash_create_tree**]docs/GitApi.md#git_slash_create_tree | **POST** /repos/{owner}/{repo}/git/trees | Create a tree
*GitApi* | [**git_slash_delete_ref**]docs/GitApi.md#git_slash_delete_ref | **DELETE** /repos/{owner}/{repo}/git/refs/{ref} | Delete a reference
*GitApi* | [**git_slash_get_blob**]docs/GitApi.md#git_slash_get_blob | **GET** /repos/{owner}/{repo}/git/blobs/{file_sha} | Get a blob
*GitApi* | [**git_slash_get_commit**]docs/GitApi.md#git_slash_get_commit | **GET** /repos/{owner}/{repo}/git/commits/{commit_sha} | Get a commit object
*GitApi* | [**git_slash_get_ref**]docs/GitApi.md#git_slash_get_ref | **GET** /repos/{owner}/{repo}/git/ref/{ref} | Get a reference
*GitApi* | [**git_slash_get_tag**]docs/GitApi.md#git_slash_get_tag | **GET** /repos/{owner}/{repo}/git/tags/{tag_sha} | Get a tag
*GitApi* | [**git_slash_get_tree**]docs/GitApi.md#git_slash_get_tree | **GET** /repos/{owner}/{repo}/git/trees/{tree_sha} | Get a tree
*GitApi* | [**git_slash_list_matching_refs**]docs/GitApi.md#git_slash_list_matching_refs | **GET** /repos/{owner}/{repo}/git/matching-refs/{ref} | List matching references
*GitApi* | [**git_slash_update_ref**]docs/GitApi.md#git_slash_update_ref | **PATCH** /repos/{owner}/{repo}/git/refs/{ref} | Update a reference
*GitignoreApi* | [**gitignore_slash_get_all_templates**]docs/GitignoreApi.md#gitignore_slash_get_all_templates | **GET** /gitignore/templates | Get all gitignore templates
*GitignoreApi* | [**gitignore_slash_get_template**]docs/GitignoreApi.md#gitignore_slash_get_template | **GET** /gitignore/templates/{name} | Get a gitignore template
*InteractionsApi* | [**interactions_slash_get_restrictions_for_authenticated_user**]docs/InteractionsApi.md#interactions_slash_get_restrictions_for_authenticated_user | **GET** /user/interaction-limits | Get interaction restrictions for your public repositories
*InteractionsApi* | [**interactions_slash_get_restrictions_for_org**]docs/InteractionsApi.md#interactions_slash_get_restrictions_for_org | **GET** /orgs/{org}/interaction-limits | Get interaction restrictions for an organization
*InteractionsApi* | [**interactions_slash_get_restrictions_for_repo**]docs/InteractionsApi.md#interactions_slash_get_restrictions_for_repo | **GET** /repos/{owner}/{repo}/interaction-limits | Get interaction restrictions for a repository
*InteractionsApi* | [**interactions_slash_remove_restrictions_for_authenticated_user**]docs/InteractionsApi.md#interactions_slash_remove_restrictions_for_authenticated_user | **DELETE** /user/interaction-limits | Remove interaction restrictions from your public repositories
*InteractionsApi* | [**interactions_slash_remove_restrictions_for_org**]docs/InteractionsApi.md#interactions_slash_remove_restrictions_for_org | **DELETE** /orgs/{org}/interaction-limits | Remove interaction restrictions for an organization
*InteractionsApi* | [**interactions_slash_remove_restrictions_for_repo**]docs/InteractionsApi.md#interactions_slash_remove_restrictions_for_repo | **DELETE** /repos/{owner}/{repo}/interaction-limits | Remove interaction restrictions for a repository
*InteractionsApi* | [**interactions_slash_set_restrictions_for_authenticated_user**]docs/InteractionsApi.md#interactions_slash_set_restrictions_for_authenticated_user | **PUT** /user/interaction-limits | Set interaction restrictions for your public repositories
*InteractionsApi* | [**interactions_slash_set_restrictions_for_org**]docs/InteractionsApi.md#interactions_slash_set_restrictions_for_org | **PUT** /orgs/{org}/interaction-limits | Set interaction restrictions for an organization
*InteractionsApi* | [**interactions_slash_set_restrictions_for_repo**]docs/InteractionsApi.md#interactions_slash_set_restrictions_for_repo | **PUT** /repos/{owner}/{repo}/interaction-limits | Set interaction restrictions for a repository
*IssuesApi* | [**issues_slash_add_assignees**]docs/IssuesApi.md#issues_slash_add_assignees | **POST** /repos/{owner}/{repo}/issues/{issue_number}/assignees | Add assignees to an issue
*IssuesApi* | [**issues_slash_add_labels**]docs/IssuesApi.md#issues_slash_add_labels | **POST** /repos/{owner}/{repo}/issues/{issue_number}/labels | Add labels to an issue
*IssuesApi* | [**issues_slash_check_user_can_be_assigned**]docs/IssuesApi.md#issues_slash_check_user_can_be_assigned | **GET** /repos/{owner}/{repo}/assignees/{assignee} | Check if a user can be assigned
*IssuesApi* | [**issues_slash_check_user_can_be_assigned_to_issue**]docs/IssuesApi.md#issues_slash_check_user_can_be_assigned_to_issue | **GET** /repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee} | Check if a user can be assigned to a issue
*IssuesApi* | [**issues_slash_create**]docs/IssuesApi.md#issues_slash_create | **POST** /repos/{owner}/{repo}/issues | Create an issue
*IssuesApi* | [**issues_slash_create_comment**]docs/IssuesApi.md#issues_slash_create_comment | **POST** /repos/{owner}/{repo}/issues/{issue_number}/comments | Create an issue comment
*IssuesApi* | [**issues_slash_create_label**]docs/IssuesApi.md#issues_slash_create_label | **POST** /repos/{owner}/{repo}/labels | Create a label
*IssuesApi* | [**issues_slash_create_milestone**]docs/IssuesApi.md#issues_slash_create_milestone | **POST** /repos/{owner}/{repo}/milestones | Create a milestone
*IssuesApi* | [**issues_slash_delete_comment**]docs/IssuesApi.md#issues_slash_delete_comment | **DELETE** /repos/{owner}/{repo}/issues/comments/{comment_id} | Delete an issue comment
*IssuesApi* | [**issues_slash_delete_label**]docs/IssuesApi.md#issues_slash_delete_label | **DELETE** /repos/{owner}/{repo}/labels/{name} | Delete a label
*IssuesApi* | [**issues_slash_delete_milestone**]docs/IssuesApi.md#issues_slash_delete_milestone | **DELETE** /repos/{owner}/{repo}/milestones/{milestone_number} | Delete a milestone
*IssuesApi* | [**issues_slash_get**]docs/IssuesApi.md#issues_slash_get | **GET** /repos/{owner}/{repo}/issues/{issue_number} | Get an issue
*IssuesApi* | [**issues_slash_get_comment**]docs/IssuesApi.md#issues_slash_get_comment | **GET** /repos/{owner}/{repo}/issues/comments/{comment_id} | Get an issue comment
*IssuesApi* | [**issues_slash_get_event**]docs/IssuesApi.md#issues_slash_get_event | **GET** /repos/{owner}/{repo}/issues/events/{event_id} | Get an issue event
*IssuesApi* | [**issues_slash_get_label**]docs/IssuesApi.md#issues_slash_get_label | **GET** /repos/{owner}/{repo}/labels/{name} | Get a label
*IssuesApi* | [**issues_slash_get_milestone**]docs/IssuesApi.md#issues_slash_get_milestone | **GET** /repos/{owner}/{repo}/milestones/{milestone_number} | Get a milestone
*IssuesApi* | [**issues_slash_list**]docs/IssuesApi.md#issues_slash_list | **GET** /issues | List issues assigned to the authenticated user
*IssuesApi* | [**issues_slash_list_assignees**]docs/IssuesApi.md#issues_slash_list_assignees | **GET** /repos/{owner}/{repo}/assignees | List assignees
*IssuesApi* | [**issues_slash_list_comments**]docs/IssuesApi.md#issues_slash_list_comments | **GET** /repos/{owner}/{repo}/issues/{issue_number}/comments | List issue comments
*IssuesApi* | [**issues_slash_list_comments_for_repo**]docs/IssuesApi.md#issues_slash_list_comments_for_repo | **GET** /repos/{owner}/{repo}/issues/comments | List issue comments for a repository
*IssuesApi* | [**issues_slash_list_events**]docs/IssuesApi.md#issues_slash_list_events | **GET** /repos/{owner}/{repo}/issues/{issue_number}/events | List issue events
*IssuesApi* | [**issues_slash_list_events_for_repo**]docs/IssuesApi.md#issues_slash_list_events_for_repo | **GET** /repos/{owner}/{repo}/issues/events | List issue events for a repository
*IssuesApi* | [**issues_slash_list_events_for_timeline**]docs/IssuesApi.md#issues_slash_list_events_for_timeline | **GET** /repos/{owner}/{repo}/issues/{issue_number}/timeline | List timeline events for an issue
*IssuesApi* | [**issues_slash_list_for_authenticated_user**]docs/IssuesApi.md#issues_slash_list_for_authenticated_user | **GET** /user/issues | List user account issues assigned to the authenticated user
*IssuesApi* | [**issues_slash_list_for_org**]docs/IssuesApi.md#issues_slash_list_for_org | **GET** /orgs/{org}/issues | List organization issues assigned to the authenticated user
*IssuesApi* | [**issues_slash_list_for_repo**]docs/IssuesApi.md#issues_slash_list_for_repo | **GET** /repos/{owner}/{repo}/issues | List repository issues
*IssuesApi* | [**issues_slash_list_labels_for_milestone**]docs/IssuesApi.md#issues_slash_list_labels_for_milestone | **GET** /repos/{owner}/{repo}/milestones/{milestone_number}/labels | List labels for issues in a milestone
*IssuesApi* | [**issues_slash_list_labels_for_repo**]docs/IssuesApi.md#issues_slash_list_labels_for_repo | **GET** /repos/{owner}/{repo}/labels | List labels for a repository
*IssuesApi* | [**issues_slash_list_labels_on_issue**]docs/IssuesApi.md#issues_slash_list_labels_on_issue | **GET** /repos/{owner}/{repo}/issues/{issue_number}/labels | List labels for an issue
*IssuesApi* | [**issues_slash_list_milestones**]docs/IssuesApi.md#issues_slash_list_milestones | **GET** /repos/{owner}/{repo}/milestones | List milestones
*IssuesApi* | [**issues_slash_lock**]docs/IssuesApi.md#issues_slash_lock | **PUT** /repos/{owner}/{repo}/issues/{issue_number}/lock | Lock an issue
*IssuesApi* | [**issues_slash_remove_all_labels**]docs/IssuesApi.md#issues_slash_remove_all_labels | **DELETE** /repos/{owner}/{repo}/issues/{issue_number}/labels | Remove all labels from an issue
*IssuesApi* | [**issues_slash_remove_assignees**]docs/IssuesApi.md#issues_slash_remove_assignees | **DELETE** /repos/{owner}/{repo}/issues/{issue_number}/assignees | Remove assignees from an issue
*IssuesApi* | [**issues_slash_remove_label**]docs/IssuesApi.md#issues_slash_remove_label | **DELETE** /repos/{owner}/{repo}/issues/{issue_number}/labels/{name} | Remove a label from an issue
*IssuesApi* | [**issues_slash_set_labels**]docs/IssuesApi.md#issues_slash_set_labels | **PUT** /repos/{owner}/{repo}/issues/{issue_number}/labels | Set labels for an issue
*IssuesApi* | [**issues_slash_unlock**]docs/IssuesApi.md#issues_slash_unlock | **DELETE** /repos/{owner}/{repo}/issues/{issue_number}/lock | Unlock an issue
*IssuesApi* | [**issues_slash_update**]docs/IssuesApi.md#issues_slash_update | **PATCH** /repos/{owner}/{repo}/issues/{issue_number} | Update an issue
*IssuesApi* | [**issues_slash_update_comment**]docs/IssuesApi.md#issues_slash_update_comment | **PATCH** /repos/{owner}/{repo}/issues/comments/{comment_id} | Update an issue comment
*IssuesApi* | [**issues_slash_update_label**]docs/IssuesApi.md#issues_slash_update_label | **PATCH** /repos/{owner}/{repo}/labels/{name} | Update a label
*IssuesApi* | [**issues_slash_update_milestone**]docs/IssuesApi.md#issues_slash_update_milestone | **PATCH** /repos/{owner}/{repo}/milestones/{milestone_number} | Update a milestone
*LicensesApi* | [**licenses_slash_get**]docs/LicensesApi.md#licenses_slash_get | **GET** /licenses/{license} | Get a license
*LicensesApi* | [**licenses_slash_get_all_commonly_used**]docs/LicensesApi.md#licenses_slash_get_all_commonly_used | **GET** /licenses | Get all commonly used licenses
*LicensesApi* | [**licenses_slash_get_for_repo**]docs/LicensesApi.md#licenses_slash_get_for_repo | **GET** /repos/{owner}/{repo}/license | Get the license for a repository
*MarkdownApi* | [**markdown_slash_render**]docs/MarkdownApi.md#markdown_slash_render | **POST** /markdown | Render a Markdown document
*MarkdownApi* | [**markdown_slash_render_raw**]docs/MarkdownApi.md#markdown_slash_render_raw | **POST** /markdown/raw | Render a Markdown document in raw mode
*MetaApi* | [**meta_slash_get**]docs/MetaApi.md#meta_slash_get | **GET** /meta | Get GitHub meta information
*MetaApi* | [**meta_slash_get_all_versions**]docs/MetaApi.md#meta_slash_get_all_versions | **GET** /versions | Get all API versions
*MetaApi* | [**meta_slash_get_octocat**]docs/MetaApi.md#meta_slash_get_octocat | **GET** /octocat | Get Octocat
*MetaApi* | [**meta_slash_get_zen**]docs/MetaApi.md#meta_slash_get_zen | **GET** /zen | Get the Zen of GitHub
*MetaApi* | [**meta_slash_root**]docs/MetaApi.md#meta_slash_root | **GET** / | GitHub API Root
*MigrationsApi* | [**migrations_slash_cancel_import**]docs/MigrationsApi.md#migrations_slash_cancel_import | **DELETE** /repos/{owner}/{repo}/import | Cancel an import
*MigrationsApi* | [**migrations_slash_delete_archive_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_delete_archive_for_authenticated_user | **DELETE** /user/migrations/{migration_id}/archive | Delete a user migration archive
*MigrationsApi* | [**migrations_slash_delete_archive_for_org**]docs/MigrationsApi.md#migrations_slash_delete_archive_for_org | **DELETE** /orgs/{org}/migrations/{migration_id}/archive | Delete an organization migration archive
*MigrationsApi* | [**migrations_slash_download_archive_for_org**]docs/MigrationsApi.md#migrations_slash_download_archive_for_org | **GET** /orgs/{org}/migrations/{migration_id}/archive | Download an organization migration archive
*MigrationsApi* | [**migrations_slash_get_archive_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_get_archive_for_authenticated_user | **GET** /user/migrations/{migration_id}/archive | Download a user migration archive
*MigrationsApi* | [**migrations_slash_get_commit_authors**]docs/MigrationsApi.md#migrations_slash_get_commit_authors | **GET** /repos/{owner}/{repo}/import/authors | Get commit authors
*MigrationsApi* | [**migrations_slash_get_import_status**]docs/MigrationsApi.md#migrations_slash_get_import_status | **GET** /repos/{owner}/{repo}/import | Get an import status
*MigrationsApi* | [**migrations_slash_get_large_files**]docs/MigrationsApi.md#migrations_slash_get_large_files | **GET** /repos/{owner}/{repo}/import/large_files | Get large files
*MigrationsApi* | [**migrations_slash_get_status_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_get_status_for_authenticated_user | **GET** /user/migrations/{migration_id} | Get a user migration status
*MigrationsApi* | [**migrations_slash_get_status_for_org**]docs/MigrationsApi.md#migrations_slash_get_status_for_org | **GET** /orgs/{org}/migrations/{migration_id} | Get an organization migration status
*MigrationsApi* | [**migrations_slash_list_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_list_for_authenticated_user | **GET** /user/migrations | List user migrations
*MigrationsApi* | [**migrations_slash_list_for_org**]docs/MigrationsApi.md#migrations_slash_list_for_org | **GET** /orgs/{org}/migrations | List organization migrations
*MigrationsApi* | [**migrations_slash_list_repos_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_list_repos_for_authenticated_user | **GET** /user/migrations/{migration_id}/repositories | List repositories for a user migration
*MigrationsApi* | [**migrations_slash_list_repos_for_org**]docs/MigrationsApi.md#migrations_slash_list_repos_for_org | **GET** /orgs/{org}/migrations/{migration_id}/repositories | List repositories in an organization migration
*MigrationsApi* | [**migrations_slash_map_commit_author**]docs/MigrationsApi.md#migrations_slash_map_commit_author | **PATCH** /repos/{owner}/{repo}/import/authors/{author_id} | Map a commit author
*MigrationsApi* | [**migrations_slash_set_lfs_preference**]docs/MigrationsApi.md#migrations_slash_set_lfs_preference | **PATCH** /repos/{owner}/{repo}/import/lfs | Update Git LFS preference
*MigrationsApi* | [**migrations_slash_start_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_start_for_authenticated_user | **POST** /user/migrations | Start a user migration
*MigrationsApi* | [**migrations_slash_start_for_org**]docs/MigrationsApi.md#migrations_slash_start_for_org | **POST** /orgs/{org}/migrations | Start an organization migration
*MigrationsApi* | [**migrations_slash_start_import**]docs/MigrationsApi.md#migrations_slash_start_import | **PUT** /repos/{owner}/{repo}/import | Start an import
*MigrationsApi* | [**migrations_slash_unlock_repo_for_authenticated_user**]docs/MigrationsApi.md#migrations_slash_unlock_repo_for_authenticated_user | **DELETE** /user/migrations/{migration_id}/repos/{repo_name}/lock | Unlock a user repository
*MigrationsApi* | [**migrations_slash_unlock_repo_for_org**]docs/MigrationsApi.md#migrations_slash_unlock_repo_for_org | **DELETE** /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock | Unlock an organization repository
*MigrationsApi* | [**migrations_slash_update_import**]docs/MigrationsApi.md#migrations_slash_update_import | **PATCH** /repos/{owner}/{repo}/import | Update an import
*OidcApi* | [**oidc_slash_get_oidc_custom_sub_template_for_org**]docs/OidcApi.md#oidc_slash_get_oidc_custom_sub_template_for_org | **GET** /orgs/{org}/actions/oidc/customization/sub | Get the customization template for an OIDC subject claim for an organization
*OidcApi* | [**oidc_slash_update_oidc_custom_sub_template_for_org**]docs/OidcApi.md#oidc_slash_update_oidc_custom_sub_template_for_org | **PUT** /orgs/{org}/actions/oidc/customization/sub | Set the customization template for an OIDC subject claim for an organization
*OrgsApi* | [**orgs_slash_add_security_manager_team**]docs/OrgsApi.md#orgs_slash_add_security_manager_team | **PUT** /orgs/{org}/security-managers/teams/{team_slug} | Add a security manager team
*OrgsApi* | [**orgs_slash_assign_team_to_org_role**]docs/OrgsApi.md#orgs_slash_assign_team_to_org_role | **PUT** /orgs/{org}/organization-roles/teams/{team_slug}/{role_id} | Assign an organization role to a team
*OrgsApi* | [**orgs_slash_assign_user_to_org_role**]docs/OrgsApi.md#orgs_slash_assign_user_to_org_role | **PUT** /orgs/{org}/organization-roles/users/{username}/{role_id} | Assign an organization role to a user
*OrgsApi* | [**orgs_slash_block_user**]docs/OrgsApi.md#orgs_slash_block_user | **PUT** /orgs/{org}/blocks/{username} | Block a user from an organization
*OrgsApi* | [**orgs_slash_cancel_invitation**]docs/OrgsApi.md#orgs_slash_cancel_invitation | **DELETE** /orgs/{org}/invitations/{invitation_id} | Cancel an organization invitation
*OrgsApi* | [**orgs_slash_check_blocked_user**]docs/OrgsApi.md#orgs_slash_check_blocked_user | **GET** /orgs/{org}/blocks/{username} | Check if a user is blocked by an organization
*OrgsApi* | [**orgs_slash_check_membership_for_user**]docs/OrgsApi.md#orgs_slash_check_membership_for_user | **GET** /orgs/{org}/members/{username} | Check organization membership for a user
*OrgsApi* | [**orgs_slash_check_public_membership_for_user**]docs/OrgsApi.md#orgs_slash_check_public_membership_for_user | **GET** /orgs/{org}/public_members/{username} | Check public organization membership for a user
*OrgsApi* | [**orgs_slash_convert_member_to_outside_collaborator**]docs/OrgsApi.md#orgs_slash_convert_member_to_outside_collaborator | **PUT** /orgs/{org}/outside_collaborators/{username} | Convert an organization member to outside collaborator
*OrgsApi* | [**orgs_slash_create_custom_organization_role**]docs/OrgsApi.md#orgs_slash_create_custom_organization_role | **POST** /orgs/{org}/organization-roles | Create a custom organization role
*OrgsApi* | [**orgs_slash_create_invitation**]docs/OrgsApi.md#orgs_slash_create_invitation | **POST** /orgs/{org}/invitations | Create an organization invitation
*OrgsApi* | [**orgs_slash_create_or_update_custom_properties**]docs/OrgsApi.md#orgs_slash_create_or_update_custom_properties | **PATCH** /orgs/{org}/properties/schema | Create or update custom properties for an organization
*OrgsApi* | [**orgs_slash_create_or_update_custom_properties_values_for_repos**]docs/OrgsApi.md#orgs_slash_create_or_update_custom_properties_values_for_repos | **PATCH** /orgs/{org}/properties/values | Create or update custom property values for organization repositories
*OrgsApi* | [**orgs_slash_create_or_update_custom_property**]docs/OrgsApi.md#orgs_slash_create_or_update_custom_property | **PUT** /orgs/{org}/properties/schema/{custom_property_name} | Create or update a custom property for an organization
*OrgsApi* | [**orgs_slash_create_webhook**]docs/OrgsApi.md#orgs_slash_create_webhook | **POST** /orgs/{org}/hooks | Create an organization webhook
*OrgsApi* | [**orgs_slash_delete**]docs/OrgsApi.md#orgs_slash_delete | **DELETE** /orgs/{org} | Delete an organization
*OrgsApi* | [**orgs_slash_delete_custom_organization_role**]docs/OrgsApi.md#orgs_slash_delete_custom_organization_role | **DELETE** /orgs/{org}/organization-roles/{role_id} | Delete a custom organization role.
*OrgsApi* | [**orgs_slash_delete_webhook**]docs/OrgsApi.md#orgs_slash_delete_webhook | **DELETE** /orgs/{org}/hooks/{hook_id} | Delete an organization webhook
*OrgsApi* | [**orgs_slash_enable_or_disable_security_product_on_all_org_repos**]docs/OrgsApi.md#orgs_slash_enable_or_disable_security_product_on_all_org_repos | **POST** /orgs/{org}/{security_product}/{enablement} | Enable or disable a security feature for an organization
*OrgsApi* | [**orgs_slash_get**]docs/OrgsApi.md#orgs_slash_get | **GET** /orgs/{org} | Get an organization
*OrgsApi* | [**orgs_slash_get_all_custom_properties**]docs/OrgsApi.md#orgs_slash_get_all_custom_properties | **GET** /orgs/{org}/properties/schema | Get all custom properties for an organization
*OrgsApi* | [**orgs_slash_get_custom_property**]docs/OrgsApi.md#orgs_slash_get_custom_property | **GET** /orgs/{org}/properties/schema/{custom_property_name} | Get a custom property for an organization
*OrgsApi* | [**orgs_slash_get_membership_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_get_membership_for_authenticated_user | **GET** /user/memberships/orgs/{org} | Get an organization membership for the authenticated user
*OrgsApi* | [**orgs_slash_get_membership_for_user**]docs/OrgsApi.md#orgs_slash_get_membership_for_user | **GET** /orgs/{org}/memberships/{username} | Get organization membership for a user
*OrgsApi* | [**orgs_slash_get_org_role**]docs/OrgsApi.md#orgs_slash_get_org_role | **GET** /orgs/{org}/organization-roles/{role_id} | Get an organization role
*OrgsApi* | [**orgs_slash_get_webhook**]docs/OrgsApi.md#orgs_slash_get_webhook | **GET** /orgs/{org}/hooks/{hook_id} | Get an organization webhook
*OrgsApi* | [**orgs_slash_get_webhook_config_for_org**]docs/OrgsApi.md#orgs_slash_get_webhook_config_for_org | **GET** /orgs/{org}/hooks/{hook_id}/config | Get a webhook configuration for an organization
*OrgsApi* | [**orgs_slash_get_webhook_delivery**]docs/OrgsApi.md#orgs_slash_get_webhook_delivery | **GET** /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id} | Get a webhook delivery for an organization webhook
*OrgsApi* | [**orgs_slash_list**]docs/OrgsApi.md#orgs_slash_list | **GET** /organizations | List organizations
*OrgsApi* | [**orgs_slash_list_app_installations**]docs/OrgsApi.md#orgs_slash_list_app_installations | **GET** /orgs/{org}/installations | List app installations for an organization
*OrgsApi* | [**orgs_slash_list_blocked_users**]docs/OrgsApi.md#orgs_slash_list_blocked_users | **GET** /orgs/{org}/blocks | List users blocked by an organization
*OrgsApi* | [**orgs_slash_list_custom_properties_values_for_repos**]docs/OrgsApi.md#orgs_slash_list_custom_properties_values_for_repos | **GET** /orgs/{org}/properties/values | List custom property values for organization repositories
*OrgsApi* | [**orgs_slash_list_failed_invitations**]docs/OrgsApi.md#orgs_slash_list_failed_invitations | **GET** /orgs/{org}/failed_invitations | List failed organization invitations
*OrgsApi* | [**orgs_slash_list_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_list_for_authenticated_user | **GET** /user/orgs | List organizations for the authenticated user
*OrgsApi* | [**orgs_slash_list_for_user**]docs/OrgsApi.md#orgs_slash_list_for_user | **GET** /users/{username}/orgs | List organizations for a user
*OrgsApi* | [**orgs_slash_list_invitation_teams**]docs/OrgsApi.md#orgs_slash_list_invitation_teams | **GET** /orgs/{org}/invitations/{invitation_id}/teams | List organization invitation teams
*OrgsApi* | [**orgs_slash_list_members**]docs/OrgsApi.md#orgs_slash_list_members | **GET** /orgs/{org}/members | List organization members
*OrgsApi* | [**orgs_slash_list_memberships_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_list_memberships_for_authenticated_user | **GET** /user/memberships/orgs | List organization memberships for the authenticated user
*OrgsApi* | [**orgs_slash_list_org_role_teams**]docs/OrgsApi.md#orgs_slash_list_org_role_teams | **GET** /orgs/{org}/organization-roles/{role_id}/teams | List teams that are assigned to an organization role
*OrgsApi* | [**orgs_slash_list_org_role_users**]docs/OrgsApi.md#orgs_slash_list_org_role_users | **GET** /orgs/{org}/organization-roles/{role_id}/users | List users that are assigned to an organization role
*OrgsApi* | [**orgs_slash_list_org_roles**]docs/OrgsApi.md#orgs_slash_list_org_roles | **GET** /orgs/{org}/organization-roles | Get all organization roles for an organization
*OrgsApi* | [**orgs_slash_list_organization_fine_grained_permissions**]docs/OrgsApi.md#orgs_slash_list_organization_fine_grained_permissions | **GET** /orgs/{org}/organization-fine-grained-permissions | List organization fine-grained permissions for an organization
*OrgsApi* | [**orgs_slash_list_outside_collaborators**]docs/OrgsApi.md#orgs_slash_list_outside_collaborators | **GET** /orgs/{org}/outside_collaborators | List outside collaborators for an organization
*OrgsApi* | [**orgs_slash_list_pat_grant_repositories**]docs/OrgsApi.md#orgs_slash_list_pat_grant_repositories | **GET** /orgs/{org}/personal-access-tokens/{pat_id}/repositories | List repositories a fine-grained personal access token has access to
*OrgsApi* | [**orgs_slash_list_pat_grant_request_repositories**]docs/OrgsApi.md#orgs_slash_list_pat_grant_request_repositories | **GET** /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories | List repositories requested to be accessed by a fine-grained personal access token
*OrgsApi* | [**orgs_slash_list_pat_grant_requests**]docs/OrgsApi.md#orgs_slash_list_pat_grant_requests | **GET** /orgs/{org}/personal-access-token-requests | List requests to access organization resources with fine-grained personal access tokens
*OrgsApi* | [**orgs_slash_list_pat_grants**]docs/OrgsApi.md#orgs_slash_list_pat_grants | **GET** /orgs/{org}/personal-access-tokens | List fine-grained personal access tokens with access to organization resources
*OrgsApi* | [**orgs_slash_list_pending_invitations**]docs/OrgsApi.md#orgs_slash_list_pending_invitations | **GET** /orgs/{org}/invitations | List pending organization invitations
*OrgsApi* | [**orgs_slash_list_public_members**]docs/OrgsApi.md#orgs_slash_list_public_members | **GET** /orgs/{org}/public_members | List public organization members
*OrgsApi* | [**orgs_slash_list_security_manager_teams**]docs/OrgsApi.md#orgs_slash_list_security_manager_teams | **GET** /orgs/{org}/security-managers | List security manager teams
*OrgsApi* | [**orgs_slash_list_webhook_deliveries**]docs/OrgsApi.md#orgs_slash_list_webhook_deliveries | **GET** /orgs/{org}/hooks/{hook_id}/deliveries | List deliveries for an organization webhook
*OrgsApi* | [**orgs_slash_list_webhooks**]docs/OrgsApi.md#orgs_slash_list_webhooks | **GET** /orgs/{org}/hooks | List organization webhooks
*OrgsApi* | [**orgs_slash_patch_custom_organization_role**]docs/OrgsApi.md#orgs_slash_patch_custom_organization_role | **PATCH** /orgs/{org}/organization-roles/{role_id} | Update a custom organization role
*OrgsApi* | [**orgs_slash_ping_webhook**]docs/OrgsApi.md#orgs_slash_ping_webhook | **POST** /orgs/{org}/hooks/{hook_id}/pings | Ping an organization webhook
*OrgsApi* | [**orgs_slash_redeliver_webhook_delivery**]docs/OrgsApi.md#orgs_slash_redeliver_webhook_delivery | **POST** /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts | Redeliver a delivery for an organization webhook
*OrgsApi* | [**orgs_slash_remove_custom_property**]docs/OrgsApi.md#orgs_slash_remove_custom_property | **DELETE** /orgs/{org}/properties/schema/{custom_property_name} | Remove a custom property for an organization
*OrgsApi* | [**orgs_slash_remove_member**]docs/OrgsApi.md#orgs_slash_remove_member | **DELETE** /orgs/{org}/members/{username} | Remove an organization member
*OrgsApi* | [**orgs_slash_remove_membership_for_user**]docs/OrgsApi.md#orgs_slash_remove_membership_for_user | **DELETE** /orgs/{org}/memberships/{username} | Remove organization membership for a user
*OrgsApi* | [**orgs_slash_remove_outside_collaborator**]docs/OrgsApi.md#orgs_slash_remove_outside_collaborator | **DELETE** /orgs/{org}/outside_collaborators/{username} | Remove outside collaborator from an organization
*OrgsApi* | [**orgs_slash_remove_public_membership_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_remove_public_membership_for_authenticated_user | **DELETE** /orgs/{org}/public_members/{username} | Remove public organization membership for the authenticated user
*OrgsApi* | [**orgs_slash_remove_security_manager_team**]docs/OrgsApi.md#orgs_slash_remove_security_manager_team | **DELETE** /orgs/{org}/security-managers/teams/{team_slug} | Remove a security manager team
*OrgsApi* | [**orgs_slash_review_pat_grant_request**]docs/OrgsApi.md#orgs_slash_review_pat_grant_request | **POST** /orgs/{org}/personal-access-token-requests/{pat_request_id} | Review a request to access organization resources with a fine-grained personal access token
*OrgsApi* | [**orgs_slash_review_pat_grant_requests_in_bulk**]docs/OrgsApi.md#orgs_slash_review_pat_grant_requests_in_bulk | **POST** /orgs/{org}/personal-access-token-requests | Review requests to access organization resources with fine-grained personal access tokens
*OrgsApi* | [**orgs_slash_revoke_all_org_roles_team**]docs/OrgsApi.md#orgs_slash_revoke_all_org_roles_team | **DELETE** /orgs/{org}/organization-roles/teams/{team_slug} | Remove all organization roles for a team
*OrgsApi* | [**orgs_slash_revoke_all_org_roles_user**]docs/OrgsApi.md#orgs_slash_revoke_all_org_roles_user | **DELETE** /orgs/{org}/organization-roles/users/{username} | Remove all organization roles for a user
*OrgsApi* | [**orgs_slash_revoke_org_role_team**]docs/OrgsApi.md#orgs_slash_revoke_org_role_team | **DELETE** /orgs/{org}/organization-roles/teams/{team_slug}/{role_id} | Remove an organization role from a team
*OrgsApi* | [**orgs_slash_revoke_org_role_user**]docs/OrgsApi.md#orgs_slash_revoke_org_role_user | **DELETE** /orgs/{org}/organization-roles/users/{username}/{role_id} | Remove an organization role from a user
*OrgsApi* | [**orgs_slash_set_membership_for_user**]docs/OrgsApi.md#orgs_slash_set_membership_for_user | **PUT** /orgs/{org}/memberships/{username} | Set organization membership for a user
*OrgsApi* | [**orgs_slash_set_public_membership_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_set_public_membership_for_authenticated_user | **PUT** /orgs/{org}/public_members/{username} | Set public organization membership for the authenticated user
*OrgsApi* | [**orgs_slash_unblock_user**]docs/OrgsApi.md#orgs_slash_unblock_user | **DELETE** /orgs/{org}/blocks/{username} | Unblock a user from an organization
*OrgsApi* | [**orgs_slash_update**]docs/OrgsApi.md#orgs_slash_update | **PATCH** /orgs/{org} | Update an organization
*OrgsApi* | [**orgs_slash_update_membership_for_authenticated_user**]docs/OrgsApi.md#orgs_slash_update_membership_for_authenticated_user | **PATCH** /user/memberships/orgs/{org} | Update an organization membership for the authenticated user
*OrgsApi* | [**orgs_slash_update_pat_access**]docs/OrgsApi.md#orgs_slash_update_pat_access | **POST** /orgs/{org}/personal-access-tokens/{pat_id} | Update the access a fine-grained personal access token has to organization resources
*OrgsApi* | [**orgs_slash_update_pat_accesses**]docs/OrgsApi.md#orgs_slash_update_pat_accesses | **POST** /orgs/{org}/personal-access-tokens | Update the access to organization resources via fine-grained personal access tokens
*OrgsApi* | [**orgs_slash_update_webhook**]docs/OrgsApi.md#orgs_slash_update_webhook | **PATCH** /orgs/{org}/hooks/{hook_id} | Update an organization webhook
*OrgsApi* | [**orgs_slash_update_webhook_config_for_org**]docs/OrgsApi.md#orgs_slash_update_webhook_config_for_org | **PATCH** /orgs/{org}/hooks/{hook_id}/config | Update a webhook configuration for an organization
*PackagesApi* | [**packages_slash_delete_package_for_authenticated_user**]docs/PackagesApi.md#packages_slash_delete_package_for_authenticated_user | **DELETE** /user/packages/{package_type}/{package_name} | Delete a package for the authenticated user
*PackagesApi* | [**packages_slash_delete_package_for_org**]docs/PackagesApi.md#packages_slash_delete_package_for_org | **DELETE** /orgs/{org}/packages/{package_type}/{package_name} | Delete a package for an organization
*PackagesApi* | [**packages_slash_delete_package_for_user**]docs/PackagesApi.md#packages_slash_delete_package_for_user | **DELETE** /users/{username}/packages/{package_type}/{package_name} | Delete a package for a user
*PackagesApi* | [**packages_slash_delete_package_version_for_authenticated_user**]docs/PackagesApi.md#packages_slash_delete_package_version_for_authenticated_user | **DELETE** /user/packages/{package_type}/{package_name}/versions/{package_version_id} | Delete a package version for the authenticated user
*PackagesApi* | [**packages_slash_delete_package_version_for_org**]docs/PackagesApi.md#packages_slash_delete_package_version_for_org | **DELETE** /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id} | Delete package version for an organization
*PackagesApi* | [**packages_slash_delete_package_version_for_user**]docs/PackagesApi.md#packages_slash_delete_package_version_for_user | **DELETE** /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id} | Delete package version for a user
*PackagesApi* | [**packages_slash_get_all_package_versions_for_package_owned_by_authenticated_user**]docs/PackagesApi.md#packages_slash_get_all_package_versions_for_package_owned_by_authenticated_user | **GET** /user/packages/{package_type}/{package_name}/versions | List package versions for a package owned by the authenticated user
*PackagesApi* | [**packages_slash_get_all_package_versions_for_package_owned_by_org**]docs/PackagesApi.md#packages_slash_get_all_package_versions_for_package_owned_by_org | **GET** /orgs/{org}/packages/{package_type}/{package_name}/versions | List package versions for a package owned by an organization
*PackagesApi* | [**packages_slash_get_all_package_versions_for_package_owned_by_user**]docs/PackagesApi.md#packages_slash_get_all_package_versions_for_package_owned_by_user | **GET** /users/{username}/packages/{package_type}/{package_name}/versions | List package versions for a package owned by a user
*PackagesApi* | [**packages_slash_get_package_for_authenticated_user**]docs/PackagesApi.md#packages_slash_get_package_for_authenticated_user | **GET** /user/packages/{package_type}/{package_name} | Get a package for the authenticated user
*PackagesApi* | [**packages_slash_get_package_for_organization**]docs/PackagesApi.md#packages_slash_get_package_for_organization | **GET** /orgs/{org}/packages/{package_type}/{package_name} | Get a package for an organization
*PackagesApi* | [**packages_slash_get_package_for_user**]docs/PackagesApi.md#packages_slash_get_package_for_user | **GET** /users/{username}/packages/{package_type}/{package_name} | Get a package for a user
*PackagesApi* | [**packages_slash_get_package_version_for_authenticated_user**]docs/PackagesApi.md#packages_slash_get_package_version_for_authenticated_user | **GET** /user/packages/{package_type}/{package_name}/versions/{package_version_id} | Get a package version for the authenticated user
*PackagesApi* | [**packages_slash_get_package_version_for_organization**]docs/PackagesApi.md#packages_slash_get_package_version_for_organization | **GET** /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id} | Get a package version for an organization
*PackagesApi* | [**packages_slash_get_package_version_for_user**]docs/PackagesApi.md#packages_slash_get_package_version_for_user | **GET** /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id} | Get a package version for a user
*PackagesApi* | [**packages_slash_list_docker_migration_conflicting_packages_for_authenticated_user**]docs/PackagesApi.md#packages_slash_list_docker_migration_conflicting_packages_for_authenticated_user | **GET** /user/docker/conflicts | Get list of conflicting packages during Docker migration for authenticated-user
*PackagesApi* | [**packages_slash_list_docker_migration_conflicting_packages_for_organization**]docs/PackagesApi.md#packages_slash_list_docker_migration_conflicting_packages_for_organization | **GET** /orgs/{org}/docker/conflicts | Get list of conflicting packages during Docker migration for organization
*PackagesApi* | [**packages_slash_list_docker_migration_conflicting_packages_for_user**]docs/PackagesApi.md#packages_slash_list_docker_migration_conflicting_packages_for_user | **GET** /users/{username}/docker/conflicts | Get list of conflicting packages during Docker migration for user
*PackagesApi* | [**packages_slash_list_packages_for_authenticated_user**]docs/PackagesApi.md#packages_slash_list_packages_for_authenticated_user | **GET** /user/packages | List packages for the authenticated user's namespace
*PackagesApi* | [**packages_slash_list_packages_for_organization**]docs/PackagesApi.md#packages_slash_list_packages_for_organization | **GET** /orgs/{org}/packages | List packages for an organization
*PackagesApi* | [**packages_slash_list_packages_for_user**]docs/PackagesApi.md#packages_slash_list_packages_for_user | **GET** /users/{username}/packages | List packages for a user
*PackagesApi* | [**packages_slash_restore_package_for_authenticated_user**]docs/PackagesApi.md#packages_slash_restore_package_for_authenticated_user | **POST** /user/packages/{package_type}/{package_name}/restore | Restore a package for the authenticated user
*PackagesApi* | [**packages_slash_restore_package_for_org**]docs/PackagesApi.md#packages_slash_restore_package_for_org | **POST** /orgs/{org}/packages/{package_type}/{package_name}/restore | Restore a package for an organization
*PackagesApi* | [**packages_slash_restore_package_for_user**]docs/PackagesApi.md#packages_slash_restore_package_for_user | **POST** /users/{username}/packages/{package_type}/{package_name}/restore | Restore a package for a user
*PackagesApi* | [**packages_slash_restore_package_version_for_authenticated_user**]docs/PackagesApi.md#packages_slash_restore_package_version_for_authenticated_user | **POST** /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore | Restore a package version for the authenticated user
*PackagesApi* | [**packages_slash_restore_package_version_for_org**]docs/PackagesApi.md#packages_slash_restore_package_version_for_org | **POST** /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore | Restore package version for an organization
*PackagesApi* | [**packages_slash_restore_package_version_for_user**]docs/PackagesApi.md#packages_slash_restore_package_version_for_user | **POST** /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore | Restore package version for a user
*ProjectsApi* | [**projects_slash_add_collaborator**]docs/ProjectsApi.md#projects_slash_add_collaborator | **PUT** /projects/{project_id}/collaborators/{username} | Add project collaborator
*ProjectsApi* | [**projects_slash_create_card**]docs/ProjectsApi.md#projects_slash_create_card | **POST** /projects/columns/{column_id}/cards | Create a project card
*ProjectsApi* | [**projects_slash_create_column**]docs/ProjectsApi.md#projects_slash_create_column | **POST** /projects/{project_id}/columns | Create a project column
*ProjectsApi* | [**projects_slash_create_for_authenticated_user**]docs/ProjectsApi.md#projects_slash_create_for_authenticated_user | **POST** /user/projects | Create a user project
*ProjectsApi* | [**projects_slash_create_for_org**]docs/ProjectsApi.md#projects_slash_create_for_org | **POST** /orgs/{org}/projects | Create an organization project
*ProjectsApi* | [**projects_slash_create_for_repo**]docs/ProjectsApi.md#projects_slash_create_for_repo | **POST** /repos/{owner}/{repo}/projects | Create a repository project
*ProjectsApi* | [**projects_slash_delete**]docs/ProjectsApi.md#projects_slash_delete | **DELETE** /projects/{project_id} | Delete a project
*ProjectsApi* | [**projects_slash_delete_card**]docs/ProjectsApi.md#projects_slash_delete_card | **DELETE** /projects/columns/cards/{card_id} | Delete a project card
*ProjectsApi* | [**projects_slash_delete_column**]docs/ProjectsApi.md#projects_slash_delete_column | **DELETE** /projects/columns/{column_id} | Delete a project column
*ProjectsApi* | [**projects_slash_get**]docs/ProjectsApi.md#projects_slash_get | **GET** /projects/{project_id} | Get a project
*ProjectsApi* | [**projects_slash_get_card**]docs/ProjectsApi.md#projects_slash_get_card | **GET** /projects/columns/cards/{card_id} | Get a project card
*ProjectsApi* | [**projects_slash_get_column**]docs/ProjectsApi.md#projects_slash_get_column | **GET** /projects/columns/{column_id} | Get a project column
*ProjectsApi* | [**projects_slash_get_permission_for_user**]docs/ProjectsApi.md#projects_slash_get_permission_for_user | **GET** /projects/{project_id}/collaborators/{username}/permission | Get project permission for a user
*ProjectsApi* | [**projects_slash_list_cards**]docs/ProjectsApi.md#projects_slash_list_cards | **GET** /projects/columns/{column_id}/cards | List project cards
*ProjectsApi* | [**projects_slash_list_collaborators**]docs/ProjectsApi.md#projects_slash_list_collaborators | **GET** /projects/{project_id}/collaborators | List project collaborators
*ProjectsApi* | [**projects_slash_list_columns**]docs/ProjectsApi.md#projects_slash_list_columns | **GET** /projects/{project_id}/columns | List project columns
*ProjectsApi* | [**projects_slash_list_for_org**]docs/ProjectsApi.md#projects_slash_list_for_org | **GET** /orgs/{org}/projects | List organization projects
*ProjectsApi* | [**projects_slash_list_for_repo**]docs/ProjectsApi.md#projects_slash_list_for_repo | **GET** /repos/{owner}/{repo}/projects | List repository projects
*ProjectsApi* | [**projects_slash_list_for_user**]docs/ProjectsApi.md#projects_slash_list_for_user | **GET** /users/{username}/projects | List user projects
*ProjectsApi* | [**projects_slash_move_card**]docs/ProjectsApi.md#projects_slash_move_card | **POST** /projects/columns/cards/{card_id}/moves | Move a project card
*ProjectsApi* | [**projects_slash_move_column**]docs/ProjectsApi.md#projects_slash_move_column | **POST** /projects/columns/{column_id}/moves | Move a project column
*ProjectsApi* | [**projects_slash_remove_collaborator**]docs/ProjectsApi.md#projects_slash_remove_collaborator | **DELETE** /projects/{project_id}/collaborators/{username} | Remove user as a collaborator
*ProjectsApi* | [**projects_slash_update**]docs/ProjectsApi.md#projects_slash_update | **PATCH** /projects/{project_id} | Update a project
*ProjectsApi* | [**projects_slash_update_card**]docs/ProjectsApi.md#projects_slash_update_card | **PATCH** /projects/columns/cards/{card_id} | Update an existing project card
*ProjectsApi* | [**projects_slash_update_column**]docs/ProjectsApi.md#projects_slash_update_column | **PATCH** /projects/columns/{column_id} | Update an existing project column
*PullsApi* | [**pulls_slash_check_if_merged**]docs/PullsApi.md#pulls_slash_check_if_merged | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/merge | Check if a pull request has been merged
*PullsApi* | [**pulls_slash_create**]docs/PullsApi.md#pulls_slash_create | **POST** /repos/{owner}/{repo}/pulls | Create a pull request
*PullsApi* | [**pulls_slash_create_reply_for_review_comment**]docs/PullsApi.md#pulls_slash_create_reply_for_review_comment | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies | Create a reply for a review comment
*PullsApi* | [**pulls_slash_create_review**]docs/PullsApi.md#pulls_slash_create_review | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/reviews | Create a review for a pull request
*PullsApi* | [**pulls_slash_create_review_comment**]docs/PullsApi.md#pulls_slash_create_review_comment | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/comments | Create a review comment for a pull request
*PullsApi* | [**pulls_slash_delete_pending_review**]docs/PullsApi.md#pulls_slash_delete_pending_review | **DELETE** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id} | Delete a pending review for a pull request
*PullsApi* | [**pulls_slash_delete_review_comment**]docs/PullsApi.md#pulls_slash_delete_review_comment | **DELETE** /repos/{owner}/{repo}/pulls/comments/{comment_id} | Delete a review comment for a pull request
*PullsApi* | [**pulls_slash_dismiss_review**]docs/PullsApi.md#pulls_slash_dismiss_review | **PUT** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals | Dismiss a review for a pull request
*PullsApi* | [**pulls_slash_get**]docs/PullsApi.md#pulls_slash_get | **GET** /repos/{owner}/{repo}/pulls/{pull_number} | Get a pull request
*PullsApi* | [**pulls_slash_get_review**]docs/PullsApi.md#pulls_slash_get_review | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id} | Get a review for a pull request
*PullsApi* | [**pulls_slash_get_review_comment**]docs/PullsApi.md#pulls_slash_get_review_comment | **GET** /repos/{owner}/{repo}/pulls/comments/{comment_id} | Get a review comment for a pull request
*PullsApi* | [**pulls_slash_list**]docs/PullsApi.md#pulls_slash_list | **GET** /repos/{owner}/{repo}/pulls | List pull requests
*PullsApi* | [**pulls_slash_list_comments_for_review**]docs/PullsApi.md#pulls_slash_list_comments_for_review | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments | List comments for a pull request review
*PullsApi* | [**pulls_slash_list_commits**]docs/PullsApi.md#pulls_slash_list_commits | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/commits | List commits on a pull request
*PullsApi* | [**pulls_slash_list_files**]docs/PullsApi.md#pulls_slash_list_files | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/files | List pull requests files
*PullsApi* | [**pulls_slash_list_requested_reviewers**]docs/PullsApi.md#pulls_slash_list_requested_reviewers | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers | Get all requested reviewers for a pull request
*PullsApi* | [**pulls_slash_list_review_comments**]docs/PullsApi.md#pulls_slash_list_review_comments | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/comments | List review comments on a pull request
*PullsApi* | [**pulls_slash_list_review_comments_for_repo**]docs/PullsApi.md#pulls_slash_list_review_comments_for_repo | **GET** /repos/{owner}/{repo}/pulls/comments | List review comments in a repository
*PullsApi* | [**pulls_slash_list_reviews**]docs/PullsApi.md#pulls_slash_list_reviews | **GET** /repos/{owner}/{repo}/pulls/{pull_number}/reviews | List reviews for a pull request
*PullsApi* | [**pulls_slash_merge**]docs/PullsApi.md#pulls_slash_merge | **PUT** /repos/{owner}/{repo}/pulls/{pull_number}/merge | Merge a pull request
*PullsApi* | [**pulls_slash_remove_requested_reviewers**]docs/PullsApi.md#pulls_slash_remove_requested_reviewers | **DELETE** /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers | Remove requested reviewers from a pull request
*PullsApi* | [**pulls_slash_request_reviewers**]docs/PullsApi.md#pulls_slash_request_reviewers | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers | Request reviewers for a pull request
*PullsApi* | [**pulls_slash_submit_review**]docs/PullsApi.md#pulls_slash_submit_review | **POST** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events | Submit a review for a pull request
*PullsApi* | [**pulls_slash_update**]docs/PullsApi.md#pulls_slash_update | **PATCH** /repos/{owner}/{repo}/pulls/{pull_number} | Update a pull request
*PullsApi* | [**pulls_slash_update_branch**]docs/PullsApi.md#pulls_slash_update_branch | **PUT** /repos/{owner}/{repo}/pulls/{pull_number}/update-branch | Update a pull request branch
*PullsApi* | [**pulls_slash_update_review**]docs/PullsApi.md#pulls_slash_update_review | **PUT** /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id} | Update a review for a pull request
*PullsApi* | [**pulls_slash_update_review_comment**]docs/PullsApi.md#pulls_slash_update_review_comment | **PATCH** /repos/{owner}/{repo}/pulls/comments/{comment_id} | Update a review comment for a pull request
*RateLimitApi* | [**rate_limit_slash_get**]docs/RateLimitApi.md#rate_limit_slash_get | **GET** /rate_limit | Get rate limit status for the authenticated user
*ReactionsApi* | [**reactions_slash_create_for_commit_comment**]docs/ReactionsApi.md#reactions_slash_create_for_commit_comment | **POST** /repos/{owner}/{repo}/comments/{comment_id}/reactions | Create reaction for a commit comment
*ReactionsApi* | [**reactions_slash_create_for_issue**]docs/ReactionsApi.md#reactions_slash_create_for_issue | **POST** /repos/{owner}/{repo}/issues/{issue_number}/reactions | Create reaction for an issue
*ReactionsApi* | [**reactions_slash_create_for_issue_comment**]docs/ReactionsApi.md#reactions_slash_create_for_issue_comment | **POST** /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions | Create reaction for an issue comment
*ReactionsApi* | [**reactions_slash_create_for_pull_request_review_comment**]docs/ReactionsApi.md#reactions_slash_create_for_pull_request_review_comment | **POST** /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions | Create reaction for a pull request review comment
*ReactionsApi* | [**reactions_slash_create_for_release**]docs/ReactionsApi.md#reactions_slash_create_for_release | **POST** /repos/{owner}/{repo}/releases/{release_id}/reactions | Create reaction for a release
*ReactionsApi* | [**reactions_slash_create_for_team_discussion_comment_in_org**]docs/ReactionsApi.md#reactions_slash_create_for_team_discussion_comment_in_org | **POST** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions | Create reaction for a team discussion comment
*ReactionsApi* | [**reactions_slash_create_for_team_discussion_comment_legacy**]docs/ReactionsApi.md#reactions_slash_create_for_team_discussion_comment_legacy | **POST** /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions | Create reaction for a team discussion comment (Legacy)
*ReactionsApi* | [**reactions_slash_create_for_team_discussion_in_org**]docs/ReactionsApi.md#reactions_slash_create_for_team_discussion_in_org | **POST** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions | Create reaction for a team discussion
*ReactionsApi* | [**reactions_slash_create_for_team_discussion_legacy**]docs/ReactionsApi.md#reactions_slash_create_for_team_discussion_legacy | **POST** /teams/{team_id}/discussions/{discussion_number}/reactions | Create reaction for a team discussion (Legacy)
*ReactionsApi* | [**reactions_slash_delete_for_commit_comment**]docs/ReactionsApi.md#reactions_slash_delete_for_commit_comment | **DELETE** /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id} | Delete a commit comment reaction
*ReactionsApi* | [**reactions_slash_delete_for_issue**]docs/ReactionsApi.md#reactions_slash_delete_for_issue | **DELETE** /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id} | Delete an issue reaction
*ReactionsApi* | [**reactions_slash_delete_for_issue_comment**]docs/ReactionsApi.md#reactions_slash_delete_for_issue_comment | **DELETE** /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id} | Delete an issue comment reaction
*ReactionsApi* | [**reactions_slash_delete_for_pull_request_comment**]docs/ReactionsApi.md#reactions_slash_delete_for_pull_request_comment | **DELETE** /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id} | Delete a pull request comment reaction
*ReactionsApi* | [**reactions_slash_delete_for_release**]docs/ReactionsApi.md#reactions_slash_delete_for_release | **DELETE** /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id} | Delete a release reaction
*ReactionsApi* | [**reactions_slash_delete_for_team_discussion**]docs/ReactionsApi.md#reactions_slash_delete_for_team_discussion | **DELETE** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id} | Delete team discussion reaction
*ReactionsApi* | [**reactions_slash_delete_for_team_discussion_comment**]docs/ReactionsApi.md#reactions_slash_delete_for_team_discussion_comment | **DELETE** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id} | Delete team discussion comment reaction
*ReactionsApi* | [**reactions_slash_list_for_commit_comment**]docs/ReactionsApi.md#reactions_slash_list_for_commit_comment | **GET** /repos/{owner}/{repo}/comments/{comment_id}/reactions | List reactions for a commit comment
*ReactionsApi* | [**reactions_slash_list_for_issue**]docs/ReactionsApi.md#reactions_slash_list_for_issue | **GET** /repos/{owner}/{repo}/issues/{issue_number}/reactions | List reactions for an issue
*ReactionsApi* | [**reactions_slash_list_for_issue_comment**]docs/ReactionsApi.md#reactions_slash_list_for_issue_comment | **GET** /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions | List reactions for an issue comment
*ReactionsApi* | [**reactions_slash_list_for_pull_request_review_comment**]docs/ReactionsApi.md#reactions_slash_list_for_pull_request_review_comment | **GET** /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions | List reactions for a pull request review comment
*ReactionsApi* | [**reactions_slash_list_for_release**]docs/ReactionsApi.md#reactions_slash_list_for_release | **GET** /repos/{owner}/{repo}/releases/{release_id}/reactions | List reactions for a release
*ReactionsApi* | [**reactions_slash_list_for_team_discussion_comment_in_org**]docs/ReactionsApi.md#reactions_slash_list_for_team_discussion_comment_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions | List reactions for a team discussion comment
*ReactionsApi* | [**reactions_slash_list_for_team_discussion_comment_legacy**]docs/ReactionsApi.md#reactions_slash_list_for_team_discussion_comment_legacy | **GET** /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions | List reactions for a team discussion comment (Legacy)
*ReactionsApi* | [**reactions_slash_list_for_team_discussion_in_org**]docs/ReactionsApi.md#reactions_slash_list_for_team_discussion_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions | List reactions for a team discussion
*ReactionsApi* | [**reactions_slash_list_for_team_discussion_legacy**]docs/ReactionsApi.md#reactions_slash_list_for_team_discussion_legacy | **GET** /teams/{team_id}/discussions/{discussion_number}/reactions | List reactions for a team discussion (Legacy)
*ReposApi* | [**repos_slash_accept_invitation_for_authenticated_user**]docs/ReposApi.md#repos_slash_accept_invitation_for_authenticated_user | **PATCH** /user/repository_invitations/{invitation_id} | Accept a repository invitation
*ReposApi* | [**repos_slash_add_app_access_restrictions**]docs/ReposApi.md#repos_slash_add_app_access_restrictions | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps | Add app access restrictions
*ReposApi* | [**repos_slash_add_collaborator**]docs/ReposApi.md#repos_slash_add_collaborator | **PUT** /repos/{owner}/{repo}/collaborators/{username} | Add a repository collaborator
*ReposApi* | [**repos_slash_add_status_check_contexts**]docs/ReposApi.md#repos_slash_add_status_check_contexts | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts | Add status check contexts
*ReposApi* | [**repos_slash_add_team_access_restrictions**]docs/ReposApi.md#repos_slash_add_team_access_restrictions | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams | Add team access restrictions
*ReposApi* | [**repos_slash_add_user_access_restrictions**]docs/ReposApi.md#repos_slash_add_user_access_restrictions | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users | Add user access restrictions
*ReposApi* | [**repos_slash_cancel_pages_deployment**]docs/ReposApi.md#repos_slash_cancel_pages_deployment | **POST** /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel | Cancel a GitHub Pages deployment
*ReposApi* | [**repos_slash_check_automated_security_fixes**]docs/ReposApi.md#repos_slash_check_automated_security_fixes | **GET** /repos/{owner}/{repo}/automated-security-fixes | Check if automated security fixes are enabled for a repository
*ReposApi* | [**repos_slash_check_collaborator**]docs/ReposApi.md#repos_slash_check_collaborator | **GET** /repos/{owner}/{repo}/collaborators/{username} | Check if a user is a repository collaborator
*ReposApi* | [**repos_slash_check_private_vulnerability_reporting**]docs/ReposApi.md#repos_slash_check_private_vulnerability_reporting | **GET** /repos/{owner}/{repo}/private-vulnerability-reporting | Check if private vulnerability reporting is enabled for a repository
*ReposApi* | [**repos_slash_check_vulnerability_alerts**]docs/ReposApi.md#repos_slash_check_vulnerability_alerts | **GET** /repos/{owner}/{repo}/vulnerability-alerts | Check if vulnerability alerts are enabled for a repository
*ReposApi* | [**repos_slash_codeowners_errors**]docs/ReposApi.md#repos_slash_codeowners_errors | **GET** /repos/{owner}/{repo}/codeowners/errors | List CODEOWNERS errors
*ReposApi* | [**repos_slash_compare_commits**]docs/ReposApi.md#repos_slash_compare_commits | **GET** /repos/{owner}/{repo}/compare/{base}...{head} | Compare two commits
*ReposApi* | [**repos_slash_compare_commits_with_basehead**]docs/ReposApi.md#repos_slash_compare_commits_with_basehead | **GET** /repos/{owner}/{repo}/compare/{basehead} | Compare two commits
*ReposApi* | [**repos_slash_create_autolink**]docs/ReposApi.md#repos_slash_create_autolink | **POST** /repos/{owner}/{repo}/autolinks | Create an autolink reference for a repository
*ReposApi* | [**repos_slash_create_commit_comment**]docs/ReposApi.md#repos_slash_create_commit_comment | **POST** /repos/{owner}/{repo}/commits/{commit_sha}/comments | Create a commit comment
*ReposApi* | [**repos_slash_create_commit_signature_protection**]docs/ReposApi.md#repos_slash_create_commit_signature_protection | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures | Create commit signature protection
*ReposApi* | [**repos_slash_create_commit_status**]docs/ReposApi.md#repos_slash_create_commit_status | **POST** /repos/{owner}/{repo}/statuses/{sha} | Create a commit status
*ReposApi* | [**repos_slash_create_deploy_key**]docs/ReposApi.md#repos_slash_create_deploy_key | **POST** /repos/{owner}/{repo}/keys | Create a deploy key
*ReposApi* | [**repos_slash_create_deployment**]docs/ReposApi.md#repos_slash_create_deployment | **POST** /repos/{owner}/{repo}/deployments | Create a deployment
*ReposApi* | [**repos_slash_create_deployment_branch_policy**]docs/ReposApi.md#repos_slash_create_deployment_branch_policy | **POST** /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies | Create a deployment branch policy
*ReposApi* | [**repos_slash_create_deployment_protection_rule**]docs/ReposApi.md#repos_slash_create_deployment_protection_rule | **POST** /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules | Create a custom deployment protection rule on an environment
*ReposApi* | [**repos_slash_create_deployment_status**]docs/ReposApi.md#repos_slash_create_deployment_status | **POST** /repos/{owner}/{repo}/deployments/{deployment_id}/statuses | Create a deployment status
*ReposApi* | [**repos_slash_create_dispatch_event**]docs/ReposApi.md#repos_slash_create_dispatch_event | **POST** /repos/{owner}/{repo}/dispatches | Create a repository dispatch event
*ReposApi* | [**repos_slash_create_for_authenticated_user**]docs/ReposApi.md#repos_slash_create_for_authenticated_user | **POST** /user/repos | Create a repository for the authenticated user
*ReposApi* | [**repos_slash_create_fork**]docs/ReposApi.md#repos_slash_create_fork | **POST** /repos/{owner}/{repo}/forks | Create a fork
*ReposApi* | [**repos_slash_create_in_org**]docs/ReposApi.md#repos_slash_create_in_org | **POST** /orgs/{org}/repos | Create an organization repository
*ReposApi* | [**repos_slash_create_or_update_custom_properties_values**]docs/ReposApi.md#repos_slash_create_or_update_custom_properties_values | **PATCH** /repos/{owner}/{repo}/properties/values | Create or update custom property values for a repository
*ReposApi* | [**repos_slash_create_or_update_environment**]docs/ReposApi.md#repos_slash_create_or_update_environment | **PUT** /repos/{owner}/{repo}/environments/{environment_name} | Create or update an environment
*ReposApi* | [**repos_slash_create_or_update_file_contents**]docs/ReposApi.md#repos_slash_create_or_update_file_contents | **PUT** /repos/{owner}/{repo}/contents/{path} | Create or update file contents
*ReposApi* | [**repos_slash_create_org_ruleset**]docs/ReposApi.md#repos_slash_create_org_ruleset | **POST** /orgs/{org}/rulesets | Create an organization repository ruleset
*ReposApi* | [**repos_slash_create_pages_deployment**]docs/ReposApi.md#repos_slash_create_pages_deployment | **POST** /repos/{owner}/{repo}/pages/deployments | Create a GitHub Pages deployment
*ReposApi* | [**repos_slash_create_pages_site**]docs/ReposApi.md#repos_slash_create_pages_site | **POST** /repos/{owner}/{repo}/pages | Create a GitHub Pages site
*ReposApi* | [**repos_slash_create_release**]docs/ReposApi.md#repos_slash_create_release | **POST** /repos/{owner}/{repo}/releases | Create a release
*ReposApi* | [**repos_slash_create_repo_ruleset**]docs/ReposApi.md#repos_slash_create_repo_ruleset | **POST** /repos/{owner}/{repo}/rulesets | Create a repository ruleset
*ReposApi* | [**repos_slash_create_tag_protection**]docs/ReposApi.md#repos_slash_create_tag_protection | **POST** /repos/{owner}/{repo}/tags/protection | Create a tag protection state for a repository
*ReposApi* | [**repos_slash_create_using_template**]docs/ReposApi.md#repos_slash_create_using_template | **POST** /repos/{template_owner}/{template_repo}/generate | Create a repository using a template
*ReposApi* | [**repos_slash_create_webhook**]docs/ReposApi.md#repos_slash_create_webhook | **POST** /repos/{owner}/{repo}/hooks | Create a repository webhook
*ReposApi* | [**repos_slash_decline_invitation_for_authenticated_user**]docs/ReposApi.md#repos_slash_decline_invitation_for_authenticated_user | **DELETE** /user/repository_invitations/{invitation_id} | Decline a repository invitation
*ReposApi* | [**repos_slash_delete**]docs/ReposApi.md#repos_slash_delete | **DELETE** /repos/{owner}/{repo} | Delete a repository
*ReposApi* | [**repos_slash_delete_access_restrictions**]docs/ReposApi.md#repos_slash_delete_access_restrictions | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions | Delete access restrictions
*ReposApi* | [**repos_slash_delete_admin_branch_protection**]docs/ReposApi.md#repos_slash_delete_admin_branch_protection | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins | Delete admin branch protection
*ReposApi* | [**repos_slash_delete_an_environment**]docs/ReposApi.md#repos_slash_delete_an_environment | **DELETE** /repos/{owner}/{repo}/environments/{environment_name} | Delete an environment
*ReposApi* | [**repos_slash_delete_autolink**]docs/ReposApi.md#repos_slash_delete_autolink | **DELETE** /repos/{owner}/{repo}/autolinks/{autolink_id} | Delete an autolink reference from a repository
*ReposApi* | [**repos_slash_delete_branch_protection**]docs/ReposApi.md#repos_slash_delete_branch_protection | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection | Delete branch protection
*ReposApi* | [**repos_slash_delete_commit_comment**]docs/ReposApi.md#repos_slash_delete_commit_comment | **DELETE** /repos/{owner}/{repo}/comments/{comment_id} | Delete a commit comment
*ReposApi* | [**repos_slash_delete_commit_signature_protection**]docs/ReposApi.md#repos_slash_delete_commit_signature_protection | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures | Delete commit signature protection
*ReposApi* | [**repos_slash_delete_deploy_key**]docs/ReposApi.md#repos_slash_delete_deploy_key | **DELETE** /repos/{owner}/{repo}/keys/{key_id} | Delete a deploy key
*ReposApi* | [**repos_slash_delete_deployment**]docs/ReposApi.md#repos_slash_delete_deployment | **DELETE** /repos/{owner}/{repo}/deployments/{deployment_id} | Delete a deployment
*ReposApi* | [**repos_slash_delete_deployment_branch_policy**]docs/ReposApi.md#repos_slash_delete_deployment_branch_policy | **DELETE** /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id} | Delete a deployment branch policy
*ReposApi* | [**repos_slash_delete_file**]docs/ReposApi.md#repos_slash_delete_file | **DELETE** /repos/{owner}/{repo}/contents/{path} | Delete a file
*ReposApi* | [**repos_slash_delete_invitation**]docs/ReposApi.md#repos_slash_delete_invitation | **DELETE** /repos/{owner}/{repo}/invitations/{invitation_id} | Delete a repository invitation
*ReposApi* | [**repos_slash_delete_org_ruleset**]docs/ReposApi.md#repos_slash_delete_org_ruleset | **DELETE** /orgs/{org}/rulesets/{ruleset_id} | Delete an organization repository ruleset
*ReposApi* | [**repos_slash_delete_pages_site**]docs/ReposApi.md#repos_slash_delete_pages_site | **DELETE** /repos/{owner}/{repo}/pages | Delete a GitHub Pages site
*ReposApi* | [**repos_slash_delete_pull_request_review_protection**]docs/ReposApi.md#repos_slash_delete_pull_request_review_protection | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews | Delete pull request review protection
*ReposApi* | [**repos_slash_delete_release**]docs/ReposApi.md#repos_slash_delete_release | **DELETE** /repos/{owner}/{repo}/releases/{release_id} | Delete a release
*ReposApi* | [**repos_slash_delete_release_asset**]docs/ReposApi.md#repos_slash_delete_release_asset | **DELETE** /repos/{owner}/{repo}/releases/assets/{asset_id} | Delete a release asset
*ReposApi* | [**repos_slash_delete_repo_ruleset**]docs/ReposApi.md#repos_slash_delete_repo_ruleset | **DELETE** /repos/{owner}/{repo}/rulesets/{ruleset_id} | Delete a repository ruleset
*ReposApi* | [**repos_slash_delete_tag_protection**]docs/ReposApi.md#repos_slash_delete_tag_protection | **DELETE** /repos/{owner}/{repo}/tags/protection/{tag_protection_id} | Delete a tag protection state for a repository
*ReposApi* | [**repos_slash_delete_webhook**]docs/ReposApi.md#repos_slash_delete_webhook | **DELETE** /repos/{owner}/{repo}/hooks/{hook_id} | Delete a repository webhook
*ReposApi* | [**repos_slash_disable_automated_security_fixes**]docs/ReposApi.md#repos_slash_disable_automated_security_fixes | **DELETE** /repos/{owner}/{repo}/automated-security-fixes | Disable automated security fixes
*ReposApi* | [**repos_slash_disable_deployment_protection_rule**]docs/ReposApi.md#repos_slash_disable_deployment_protection_rule | **DELETE** /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id} | Disable a custom protection rule for an environment
*ReposApi* | [**repos_slash_disable_private_vulnerability_reporting**]docs/ReposApi.md#repos_slash_disable_private_vulnerability_reporting | **DELETE** /repos/{owner}/{repo}/private-vulnerability-reporting | Disable private vulnerability reporting for a repository
*ReposApi* | [**repos_slash_disable_vulnerability_alerts**]docs/ReposApi.md#repos_slash_disable_vulnerability_alerts | **DELETE** /repos/{owner}/{repo}/vulnerability-alerts | Disable vulnerability alerts
*ReposApi* | [**repos_slash_download_tarball_archive**]docs/ReposApi.md#repos_slash_download_tarball_archive | **GET** /repos/{owner}/{repo}/tarball/{ref} | Download a repository archive (tar)
*ReposApi* | [**repos_slash_download_zipball_archive**]docs/ReposApi.md#repos_slash_download_zipball_archive | **GET** /repos/{owner}/{repo}/zipball/{ref} | Download a repository archive (zip)
*ReposApi* | [**repos_slash_enable_automated_security_fixes**]docs/ReposApi.md#repos_slash_enable_automated_security_fixes | **PUT** /repos/{owner}/{repo}/automated-security-fixes | Enable automated security fixes
*ReposApi* | [**repos_slash_enable_private_vulnerability_reporting**]docs/ReposApi.md#repos_slash_enable_private_vulnerability_reporting | **PUT** /repos/{owner}/{repo}/private-vulnerability-reporting | Enable private vulnerability reporting for a repository
*ReposApi* | [**repos_slash_enable_vulnerability_alerts**]docs/ReposApi.md#repos_slash_enable_vulnerability_alerts | **PUT** /repos/{owner}/{repo}/vulnerability-alerts | Enable vulnerability alerts
*ReposApi* | [**repos_slash_generate_release_notes**]docs/ReposApi.md#repos_slash_generate_release_notes | **POST** /repos/{owner}/{repo}/releases/generate-notes | Generate release notes content for a release
*ReposApi* | [**repos_slash_get**]docs/ReposApi.md#repos_slash_get | **GET** /repos/{owner}/{repo} | Get a repository
*ReposApi* | [**repos_slash_get_access_restrictions**]docs/ReposApi.md#repos_slash_get_access_restrictions | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions | Get access restrictions
*ReposApi* | [**repos_slash_get_admin_branch_protection**]docs/ReposApi.md#repos_slash_get_admin_branch_protection | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins | Get admin branch protection
*ReposApi* | [**repos_slash_get_all_deployment_protection_rules**]docs/ReposApi.md#repos_slash_get_all_deployment_protection_rules | **GET** /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules | Get all deployment protection rules for an environment
*ReposApi* | [**repos_slash_get_all_environments**]docs/ReposApi.md#repos_slash_get_all_environments | **GET** /repos/{owner}/{repo}/environments | List environments
*ReposApi* | [**repos_slash_get_all_status_check_contexts**]docs/ReposApi.md#repos_slash_get_all_status_check_contexts | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts | Get all status check contexts
*ReposApi* | [**repos_slash_get_all_topics**]docs/ReposApi.md#repos_slash_get_all_topics | **GET** /repos/{owner}/{repo}/topics | Get all repository topics
*ReposApi* | [**repos_slash_get_apps_with_access_to_protected_branch**]docs/ReposApi.md#repos_slash_get_apps_with_access_to_protected_branch | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps | Get apps with access to the protected branch
*ReposApi* | [**repos_slash_get_autolink**]docs/ReposApi.md#repos_slash_get_autolink | **GET** /repos/{owner}/{repo}/autolinks/{autolink_id} | Get an autolink reference of a repository
*ReposApi* | [**repos_slash_get_branch**]docs/ReposApi.md#repos_slash_get_branch | **GET** /repos/{owner}/{repo}/branches/{branch} | Get a branch
*ReposApi* | [**repos_slash_get_branch_protection**]docs/ReposApi.md#repos_slash_get_branch_protection | **GET** /repos/{owner}/{repo}/branches/{branch}/protection | Get branch protection
*ReposApi* | [**repos_slash_get_branch_rules**]docs/ReposApi.md#repos_slash_get_branch_rules | **GET** /repos/{owner}/{repo}/rules/branches/{branch} | Get rules for a branch
*ReposApi* | [**repos_slash_get_clones**]docs/ReposApi.md#repos_slash_get_clones | **GET** /repos/{owner}/{repo}/traffic/clones | Get repository clones
*ReposApi* | [**repos_slash_get_code_frequency_stats**]docs/ReposApi.md#repos_slash_get_code_frequency_stats | **GET** /repos/{owner}/{repo}/stats/code_frequency | Get the weekly commit activity
*ReposApi* | [**repos_slash_get_collaborator_permission_level**]docs/ReposApi.md#repos_slash_get_collaborator_permission_level | **GET** /repos/{owner}/{repo}/collaborators/{username}/permission | Get repository permissions for a user
*ReposApi* | [**repos_slash_get_combined_status_for_ref**]docs/ReposApi.md#repos_slash_get_combined_status_for_ref | **GET** /repos/{owner}/{repo}/commits/{ref}/status | Get the combined status for a specific reference
*ReposApi* | [**repos_slash_get_commit**]docs/ReposApi.md#repos_slash_get_commit | **GET** /repos/{owner}/{repo}/commits/{ref} | Get a commit
*ReposApi* | [**repos_slash_get_commit_activity_stats**]docs/ReposApi.md#repos_slash_get_commit_activity_stats | **GET** /repos/{owner}/{repo}/stats/commit_activity | Get the last year of commit activity
*ReposApi* | [**repos_slash_get_commit_comment**]docs/ReposApi.md#repos_slash_get_commit_comment | **GET** /repos/{owner}/{repo}/comments/{comment_id} | Get a commit comment
*ReposApi* | [**repos_slash_get_commit_signature_protection**]docs/ReposApi.md#repos_slash_get_commit_signature_protection | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures | Get commit signature protection
*ReposApi* | [**repos_slash_get_community_profile_metrics**]docs/ReposApi.md#repos_slash_get_community_profile_metrics | **GET** /repos/{owner}/{repo}/community/profile | Get community profile metrics
*ReposApi* | [**repos_slash_get_content**]docs/ReposApi.md#repos_slash_get_content | **GET** /repos/{owner}/{repo}/contents/{path} | Get repository content
*ReposApi* | [**repos_slash_get_contributors_stats**]docs/ReposApi.md#repos_slash_get_contributors_stats | **GET** /repos/{owner}/{repo}/stats/contributors | Get all contributor commit activity
*ReposApi* | [**repos_slash_get_custom_deployment_protection_rule**]docs/ReposApi.md#repos_slash_get_custom_deployment_protection_rule | **GET** /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id} | Get a custom deployment protection rule
*ReposApi* | [**repos_slash_get_custom_properties_values**]docs/ReposApi.md#repos_slash_get_custom_properties_values | **GET** /repos/{owner}/{repo}/properties/values | Get all custom property values for a repository
*ReposApi* | [**repos_slash_get_deploy_key**]docs/ReposApi.md#repos_slash_get_deploy_key | **GET** /repos/{owner}/{repo}/keys/{key_id} | Get a deploy key
*ReposApi* | [**repos_slash_get_deployment**]docs/ReposApi.md#repos_slash_get_deployment | **GET** /repos/{owner}/{repo}/deployments/{deployment_id} | Get a deployment
*ReposApi* | [**repos_slash_get_deployment_branch_policy**]docs/ReposApi.md#repos_slash_get_deployment_branch_policy | **GET** /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id} | Get a deployment branch policy
*ReposApi* | [**repos_slash_get_deployment_status**]docs/ReposApi.md#repos_slash_get_deployment_status | **GET** /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id} | Get a deployment status
*ReposApi* | [**repos_slash_get_environment**]docs/ReposApi.md#repos_slash_get_environment | **GET** /repos/{owner}/{repo}/environments/{environment_name} | Get an environment
*ReposApi* | [**repos_slash_get_latest_pages_build**]docs/ReposApi.md#repos_slash_get_latest_pages_build | **GET** /repos/{owner}/{repo}/pages/builds/latest | Get latest Pages build
*ReposApi* | [**repos_slash_get_latest_release**]docs/ReposApi.md#repos_slash_get_latest_release | **GET** /repos/{owner}/{repo}/releases/latest | Get the latest release
*ReposApi* | [**repos_slash_get_org_rule_suite**]docs/ReposApi.md#repos_slash_get_org_rule_suite | **GET** /orgs/{org}/rulesets/rule-suites/{rule_suite_id} | Get an organization rule suite
*ReposApi* | [**repos_slash_get_org_rule_suites**]docs/ReposApi.md#repos_slash_get_org_rule_suites | **GET** /orgs/{org}/rulesets/rule-suites | List organization rule suites
*ReposApi* | [**repos_slash_get_org_ruleset**]docs/ReposApi.md#repos_slash_get_org_ruleset | **GET** /orgs/{org}/rulesets/{ruleset_id} | Get an organization repository ruleset
*ReposApi* | [**repos_slash_get_org_rulesets**]docs/ReposApi.md#repos_slash_get_org_rulesets | **GET** /orgs/{org}/rulesets | Get all organization repository rulesets
*ReposApi* | [**repos_slash_get_pages**]docs/ReposApi.md#repos_slash_get_pages | **GET** /repos/{owner}/{repo}/pages | Get a GitHub Pages site
*ReposApi* | [**repos_slash_get_pages_build**]docs/ReposApi.md#repos_slash_get_pages_build | **GET** /repos/{owner}/{repo}/pages/builds/{build_id} | Get GitHub Pages build
*ReposApi* | [**repos_slash_get_pages_deployment**]docs/ReposApi.md#repos_slash_get_pages_deployment | **GET** /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id} | Get the status of a GitHub Pages deployment
*ReposApi* | [**repos_slash_get_pages_health_check**]docs/ReposApi.md#repos_slash_get_pages_health_check | **GET** /repos/{owner}/{repo}/pages/health | Get a DNS health check for GitHub Pages
*ReposApi* | [**repos_slash_get_participation_stats**]docs/ReposApi.md#repos_slash_get_participation_stats | **GET** /repos/{owner}/{repo}/stats/participation | Get the weekly commit count
*ReposApi* | [**repos_slash_get_pull_request_review_protection**]docs/ReposApi.md#repos_slash_get_pull_request_review_protection | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews | Get pull request review protection
*ReposApi* | [**repos_slash_get_punch_card_stats**]docs/ReposApi.md#repos_slash_get_punch_card_stats | **GET** /repos/{owner}/{repo}/stats/punch_card | Get the hourly commit count for each day
*ReposApi* | [**repos_slash_get_readme**]docs/ReposApi.md#repos_slash_get_readme | **GET** /repos/{owner}/{repo}/readme | Get a repository README
*ReposApi* | [**repos_slash_get_readme_in_directory**]docs/ReposApi.md#repos_slash_get_readme_in_directory | **GET** /repos/{owner}/{repo}/readme/{dir} | Get a repository README for a directory
*ReposApi* | [**repos_slash_get_release**]docs/ReposApi.md#repos_slash_get_release | **GET** /repos/{owner}/{repo}/releases/{release_id} | Get a release
*ReposApi* | [**repos_slash_get_release_asset**]docs/ReposApi.md#repos_slash_get_release_asset | **GET** /repos/{owner}/{repo}/releases/assets/{asset_id} | Get a release asset
*ReposApi* | [**repos_slash_get_release_by_tag**]docs/ReposApi.md#repos_slash_get_release_by_tag | **GET** /repos/{owner}/{repo}/releases/tags/{tag} | Get a release by tag name
*ReposApi* | [**repos_slash_get_repo_rule_suite**]docs/ReposApi.md#repos_slash_get_repo_rule_suite | **GET** /repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id} | Get a repository rule suite
*ReposApi* | [**repos_slash_get_repo_rule_suites**]docs/ReposApi.md#repos_slash_get_repo_rule_suites | **GET** /repos/{owner}/{repo}/rulesets/rule-suites | List repository rule suites
*ReposApi* | [**repos_slash_get_repo_ruleset**]docs/ReposApi.md#repos_slash_get_repo_ruleset | **GET** /repos/{owner}/{repo}/rulesets/{ruleset_id} | Get a repository ruleset
*ReposApi* | [**repos_slash_get_repo_rulesets**]docs/ReposApi.md#repos_slash_get_repo_rulesets | **GET** /repos/{owner}/{repo}/rulesets | Get all repository rulesets
*ReposApi* | [**repos_slash_get_status_checks_protection**]docs/ReposApi.md#repos_slash_get_status_checks_protection | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks | Get status checks protection
*ReposApi* | [**repos_slash_get_teams_with_access_to_protected_branch**]docs/ReposApi.md#repos_slash_get_teams_with_access_to_protected_branch | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams | Get teams with access to the protected branch
*ReposApi* | [**repos_slash_get_top_paths**]docs/ReposApi.md#repos_slash_get_top_paths | **GET** /repos/{owner}/{repo}/traffic/popular/paths | Get top referral paths
*ReposApi* | [**repos_slash_get_top_referrers**]docs/ReposApi.md#repos_slash_get_top_referrers | **GET** /repos/{owner}/{repo}/traffic/popular/referrers | Get top referral sources
*ReposApi* | [**repos_slash_get_users_with_access_to_protected_branch**]docs/ReposApi.md#repos_slash_get_users_with_access_to_protected_branch | **GET** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users | Get users with access to the protected branch
*ReposApi* | [**repos_slash_get_views**]docs/ReposApi.md#repos_slash_get_views | **GET** /repos/{owner}/{repo}/traffic/views | Get page views
*ReposApi* | [**repos_slash_get_webhook**]docs/ReposApi.md#repos_slash_get_webhook | **GET** /repos/{owner}/{repo}/hooks/{hook_id} | Get a repository webhook
*ReposApi* | [**repos_slash_get_webhook_config_for_repo**]docs/ReposApi.md#repos_slash_get_webhook_config_for_repo | **GET** /repos/{owner}/{repo}/hooks/{hook_id}/config | Get a webhook configuration for a repository
*ReposApi* | [**repos_slash_get_webhook_delivery**]docs/ReposApi.md#repos_slash_get_webhook_delivery | **GET** /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id} | Get a delivery for a repository webhook
*ReposApi* | [**repos_slash_list_activities**]docs/ReposApi.md#repos_slash_list_activities | **GET** /repos/{owner}/{repo}/activity | List repository activities
*ReposApi* | [**repos_slash_list_autolinks**]docs/ReposApi.md#repos_slash_list_autolinks | **GET** /repos/{owner}/{repo}/autolinks | Get all autolinks of a repository
*ReposApi* | [**repos_slash_list_branches**]docs/ReposApi.md#repos_slash_list_branches | **GET** /repos/{owner}/{repo}/branches | List branches
*ReposApi* | [**repos_slash_list_branches_for_head_commit**]docs/ReposApi.md#repos_slash_list_branches_for_head_commit | **GET** /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head | List branches for HEAD commit
*ReposApi* | [**repos_slash_list_collaborators**]docs/ReposApi.md#repos_slash_list_collaborators | **GET** /repos/{owner}/{repo}/collaborators | List repository collaborators
*ReposApi* | [**repos_slash_list_comments_for_commit**]docs/ReposApi.md#repos_slash_list_comments_for_commit | **GET** /repos/{owner}/{repo}/commits/{commit_sha}/comments | List commit comments
*ReposApi* | [**repos_slash_list_commit_comments_for_repo**]docs/ReposApi.md#repos_slash_list_commit_comments_for_repo | **GET** /repos/{owner}/{repo}/comments | List commit comments for a repository
*ReposApi* | [**repos_slash_list_commit_statuses_for_ref**]docs/ReposApi.md#repos_slash_list_commit_statuses_for_ref | **GET** /repos/{owner}/{repo}/commits/{ref}/statuses | List commit statuses for a reference
*ReposApi* | [**repos_slash_list_commits**]docs/ReposApi.md#repos_slash_list_commits | **GET** /repos/{owner}/{repo}/commits | List commits
*ReposApi* | [**repos_slash_list_contributors**]docs/ReposApi.md#repos_slash_list_contributors | **GET** /repos/{owner}/{repo}/contributors | List repository contributors
*ReposApi* | [**repos_slash_list_custom_deployment_rule_integrations**]docs/ReposApi.md#repos_slash_list_custom_deployment_rule_integrations | **GET** /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps | List custom deployment rule integrations available for an environment
*ReposApi* | [**repos_slash_list_deploy_keys**]docs/ReposApi.md#repos_slash_list_deploy_keys | **GET** /repos/{owner}/{repo}/keys | List deploy keys
*ReposApi* | [**repos_slash_list_deployment_branch_policies**]docs/ReposApi.md#repos_slash_list_deployment_branch_policies | **GET** /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies | List deployment branch policies
*ReposApi* | [**repos_slash_list_deployment_statuses**]docs/ReposApi.md#repos_slash_list_deployment_statuses | **GET** /repos/{owner}/{repo}/deployments/{deployment_id}/statuses | List deployment statuses
*ReposApi* | [**repos_slash_list_deployments**]docs/ReposApi.md#repos_slash_list_deployments | **GET** /repos/{owner}/{repo}/deployments | List deployments
*ReposApi* | [**repos_slash_list_for_authenticated_user**]docs/ReposApi.md#repos_slash_list_for_authenticated_user | **GET** /user/repos | List repositories for the authenticated user
*ReposApi* | [**repos_slash_list_for_org**]docs/ReposApi.md#repos_slash_list_for_org | **GET** /orgs/{org}/repos | List organization repositories
*ReposApi* | [**repos_slash_list_for_user**]docs/ReposApi.md#repos_slash_list_for_user | **GET** /users/{username}/repos | List repositories for a user
*ReposApi* | [**repos_slash_list_forks**]docs/ReposApi.md#repos_slash_list_forks | **GET** /repos/{owner}/{repo}/forks | List forks
*ReposApi* | [**repos_slash_list_invitations**]docs/ReposApi.md#repos_slash_list_invitations | **GET** /repos/{owner}/{repo}/invitations | List repository invitations
*ReposApi* | [**repos_slash_list_invitations_for_authenticated_user**]docs/ReposApi.md#repos_slash_list_invitations_for_authenticated_user | **GET** /user/repository_invitations | List repository invitations for the authenticated user
*ReposApi* | [**repos_slash_list_languages**]docs/ReposApi.md#repos_slash_list_languages | **GET** /repos/{owner}/{repo}/languages | List repository languages
*ReposApi* | [**repos_slash_list_pages_builds**]docs/ReposApi.md#repos_slash_list_pages_builds | **GET** /repos/{owner}/{repo}/pages/builds | List GitHub Pages builds
*ReposApi* | [**repos_slash_list_public**]docs/ReposApi.md#repos_slash_list_public | **GET** /repositories | List public repositories
*ReposApi* | [**repos_slash_list_pull_requests_associated_with_commit**]docs/ReposApi.md#repos_slash_list_pull_requests_associated_with_commit | **GET** /repos/{owner}/{repo}/commits/{commit_sha}/pulls | List pull requests associated with a commit
*ReposApi* | [**repos_slash_list_release_assets**]docs/ReposApi.md#repos_slash_list_release_assets | **GET** /repos/{owner}/{repo}/releases/{release_id}/assets | List release assets
*ReposApi* | [**repos_slash_list_releases**]docs/ReposApi.md#repos_slash_list_releases | **GET** /repos/{owner}/{repo}/releases | List releases
*ReposApi* | [**repos_slash_list_tag_protection**]docs/ReposApi.md#repos_slash_list_tag_protection | **GET** /repos/{owner}/{repo}/tags/protection | List tag protection states for a repository
*ReposApi* | [**repos_slash_list_tags**]docs/ReposApi.md#repos_slash_list_tags | **GET** /repos/{owner}/{repo}/tags | List repository tags
*ReposApi* | [**repos_slash_list_teams**]docs/ReposApi.md#repos_slash_list_teams | **GET** /repos/{owner}/{repo}/teams | List repository teams
*ReposApi* | [**repos_slash_list_webhook_deliveries**]docs/ReposApi.md#repos_slash_list_webhook_deliveries | **GET** /repos/{owner}/{repo}/hooks/{hook_id}/deliveries | List deliveries for a repository webhook
*ReposApi* | [**repos_slash_list_webhooks**]docs/ReposApi.md#repos_slash_list_webhooks | **GET** /repos/{owner}/{repo}/hooks | List repository webhooks
*ReposApi* | [**repos_slash_merge**]docs/ReposApi.md#repos_slash_merge | **POST** /repos/{owner}/{repo}/merges | Merge a branch
*ReposApi* | [**repos_slash_merge_upstream**]docs/ReposApi.md#repos_slash_merge_upstream | **POST** /repos/{owner}/{repo}/merge-upstream | Sync a fork branch with the upstream repository
*ReposApi* | [**repos_slash_ping_webhook**]docs/ReposApi.md#repos_slash_ping_webhook | **POST** /repos/{owner}/{repo}/hooks/{hook_id}/pings | Ping a repository webhook
*ReposApi* | [**repos_slash_redeliver_webhook_delivery**]docs/ReposApi.md#repos_slash_redeliver_webhook_delivery | **POST** /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts | Redeliver a delivery for a repository webhook
*ReposApi* | [**repos_slash_remove_app_access_restrictions**]docs/ReposApi.md#repos_slash_remove_app_access_restrictions | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps | Remove app access restrictions
*ReposApi* | [**repos_slash_remove_collaborator**]docs/ReposApi.md#repos_slash_remove_collaborator | **DELETE** /repos/{owner}/{repo}/collaborators/{username} | Remove a repository collaborator
*ReposApi* | [**repos_slash_remove_status_check_contexts**]docs/ReposApi.md#repos_slash_remove_status_check_contexts | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts | Remove status check contexts
*ReposApi* | [**repos_slash_remove_status_check_protection**]docs/ReposApi.md#repos_slash_remove_status_check_protection | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks | Remove status check protection
*ReposApi* | [**repos_slash_remove_team_access_restrictions**]docs/ReposApi.md#repos_slash_remove_team_access_restrictions | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams | Remove team access restrictions
*ReposApi* | [**repos_slash_remove_user_access_restrictions**]docs/ReposApi.md#repos_slash_remove_user_access_restrictions | **DELETE** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users | Remove user access restrictions
*ReposApi* | [**repos_slash_rename_branch**]docs/ReposApi.md#repos_slash_rename_branch | **POST** /repos/{owner}/{repo}/branches/{branch}/rename | Rename a branch
*ReposApi* | [**repos_slash_replace_all_topics**]docs/ReposApi.md#repos_slash_replace_all_topics | **PUT** /repos/{owner}/{repo}/topics | Replace all repository topics
*ReposApi* | [**repos_slash_request_pages_build**]docs/ReposApi.md#repos_slash_request_pages_build | **POST** /repos/{owner}/{repo}/pages/builds | Request a GitHub Pages build
*ReposApi* | [**repos_slash_set_admin_branch_protection**]docs/ReposApi.md#repos_slash_set_admin_branch_protection | **POST** /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins | Set admin branch protection
*ReposApi* | [**repos_slash_set_app_access_restrictions**]docs/ReposApi.md#repos_slash_set_app_access_restrictions | **PUT** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps | Set app access restrictions
*ReposApi* | [**repos_slash_set_status_check_contexts**]docs/ReposApi.md#repos_slash_set_status_check_contexts | **PUT** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts | Set status check contexts
*ReposApi* | [**repos_slash_set_team_access_restrictions**]docs/ReposApi.md#repos_slash_set_team_access_restrictions | **PUT** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams | Set team access restrictions
*ReposApi* | [**repos_slash_set_user_access_restrictions**]docs/ReposApi.md#repos_slash_set_user_access_restrictions | **PUT** /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users | Set user access restrictions
*ReposApi* | [**repos_slash_test_push_webhook**]docs/ReposApi.md#repos_slash_test_push_webhook | **POST** /repos/{owner}/{repo}/hooks/{hook_id}/tests | Test the push repository webhook
*ReposApi* | [**repos_slash_transfer**]docs/ReposApi.md#repos_slash_transfer | **POST** /repos/{owner}/{repo}/transfer | Transfer a repository
*ReposApi* | [**repos_slash_update**]docs/ReposApi.md#repos_slash_update | **PATCH** /repos/{owner}/{repo} | Update a repository
*ReposApi* | [**repos_slash_update_branch_protection**]docs/ReposApi.md#repos_slash_update_branch_protection | **PUT** /repos/{owner}/{repo}/branches/{branch}/protection | Update branch protection
*ReposApi* | [**repos_slash_update_commit_comment**]docs/ReposApi.md#repos_slash_update_commit_comment | **PATCH** /repos/{owner}/{repo}/comments/{comment_id} | Update a commit comment
*ReposApi* | [**repos_slash_update_deployment_branch_policy**]docs/ReposApi.md#repos_slash_update_deployment_branch_policy | **PUT** /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id} | Update a deployment branch policy
*ReposApi* | [**repos_slash_update_information_about_pages_site**]docs/ReposApi.md#repos_slash_update_information_about_pages_site | **PUT** /repos/{owner}/{repo}/pages | Update information about a GitHub Pages site
*ReposApi* | [**repos_slash_update_invitation**]docs/ReposApi.md#repos_slash_update_invitation | **PATCH** /repos/{owner}/{repo}/invitations/{invitation_id} | Update a repository invitation
*ReposApi* | [**repos_slash_update_org_ruleset**]docs/ReposApi.md#repos_slash_update_org_ruleset | **PUT** /orgs/{org}/rulesets/{ruleset_id} | Update an organization repository ruleset
*ReposApi* | [**repos_slash_update_pull_request_review_protection**]docs/ReposApi.md#repos_slash_update_pull_request_review_protection | **PATCH** /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews | Update pull request review protection
*ReposApi* | [**repos_slash_update_release**]docs/ReposApi.md#repos_slash_update_release | **PATCH** /repos/{owner}/{repo}/releases/{release_id} | Update a release
*ReposApi* | [**repos_slash_update_release_asset**]docs/ReposApi.md#repos_slash_update_release_asset | **PATCH** /repos/{owner}/{repo}/releases/assets/{asset_id} | Update a release asset
*ReposApi* | [**repos_slash_update_repo_ruleset**]docs/ReposApi.md#repos_slash_update_repo_ruleset | **PUT** /repos/{owner}/{repo}/rulesets/{ruleset_id} | Update a repository ruleset
*ReposApi* | [**repos_slash_update_status_check_protection**]docs/ReposApi.md#repos_slash_update_status_check_protection | **PATCH** /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks | Update status check protection
*ReposApi* | [**repos_slash_update_webhook**]docs/ReposApi.md#repos_slash_update_webhook | **PATCH** /repos/{owner}/{repo}/hooks/{hook_id} | Update a repository webhook
*ReposApi* | [**repos_slash_update_webhook_config_for_repo**]docs/ReposApi.md#repos_slash_update_webhook_config_for_repo | **PATCH** /repos/{owner}/{repo}/hooks/{hook_id}/config | Update a webhook configuration for a repository
*ReposApi* | [**repos_slash_upload_release_asset**]docs/ReposApi.md#repos_slash_upload_release_asset | **POST** /repos/{owner}/{repo}/releases/{release_id}/assets | Upload a release asset
*SearchApi* | [**search_slash_code**]docs/SearchApi.md#search_slash_code | **GET** /search/code | Search code
*SearchApi* | [**search_slash_commits**]docs/SearchApi.md#search_slash_commits | **GET** /search/commits | Search commits
*SearchApi* | [**search_slash_issues_and_pull_requests**]docs/SearchApi.md#search_slash_issues_and_pull_requests | **GET** /search/issues | Search issues and pull requests
*SearchApi* | [**search_slash_labels**]docs/SearchApi.md#search_slash_labels | **GET** /search/labels | Search labels
*SearchApi* | [**search_slash_repos**]docs/SearchApi.md#search_slash_repos | **GET** /search/repositories | Search repositories
*SearchApi* | [**search_slash_topics**]docs/SearchApi.md#search_slash_topics | **GET** /search/topics | Search topics
*SearchApi* | [**search_slash_users**]docs/SearchApi.md#search_slash_users | **GET** /search/users | Search users
*SecretScanningApi* | [**secret_scanning_slash_get_alert**]docs/SecretScanningApi.md#secret_scanning_slash_get_alert | **GET** /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number} | Get a secret scanning alert
*SecretScanningApi* | [**secret_scanning_slash_list_alerts_for_enterprise**]docs/SecretScanningApi.md#secret_scanning_slash_list_alerts_for_enterprise | **GET** /enterprises/{enterprise}/secret-scanning/alerts | List secret scanning alerts for an enterprise
*SecretScanningApi* | [**secret_scanning_slash_list_alerts_for_org**]docs/SecretScanningApi.md#secret_scanning_slash_list_alerts_for_org | **GET** /orgs/{org}/secret-scanning/alerts | List secret scanning alerts for an organization
*SecretScanningApi* | [**secret_scanning_slash_list_alerts_for_repo**]docs/SecretScanningApi.md#secret_scanning_slash_list_alerts_for_repo | **GET** /repos/{owner}/{repo}/secret-scanning/alerts | List secret scanning alerts for a repository
*SecretScanningApi* | [**secret_scanning_slash_list_locations_for_alert**]docs/SecretScanningApi.md#secret_scanning_slash_list_locations_for_alert | **GET** /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations | List locations for a secret scanning alert
*SecretScanningApi* | [**secret_scanning_slash_update_alert**]docs/SecretScanningApi.md#secret_scanning_slash_update_alert | **PATCH** /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number} | Update a secret scanning alert
*SecurityAdvisoriesApi* | [**security_advisories_slash_create_fork**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_create_fork | **POST** /repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks | Create a temporary private fork
*SecurityAdvisoriesApi* | [**security_advisories_slash_create_private_vulnerability_report**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_create_private_vulnerability_report | **POST** /repos/{owner}/{repo}/security-advisories/reports | Privately report a security vulnerability
*SecurityAdvisoriesApi* | [**security_advisories_slash_create_repository_advisory**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_create_repository_advisory | **POST** /repos/{owner}/{repo}/security-advisories | Create a repository security advisory
*SecurityAdvisoriesApi* | [**security_advisories_slash_create_repository_advisory_cve_request**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_create_repository_advisory_cve_request | **POST** /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve | Request a CVE for a repository security advisory
*SecurityAdvisoriesApi* | [**security_advisories_slash_get_global_advisory**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_get_global_advisory | **GET** /advisories/{ghsa_id} | Get a global security advisory
*SecurityAdvisoriesApi* | [**security_advisories_slash_get_repository_advisory**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_get_repository_advisory | **GET** /repos/{owner}/{repo}/security-advisories/{ghsa_id} | Get a repository security advisory
*SecurityAdvisoriesApi* | [**security_advisories_slash_list_global_advisories**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_list_global_advisories | **GET** /advisories | List global security advisories
*SecurityAdvisoriesApi* | [**security_advisories_slash_list_org_repository_advisories**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_list_org_repository_advisories | **GET** /orgs/{org}/security-advisories | List repository security advisories for an organization
*SecurityAdvisoriesApi* | [**security_advisories_slash_list_repository_advisories**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_list_repository_advisories | **GET** /repos/{owner}/{repo}/security-advisories | List repository security advisories
*SecurityAdvisoriesApi* | [**security_advisories_slash_update_repository_advisory**]docs/SecurityAdvisoriesApi.md#security_advisories_slash_update_repository_advisory | **PATCH** /repos/{owner}/{repo}/security-advisories/{ghsa_id} | Update a repository security advisory
*TeamsApi* | [**teams_slash_add_member_legacy**]docs/TeamsApi.md#teams_slash_add_member_legacy | **PUT** /teams/{team_id}/members/{username} | Add team member (Legacy)
*TeamsApi* | [**teams_slash_add_or_update_membership_for_user_in_org**]docs/TeamsApi.md#teams_slash_add_or_update_membership_for_user_in_org | **PUT** /orgs/{org}/teams/{team_slug}/memberships/{username} | Add or update team membership for a user
*TeamsApi* | [**teams_slash_add_or_update_membership_for_user_legacy**]docs/TeamsApi.md#teams_slash_add_or_update_membership_for_user_legacy | **PUT** /teams/{team_id}/memberships/{username} | Add or update team membership for a user (Legacy)
*TeamsApi* | [**teams_slash_add_or_update_project_permissions_in_org**]docs/TeamsApi.md#teams_slash_add_or_update_project_permissions_in_org | **PUT** /orgs/{org}/teams/{team_slug}/projects/{project_id} | Add or update team project permissions
*TeamsApi* | [**teams_slash_add_or_update_project_permissions_legacy**]docs/TeamsApi.md#teams_slash_add_or_update_project_permissions_legacy | **PUT** /teams/{team_id}/projects/{project_id} | Add or update team project permissions (Legacy)
*TeamsApi* | [**teams_slash_add_or_update_repo_permissions_in_org**]docs/TeamsApi.md#teams_slash_add_or_update_repo_permissions_in_org | **PUT** /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo} | Add or update team repository permissions
*TeamsApi* | [**teams_slash_add_or_update_repo_permissions_legacy**]docs/TeamsApi.md#teams_slash_add_or_update_repo_permissions_legacy | **PUT** /teams/{team_id}/repos/{owner}/{repo} | Add or update team repository permissions (Legacy)
*TeamsApi* | [**teams_slash_check_permissions_for_project_in_org**]docs/TeamsApi.md#teams_slash_check_permissions_for_project_in_org | **GET** /orgs/{org}/teams/{team_slug}/projects/{project_id} | Check team permissions for a project
*TeamsApi* | [**teams_slash_check_permissions_for_project_legacy**]docs/TeamsApi.md#teams_slash_check_permissions_for_project_legacy | **GET** /teams/{team_id}/projects/{project_id} | Check team permissions for a project (Legacy)
*TeamsApi* | [**teams_slash_check_permissions_for_repo_in_org**]docs/TeamsApi.md#teams_slash_check_permissions_for_repo_in_org | **GET** /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo} | Check team permissions for a repository
*TeamsApi* | [**teams_slash_check_permissions_for_repo_legacy**]docs/TeamsApi.md#teams_slash_check_permissions_for_repo_legacy | **GET** /teams/{team_id}/repos/{owner}/{repo} | Check team permissions for a repository (Legacy)
*TeamsApi* | [**teams_slash_create**]docs/TeamsApi.md#teams_slash_create | **POST** /orgs/{org}/teams | Create a team
*TeamsApi* | [**teams_slash_create_discussion_comment_in_org**]docs/TeamsApi.md#teams_slash_create_discussion_comment_in_org | **POST** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments | Create a discussion comment
*TeamsApi* | [**teams_slash_create_discussion_comment_legacy**]docs/TeamsApi.md#teams_slash_create_discussion_comment_legacy | **POST** /teams/{team_id}/discussions/{discussion_number}/comments | Create a discussion comment (Legacy)
*TeamsApi* | [**teams_slash_create_discussion_in_org**]docs/TeamsApi.md#teams_slash_create_discussion_in_org | **POST** /orgs/{org}/teams/{team_slug}/discussions | Create a discussion
*TeamsApi* | [**teams_slash_create_discussion_legacy**]docs/TeamsApi.md#teams_slash_create_discussion_legacy | **POST** /teams/{team_id}/discussions | Create a discussion (Legacy)
*TeamsApi* | [**teams_slash_delete_discussion_comment_in_org**]docs/TeamsApi.md#teams_slash_delete_discussion_comment_in_org | **DELETE** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number} | Delete a discussion comment
*TeamsApi* | [**teams_slash_delete_discussion_comment_legacy**]docs/TeamsApi.md#teams_slash_delete_discussion_comment_legacy | **DELETE** /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number} | Delete a discussion comment (Legacy)
*TeamsApi* | [**teams_slash_delete_discussion_in_org**]docs/TeamsApi.md#teams_slash_delete_discussion_in_org | **DELETE** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number} | Delete a discussion
*TeamsApi* | [**teams_slash_delete_discussion_legacy**]docs/TeamsApi.md#teams_slash_delete_discussion_legacy | **DELETE** /teams/{team_id}/discussions/{discussion_number} | Delete a discussion (Legacy)
*TeamsApi* | [**teams_slash_delete_in_org**]docs/TeamsApi.md#teams_slash_delete_in_org | **DELETE** /orgs/{org}/teams/{team_slug} | Delete a team
*TeamsApi* | [**teams_slash_delete_legacy**]docs/TeamsApi.md#teams_slash_delete_legacy | **DELETE** /teams/{team_id} | Delete a team (Legacy)
*TeamsApi* | [**teams_slash_get_by_name**]docs/TeamsApi.md#teams_slash_get_by_name | **GET** /orgs/{org}/teams/{team_slug} | Get a team by name
*TeamsApi* | [**teams_slash_get_discussion_comment_in_org**]docs/TeamsApi.md#teams_slash_get_discussion_comment_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number} | Get a discussion comment
*TeamsApi* | [**teams_slash_get_discussion_comment_legacy**]docs/TeamsApi.md#teams_slash_get_discussion_comment_legacy | **GET** /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number} | Get a discussion comment (Legacy)
*TeamsApi* | [**teams_slash_get_discussion_in_org**]docs/TeamsApi.md#teams_slash_get_discussion_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number} | Get a discussion
*TeamsApi* | [**teams_slash_get_discussion_legacy**]docs/TeamsApi.md#teams_slash_get_discussion_legacy | **GET** /teams/{team_id}/discussions/{discussion_number} | Get a discussion (Legacy)
*TeamsApi* | [**teams_slash_get_legacy**]docs/TeamsApi.md#teams_slash_get_legacy | **GET** /teams/{team_id} | Get a team (Legacy)
*TeamsApi* | [**teams_slash_get_member_legacy**]docs/TeamsApi.md#teams_slash_get_member_legacy | **GET** /teams/{team_id}/members/{username} | Get team member (Legacy)
*TeamsApi* | [**teams_slash_get_membership_for_user_in_org**]docs/TeamsApi.md#teams_slash_get_membership_for_user_in_org | **GET** /orgs/{org}/teams/{team_slug}/memberships/{username} | Get team membership for a user
*TeamsApi* | [**teams_slash_get_membership_for_user_legacy**]docs/TeamsApi.md#teams_slash_get_membership_for_user_legacy | **GET** /teams/{team_id}/memberships/{username} | Get team membership for a user (Legacy)
*TeamsApi* | [**teams_slash_list**]docs/TeamsApi.md#teams_slash_list | **GET** /orgs/{org}/teams | List teams
*TeamsApi* | [**teams_slash_list_child_in_org**]docs/TeamsApi.md#teams_slash_list_child_in_org | **GET** /orgs/{org}/teams/{team_slug}/teams | List child teams
*TeamsApi* | [**teams_slash_list_child_legacy**]docs/TeamsApi.md#teams_slash_list_child_legacy | **GET** /teams/{team_id}/teams | List child teams (Legacy)
*TeamsApi* | [**teams_slash_list_discussion_comments_in_org**]docs/TeamsApi.md#teams_slash_list_discussion_comments_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments | List discussion comments
*TeamsApi* | [**teams_slash_list_discussion_comments_legacy**]docs/TeamsApi.md#teams_slash_list_discussion_comments_legacy | **GET** /teams/{team_id}/discussions/{discussion_number}/comments | List discussion comments (Legacy)
*TeamsApi* | [**teams_slash_list_discussions_in_org**]docs/TeamsApi.md#teams_slash_list_discussions_in_org | **GET** /orgs/{org}/teams/{team_slug}/discussions | List discussions
*TeamsApi* | [**teams_slash_list_discussions_legacy**]docs/TeamsApi.md#teams_slash_list_discussions_legacy | **GET** /teams/{team_id}/discussions | List discussions (Legacy)
*TeamsApi* | [**teams_slash_list_for_authenticated_user**]docs/TeamsApi.md#teams_slash_list_for_authenticated_user | **GET** /user/teams | List teams for the authenticated user
*TeamsApi* | [**teams_slash_list_members_in_org**]docs/TeamsApi.md#teams_slash_list_members_in_org | **GET** /orgs/{org}/teams/{team_slug}/members | List team members
*TeamsApi* | [**teams_slash_list_members_legacy**]docs/TeamsApi.md#teams_slash_list_members_legacy | **GET** /teams/{team_id}/members | List team members (Legacy)
*TeamsApi* | [**teams_slash_list_pending_invitations_in_org**]docs/TeamsApi.md#teams_slash_list_pending_invitations_in_org | **GET** /orgs/{org}/teams/{team_slug}/invitations | List pending team invitations
*TeamsApi* | [**teams_slash_list_pending_invitations_legacy**]docs/TeamsApi.md#teams_slash_list_pending_invitations_legacy | **GET** /teams/{team_id}/invitations | List pending team invitations (Legacy)
*TeamsApi* | [**teams_slash_list_projects_in_org**]docs/TeamsApi.md#teams_slash_list_projects_in_org | **GET** /orgs/{org}/teams/{team_slug}/projects | List team projects
*TeamsApi* | [**teams_slash_list_projects_legacy**]docs/TeamsApi.md#teams_slash_list_projects_legacy | **GET** /teams/{team_id}/projects | List team projects (Legacy)
*TeamsApi* | [**teams_slash_list_repos_in_org**]docs/TeamsApi.md#teams_slash_list_repos_in_org | **GET** /orgs/{org}/teams/{team_slug}/repos | List team repositories
*TeamsApi* | [**teams_slash_list_repos_legacy**]docs/TeamsApi.md#teams_slash_list_repos_legacy | **GET** /teams/{team_id}/repos | List team repositories (Legacy)
*TeamsApi* | [**teams_slash_remove_member_legacy**]docs/TeamsApi.md#teams_slash_remove_member_legacy | **DELETE** /teams/{team_id}/members/{username} | Remove team member (Legacy)
*TeamsApi* | [**teams_slash_remove_membership_for_user_in_org**]docs/TeamsApi.md#teams_slash_remove_membership_for_user_in_org | **DELETE** /orgs/{org}/teams/{team_slug}/memberships/{username} | Remove team membership for a user
*TeamsApi* | [**teams_slash_remove_membership_for_user_legacy**]docs/TeamsApi.md#teams_slash_remove_membership_for_user_legacy | **DELETE** /teams/{team_id}/memberships/{username} | Remove team membership for a user (Legacy)
*TeamsApi* | [**teams_slash_remove_project_in_org**]docs/TeamsApi.md#teams_slash_remove_project_in_org | **DELETE** /orgs/{org}/teams/{team_slug}/projects/{project_id} | Remove a project from a team
*TeamsApi* | [**teams_slash_remove_project_legacy**]docs/TeamsApi.md#teams_slash_remove_project_legacy | **DELETE** /teams/{team_id}/projects/{project_id} | Remove a project from a team (Legacy)
*TeamsApi* | [**teams_slash_remove_repo_in_org**]docs/TeamsApi.md#teams_slash_remove_repo_in_org | **DELETE** /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo} | Remove a repository from a team
*TeamsApi* | [**teams_slash_remove_repo_legacy**]docs/TeamsApi.md#teams_slash_remove_repo_legacy | **DELETE** /teams/{team_id}/repos/{owner}/{repo} | Remove a repository from a team (Legacy)
*TeamsApi* | [**teams_slash_update_discussion_comment_in_org**]docs/TeamsApi.md#teams_slash_update_discussion_comment_in_org | **PATCH** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number} | Update a discussion comment
*TeamsApi* | [**teams_slash_update_discussion_comment_legacy**]docs/TeamsApi.md#teams_slash_update_discussion_comment_legacy | **PATCH** /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number} | Update a discussion comment (Legacy)
*TeamsApi* | [**teams_slash_update_discussion_in_org**]docs/TeamsApi.md#teams_slash_update_discussion_in_org | **PATCH** /orgs/{org}/teams/{team_slug}/discussions/{discussion_number} | Update a discussion
*TeamsApi* | [**teams_slash_update_discussion_legacy**]docs/TeamsApi.md#teams_slash_update_discussion_legacy | **PATCH** /teams/{team_id}/discussions/{discussion_number} | Update a discussion (Legacy)
*TeamsApi* | [**teams_slash_update_in_org**]docs/TeamsApi.md#teams_slash_update_in_org | **PATCH** /orgs/{org}/teams/{team_slug} | Update a team
*TeamsApi* | [**teams_slash_update_legacy**]docs/TeamsApi.md#teams_slash_update_legacy | **PATCH** /teams/{team_id} | Update a team (Legacy)
*UsersApi* | [**users_slash_add_email_for_authenticated_user**]docs/UsersApi.md#users_slash_add_email_for_authenticated_user | **POST** /user/emails | Add an email address for the authenticated user
*UsersApi* | [**users_slash_add_social_account_for_authenticated_user**]docs/UsersApi.md#users_slash_add_social_account_for_authenticated_user | **POST** /user/social_accounts | Add social accounts for the authenticated user
*UsersApi* | [**users_slash_block**]docs/UsersApi.md#users_slash_block | **PUT** /user/blocks/{username} | Block a user
*UsersApi* | [**users_slash_check_blocked**]docs/UsersApi.md#users_slash_check_blocked | **GET** /user/blocks/{username} | Check if a user is blocked by the authenticated user
*UsersApi* | [**users_slash_check_following_for_user**]docs/UsersApi.md#users_slash_check_following_for_user | **GET** /users/{username}/following/{target_user} | Check if a user follows another user
*UsersApi* | [**users_slash_check_person_is_followed_by_authenticated**]docs/UsersApi.md#users_slash_check_person_is_followed_by_authenticated | **GET** /user/following/{username} | Check if a person is followed by the authenticated user
*UsersApi* | [**users_slash_create_gpg_key_for_authenticated_user**]docs/UsersApi.md#users_slash_create_gpg_key_for_authenticated_user | **POST** /user/gpg_keys | Create a GPG key for the authenticated user
*UsersApi* | [**users_slash_create_public_ssh_key_for_authenticated_user**]docs/UsersApi.md#users_slash_create_public_ssh_key_for_authenticated_user | **POST** /user/keys | Create a public SSH key for the authenticated user
*UsersApi* | [**users_slash_create_ssh_signing_key_for_authenticated_user**]docs/UsersApi.md#users_slash_create_ssh_signing_key_for_authenticated_user | **POST** /user/ssh_signing_keys | Create a SSH signing key for the authenticated user
*UsersApi* | [**users_slash_delete_email_for_authenticated_user**]docs/UsersApi.md#users_slash_delete_email_for_authenticated_user | **DELETE** /user/emails | Delete an email address for the authenticated user
*UsersApi* | [**users_slash_delete_gpg_key_for_authenticated_user**]docs/UsersApi.md#users_slash_delete_gpg_key_for_authenticated_user | **DELETE** /user/gpg_keys/{gpg_key_id} | Delete a GPG key for the authenticated user
*UsersApi* | [**users_slash_delete_public_ssh_key_for_authenticated_user**]docs/UsersApi.md#users_slash_delete_public_ssh_key_for_authenticated_user | **DELETE** /user/keys/{key_id} | Delete a public SSH key for the authenticated user
*UsersApi* | [**users_slash_delete_social_account_for_authenticated_user**]docs/UsersApi.md#users_slash_delete_social_account_for_authenticated_user | **DELETE** /user/social_accounts | Delete social accounts for the authenticated user
*UsersApi* | [**users_slash_delete_ssh_signing_key_for_authenticated_user**]docs/UsersApi.md#users_slash_delete_ssh_signing_key_for_authenticated_user | **DELETE** /user/ssh_signing_keys/{ssh_signing_key_id} | Delete an SSH signing key for the authenticated user
*UsersApi* | [**users_slash_follow**]docs/UsersApi.md#users_slash_follow | **PUT** /user/following/{username} | Follow a user
*UsersApi* | [**users_slash_get_authenticated**]docs/UsersApi.md#users_slash_get_authenticated | **GET** /user | Get the authenticated user
*UsersApi* | [**users_slash_get_by_username**]docs/UsersApi.md#users_slash_get_by_username | **GET** /users/{username} | Get a user
*UsersApi* | [**users_slash_get_context_for_user**]docs/UsersApi.md#users_slash_get_context_for_user | **GET** /users/{username}/hovercard | Get contextual information for a user
*UsersApi* | [**users_slash_get_gpg_key_for_authenticated_user**]docs/UsersApi.md#users_slash_get_gpg_key_for_authenticated_user | **GET** /user/gpg_keys/{gpg_key_id} | Get a GPG key for the authenticated user
*UsersApi* | [**users_slash_get_public_ssh_key_for_authenticated_user**]docs/UsersApi.md#users_slash_get_public_ssh_key_for_authenticated_user | **GET** /user/keys/{key_id} | Get a public SSH key for the authenticated user
*UsersApi* | [**users_slash_get_ssh_signing_key_for_authenticated_user**]docs/UsersApi.md#users_slash_get_ssh_signing_key_for_authenticated_user | **GET** /user/ssh_signing_keys/{ssh_signing_key_id} | Get an SSH signing key for the authenticated user
*UsersApi* | [**users_slash_list**]docs/UsersApi.md#users_slash_list | **GET** /users | List users
*UsersApi* | [**users_slash_list_blocked_by_authenticated_user**]docs/UsersApi.md#users_slash_list_blocked_by_authenticated_user | **GET** /user/blocks | List users blocked by the authenticated user
*UsersApi* | [**users_slash_list_emails_for_authenticated_user**]docs/UsersApi.md#users_slash_list_emails_for_authenticated_user | **GET** /user/emails | List email addresses for the authenticated user
*UsersApi* | [**users_slash_list_followed_by_authenticated_user**]docs/UsersApi.md#users_slash_list_followed_by_authenticated_user | **GET** /user/following | List the people the authenticated user follows
*UsersApi* | [**users_slash_list_followers_for_authenticated_user**]docs/UsersApi.md#users_slash_list_followers_for_authenticated_user | **GET** /user/followers | List followers of the authenticated user
*UsersApi* | [**users_slash_list_followers_for_user**]docs/UsersApi.md#users_slash_list_followers_for_user | **GET** /users/{username}/followers | List followers of a user
*UsersApi* | [**users_slash_list_following_for_user**]docs/UsersApi.md#users_slash_list_following_for_user | **GET** /users/{username}/following | List the people a user follows
*UsersApi* | [**users_slash_list_gpg_keys_for_authenticated_user**]docs/UsersApi.md#users_slash_list_gpg_keys_for_authenticated_user | **GET** /user/gpg_keys | List GPG keys for the authenticated user
*UsersApi* | [**users_slash_list_gpg_keys_for_user**]docs/UsersApi.md#users_slash_list_gpg_keys_for_user | **GET** /users/{username}/gpg_keys | List GPG keys for a user
*UsersApi* | [**users_slash_list_public_emails_for_authenticated_user**]docs/UsersApi.md#users_slash_list_public_emails_for_authenticated_user | **GET** /user/public_emails | List public email addresses for the authenticated user
*UsersApi* | [**users_slash_list_public_keys_for_user**]docs/UsersApi.md#users_slash_list_public_keys_for_user | **GET** /users/{username}/keys | List public keys for a user
*UsersApi* | [**users_slash_list_public_ssh_keys_for_authenticated_user**]docs/UsersApi.md#users_slash_list_public_ssh_keys_for_authenticated_user | **GET** /user/keys | List public SSH keys for the authenticated user
*UsersApi* | [**users_slash_list_social_accounts_for_authenticated_user**]docs/UsersApi.md#users_slash_list_social_accounts_for_authenticated_user | **GET** /user/social_accounts | List social accounts for the authenticated user
*UsersApi* | [**users_slash_list_social_accounts_for_user**]docs/UsersApi.md#users_slash_list_social_accounts_for_user | **GET** /users/{username}/social_accounts | List social accounts for a user
*UsersApi* | [**users_slash_list_ssh_signing_keys_for_authenticated_user**]docs/UsersApi.md#users_slash_list_ssh_signing_keys_for_authenticated_user | **GET** /user/ssh_signing_keys | List SSH signing keys for the authenticated user
*UsersApi* | [**users_slash_list_ssh_signing_keys_for_user**]docs/UsersApi.md#users_slash_list_ssh_signing_keys_for_user | **GET** /users/{username}/ssh_signing_keys | List SSH signing keys for a user
*UsersApi* | [**users_slash_set_primary_email_visibility_for_authenticated_user**]docs/UsersApi.md#users_slash_set_primary_email_visibility_for_authenticated_user | **PATCH** /user/email/visibility | Set primary email visibility for the authenticated user
*UsersApi* | [**users_slash_unblock**]docs/UsersApi.md#users_slash_unblock | **DELETE** /user/blocks/{username} | Unblock a user
*UsersApi* | [**users_slash_unfollow**]docs/UsersApi.md#users_slash_unfollow | **DELETE** /user/following/{username} | Unfollow a user
*UsersApi* | [**users_slash_update_authenticated**]docs/UsersApi.md#users_slash_update_authenticated | **PATCH** /user | Update the authenticated user


## Documentation For Models

 - [ActionsAddCustomLabelsToSelfHostedRunnerForOrgRequest]docs/ActionsAddCustomLabelsToSelfHostedRunnerForOrgRequest.md
 - [ActionsBillingUsage]docs/ActionsBillingUsage.md
 - [ActionsBillingUsageMinutesUsedBreakdown]docs/ActionsBillingUsageMinutesUsedBreakdown.md
 - [ActionsCacheList]docs/ActionsCacheList.md
 - [ActionsCacheListActionsCachesInner]docs/ActionsCacheListActionsCachesInner.md
 - [ActionsCacheUsageByRepository]docs/ActionsCacheUsageByRepository.md
 - [ActionsCacheUsageOrgEnterprise]docs/ActionsCacheUsageOrgEnterprise.md
 - [ActionsCreateOrUpdateEnvironmentSecretRequest]docs/ActionsCreateOrUpdateEnvironmentSecretRequest.md
 - [ActionsCreateOrUpdateOrgSecretRequest]docs/ActionsCreateOrUpdateOrgSecretRequest.md
 - [ActionsCreateOrUpdateOrgSecretRequestSelectedRepositoryIdsInner]docs/ActionsCreateOrUpdateOrgSecretRequestSelectedRepositoryIdsInner.md
 - [ActionsCreateOrUpdateRepoSecretRequest]docs/ActionsCreateOrUpdateRepoSecretRequest.md
 - [ActionsCreateOrgVariableRequest]docs/ActionsCreateOrgVariableRequest.md
 - [ActionsCreateRepoVariableRequest]docs/ActionsCreateRepoVariableRequest.md
 - [ActionsCreateWorkflowDispatchRequest]docs/ActionsCreateWorkflowDispatchRequest.md
 - [ActionsDefaultWorkflowPermissions]docs/ActionsDefaultWorkflowPermissions.md
 - [ActionsGenerateRunnerJitconfigForOrg201Response]docs/ActionsGenerateRunnerJitconfigForOrg201Response.md
 - [ActionsGenerateRunnerJitconfigForOrgRequest]docs/ActionsGenerateRunnerJitconfigForOrgRequest.md
 - [ActionsGetActionsCacheUsageByRepoForOrg200Response]docs/ActionsGetActionsCacheUsageByRepoForOrg200Response.md
 - [ActionsGetDefaultWorkflowPermissions]docs/ActionsGetDefaultWorkflowPermissions.md
 - [ActionsGetWorkflowWorkflowIdParameter]docs/ActionsGetWorkflowWorkflowIdParameter.md
 - [ActionsListArtifactsForRepo200Response]docs/ActionsListArtifactsForRepo200Response.md
 - [ActionsListJobsForWorkflowRunAttempt200Response]docs/ActionsListJobsForWorkflowRunAttempt200Response.md
 - [ActionsListLabelsForSelfHostedRunnerForOrg200Response]docs/ActionsListLabelsForSelfHostedRunnerForOrg200Response.md
 - [ActionsListOrgSecrets200Response]docs/ActionsListOrgSecrets200Response.md
 - [ActionsListOrgVariables200Response]docs/ActionsListOrgVariables200Response.md
 - [ActionsListRepoOrganizationSecrets200Response]docs/ActionsListRepoOrganizationSecrets200Response.md
 - [ActionsListRepoOrganizationVariables200Response]docs/ActionsListRepoOrganizationVariables200Response.md
 - [ActionsListRepoWorkflows200Response]docs/ActionsListRepoWorkflows200Response.md
 - [ActionsListSelectedReposForOrgSecret200Response]docs/ActionsListSelectedReposForOrgSecret200Response.md
 - [ActionsListSelectedRepositoriesEnabledGithubActionsOrganization200Response]docs/ActionsListSelectedRepositoriesEnabledGithubActionsOrganization200Response.md
 - [ActionsListSelfHostedRunnersForOrg200Response]docs/ActionsListSelfHostedRunnersForOrg200Response.md
 - [ActionsListWorkflowRunsForRepo200Response]docs/ActionsListWorkflowRunsForRepo200Response.md
 - [ActionsOidcSubjectCustomizationForARepository]docs/ActionsOidcSubjectCustomizationForARepository.md
 - [ActionsOrganizationPermissions]docs/ActionsOrganizationPermissions.md
 - [ActionsPublicKey]docs/ActionsPublicKey.md
 - [ActionsReRunJobForWorkflowRunRequest]docs/ActionsReRunJobForWorkflowRunRequest.md
 - [ActionsRepositoryPermissions]docs/ActionsRepositoryPermissions.md
 - [ActionsReviewCustomGatesForRunRequest]docs/ActionsReviewCustomGatesForRunRequest.md
 - [ActionsReviewPendingDeploymentsForRunRequest]docs/ActionsReviewPendingDeploymentsForRunRequest.md
 - [ActionsSecret]docs/ActionsSecret.md
 - [ActionsSetCustomLabelsForSelfHostedRunnerForOrgRequest]docs/ActionsSetCustomLabelsForSelfHostedRunnerForOrgRequest.md
 - [ActionsSetDefaultWorkflowPermissions]docs/ActionsSetDefaultWorkflowPermissions.md
 - [ActionsSetGithubActionsPermissionsOrganizationRequest]docs/ActionsSetGithubActionsPermissionsOrganizationRequest.md
 - [ActionsSetGithubActionsPermissionsRepositoryRequest]docs/ActionsSetGithubActionsPermissionsRepositoryRequest.md
 - [ActionsSetSelectedReposForOrgSecretRequest]docs/ActionsSetSelectedReposForOrgSecretRequest.md
 - [ActionsSetSelectedReposForOrgVariableRequest]docs/ActionsSetSelectedReposForOrgVariableRequest.md
 - [ActionsSetSelectedRepositoriesEnabledGithubActionsOrganizationRequest]docs/ActionsSetSelectedRepositoriesEnabledGithubActionsOrganizationRequest.md
 - [ActionsUpdateOrgVariableRequest]docs/ActionsUpdateOrgVariableRequest.md
 - [ActionsUpdateRepoVariableRequest]docs/ActionsUpdateRepoVariableRequest.md
 - [ActionsVariable]docs/ActionsVariable.md
 - [ActionsWorkflowAccessToRepository]docs/ActionsWorkflowAccessToRepository.md
 - [Activity]docs/Activity.md
 - [ActivityListReposStarredByUser200Response]docs/ActivityListReposStarredByUser200Response.md
 - [ActivityListStargazersForRepo200Response]docs/ActivityListStargazersForRepo200Response.md
 - [ActivityMarkNotificationsAsRead202Response]docs/ActivityMarkNotificationsAsRead202Response.md
 - [ActivityMarkNotificationsAsReadRequest]docs/ActivityMarkNotificationsAsReadRequest.md
 - [ActivityMarkRepoNotificationsAsRead202Response]docs/ActivityMarkRepoNotificationsAsRead202Response.md
 - [ActivityMarkRepoNotificationsAsReadRequest]docs/ActivityMarkRepoNotificationsAsReadRequest.md
 - [ActivitySetRepoSubscriptionRequest]docs/ActivitySetRepoSubscriptionRequest.md
 - [ActivitySetThreadSubscriptionRequest]docs/ActivitySetThreadSubscriptionRequest.md
 - [Actor]docs/Actor.md
 - [AddedToProjectIssueEvent]docs/AddedToProjectIssueEvent.md
 - [AddedToProjectIssueEventProjectCard]docs/AddedToProjectIssueEventProjectCard.md
 - [AlertInstance]docs/AlertInstance.md
 - [AlertInstanceLocation]docs/AlertInstanceLocation.md
 - [AllowedActions]docs/AllowedActions.md
 - [ApiOverview]docs/ApiOverview.md
 - [ApiOverviewDomains]docs/ApiOverviewDomains.md
 - [ApiOverviewSshKeyFingerprints]docs/ApiOverviewSshKeyFingerprints.md
 - [App]docs/App.md
 - [App1]docs/App1.md
 - [App10]docs/App10.md
 - [App11]docs/App11.md
 - [App12]docs/App12.md
 - [App13]docs/App13.md
 - [App14]docs/App14.md
 - [App15]docs/App15.md
 - [App16]docs/App16.md
 - [App1Permissions]docs/App1Permissions.md
 - [App2]docs/App2.md
 - [App2Permissions]docs/App2Permissions.md
 - [App3]docs/App3.md
 - [App4]docs/App4.md
 - [App5]docs/App5.md
 - [App6]docs/App6.md
 - [App7]docs/App7.md
 - [App8]docs/App8.md
 - [App9]docs/App9.md
 - [AppPermissions]docs/AppPermissions.md
 - [AppsCheckTokenRequest]docs/AppsCheckTokenRequest.md
 - [AppsCreateFromManifest201Response]docs/AppsCreateFromManifest201Response.md
 - [AppsCreateInstallationAccessTokenRequest]docs/AppsCreateInstallationAccessTokenRequest.md
 - [AppsDeleteAuthorizationRequest]docs/AppsDeleteAuthorizationRequest.md
 - [AppsListInstallationReposForAuthenticatedUser200Response]docs/AppsListInstallationReposForAuthenticatedUser200Response.md
 - [AppsListReposAccessibleToInstallation200Response]docs/AppsListReposAccessibleToInstallation200Response.md
 - [AppsScopeTokenRequest]docs/AppsScopeTokenRequest.md
 - [AppsUpdateWebhookConfigForAppRequest]docs/AppsUpdateWebhookConfigForAppRequest.md
 - [Artifact]docs/Artifact.md
 - [ArtifactWorkflowRun]docs/ArtifactWorkflowRun.md
 - [AssignedIssueEvent]docs/AssignedIssueEvent.md
 - [AuthenticationToken]docs/AuthenticationToken.md
 - [AuthorAssociation]docs/AuthorAssociation.md
 - [Authorization]docs/Authorization.md
 - [AuthorizationApp]docs/AuthorizationApp.md
 - [AutoMerge]docs/AutoMerge.md
 - [Autolink]docs/Autolink.md
 - [BaseGist]docs/BaseGist.md
 - [BaseGistFilesValue]docs/BaseGistFilesValue.md
 - [BasicError]docs/BasicError.md
 - [Blob]docs/Blob.md
 - [BranchProtection]docs/BranchProtection.md
 - [BranchProtectionAllowForkSyncing]docs/BranchProtectionAllowForkSyncing.md
 - [BranchProtectionLockBranch]docs/BranchProtectionLockBranch.md
 - [BranchProtectionRequiredLinearHistory]docs/BranchProtectionRequiredLinearHistory.md
 - [BranchProtectionRequiredSignatures]docs/BranchProtectionRequiredSignatures.md
 - [BranchRestrictionPolicy]docs/BranchRestrictionPolicy.md
 - [BranchRestrictionPolicyAppsInner]docs/BranchRestrictionPolicyAppsInner.md
 - [BranchRestrictionPolicyAppsInnerOwner]docs/BranchRestrictionPolicyAppsInnerOwner.md
 - [BranchRestrictionPolicyAppsInnerPermissions]docs/BranchRestrictionPolicyAppsInnerPermissions.md
 - [BranchRestrictionPolicyTeamsInner]docs/BranchRestrictionPolicyTeamsInner.md
 - [BranchRestrictionPolicyUsersInner]docs/BranchRestrictionPolicyUsersInner.md
 - [BranchShort]docs/BranchShort.md
 - [BranchShortCommit]docs/BranchShortCommit.md
 - [BranchWithProtection]docs/BranchWithProtection.md
 - [BranchWithProtectionLinks]docs/BranchWithProtectionLinks.md
 - [CheckAnnotation]docs/CheckAnnotation.md
 - [CheckAutomatedSecurityFixes]docs/CheckAutomatedSecurityFixes.md
 - [CheckRun]docs/CheckRun.md
 - [CheckRunCheckSuite]docs/CheckRunCheckSuite.md
 - [CheckRunOutput]docs/CheckRunOutput.md
 - [CheckRunPullRequest]docs/CheckRunPullRequest.md
 - [CheckRunPullRequestBase]docs/CheckRunPullRequestBase.md
 - [CheckRunWithSimpleCheckSuite]docs/CheckRunWithSimpleCheckSuite.md
 - [CheckRunWithSimpleCheckSuiteOutput]docs/CheckRunWithSimpleCheckSuiteOutput.md
 - [CheckSuite]docs/CheckSuite.md
 - [CheckSuitePreference]docs/CheckSuitePreference.md
 - [CheckSuitePreferencePreferences]docs/CheckSuitePreferencePreferences.md
 - [CheckSuitePreferencePreferencesAutoTriggerChecksInner]docs/CheckSuitePreferencePreferencesAutoTriggerChecksInner.md
 - [ChecksCreateRequest]docs/ChecksCreateRequest.md
 - [ChecksCreateRequestActionsInner]docs/ChecksCreateRequestActionsInner.md
 - [ChecksCreateRequestOutput]docs/ChecksCreateRequestOutput.md
 - [ChecksCreateRequestOutputAnnotationsInner]docs/ChecksCreateRequestOutputAnnotationsInner.md
 - [ChecksCreateRequestOutputImagesInner]docs/ChecksCreateRequestOutputImagesInner.md
 - [ChecksCreateSuiteRequest]docs/ChecksCreateSuiteRequest.md
 - [ChecksListForSuite200Response]docs/ChecksListForSuite200Response.md
 - [ChecksListSuitesForRef200Response]docs/ChecksListSuitesForRef200Response.md
 - [ChecksSetSuitesPreferencesRequest]docs/ChecksSetSuitesPreferencesRequest.md
 - [ChecksSetSuitesPreferencesRequestAutoTriggerChecksInner]docs/ChecksSetSuitesPreferencesRequestAutoTriggerChecksInner.md
 - [ChecksUpdateRequest]docs/ChecksUpdateRequest.md
 - [ChecksUpdateRequestAnyOf]docs/ChecksUpdateRequestAnyOf.md
 - [ChecksUpdateRequestAnyOf1]docs/ChecksUpdateRequestAnyOf1.md
 - [ChecksUpdateRequestOutput]docs/ChecksUpdateRequestOutput.md
 - [Classroom]docs/Classroom.md
 - [ClassroomAcceptedAssignment]docs/ClassroomAcceptedAssignment.md
 - [ClassroomAssignment]docs/ClassroomAssignment.md
 - [ClassroomAssignmentGrade]docs/ClassroomAssignmentGrade.md
 - [CloneTraffic]docs/CloneTraffic.md
 - [CodeOfConduct]docs/CodeOfConduct.md
 - [CodeOfConductSimple]docs/CodeOfConductSimple.md
 - [CodeScanningAlert]docs/CodeScanningAlert.md
 - [CodeScanningAlertClassification]docs/CodeScanningAlertClassification.md
 - [CodeScanningAlertDismissedReason]docs/CodeScanningAlertDismissedReason.md
 - [CodeScanningAlertInstance]docs/CodeScanningAlertInstance.md
 - [CodeScanningAlertInstanceMessage]docs/CodeScanningAlertInstanceMessage.md
 - [CodeScanningAlertItems]docs/CodeScanningAlertItems.md
 - [CodeScanningAlertLocation]docs/CodeScanningAlertLocation.md
 - [CodeScanningAlertRule]docs/CodeScanningAlertRule.md
 - [CodeScanningAlertRuleSummary]docs/CodeScanningAlertRuleSummary.md
 - [CodeScanningAlertSetState]docs/CodeScanningAlertSetState.md
 - [CodeScanningAlertSeverity]docs/CodeScanningAlertSeverity.md
 - [CodeScanningAlertState]docs/CodeScanningAlertState.md
 - [CodeScanningAlertStateQuery]docs/CodeScanningAlertStateQuery.md
 - [CodeScanningAnalysis]docs/CodeScanningAnalysis.md
 - [CodeScanningAnalysisDeletion]docs/CodeScanningAnalysisDeletion.md
 - [CodeScanningAnalysisTool]docs/CodeScanningAnalysisTool.md
 - [CodeScanningCodeqlDatabase]docs/CodeScanningCodeqlDatabase.md
 - [CodeScanningDefaultSetup]docs/CodeScanningDefaultSetup.md
 - [CodeScanningDefaultSetupUpdate]docs/CodeScanningDefaultSetupUpdate.md
 - [CodeScanningDefaultSetupUpdateResponse]docs/CodeScanningDefaultSetupUpdateResponse.md
 - [CodeScanningOrganizationAlertItems]docs/CodeScanningOrganizationAlertItems.md
 - [CodeScanningSarifsReceipt]docs/CodeScanningSarifsReceipt.md
 - [CodeScanningSarifsStatus]docs/CodeScanningSarifsStatus.md
 - [CodeScanningUpdateAlertRequest]docs/CodeScanningUpdateAlertRequest.md
 - [CodeScanningUploadSarifRequest]docs/CodeScanningUploadSarifRequest.md
 - [CodeSearchResultItem]docs/CodeSearchResultItem.md
 - [CodeownersErrors]docs/CodeownersErrors.md
 - [CodeownersErrorsErrorsInner]docs/CodeownersErrorsErrorsInner.md
 - [Codespace]docs/Codespace.md
 - [CodespaceExportDetails]docs/CodespaceExportDetails.md
 - [CodespaceGitStatus]docs/CodespaceGitStatus.md
 - [CodespaceMachine]docs/CodespaceMachine.md
 - [CodespaceRuntimeConstraints]docs/CodespaceRuntimeConstraints.md
 - [CodespaceWithFullRepository]docs/CodespaceWithFullRepository.md
 - [CodespacesCreateForAuthenticatedUserRequest]docs/CodespacesCreateForAuthenticatedUserRequest.md
 - [CodespacesCreateForAuthenticatedUserRequestOneOf]docs/CodespacesCreateForAuthenticatedUserRequestOneOf.md
 - [CodespacesCreateForAuthenticatedUserRequestOneOf1]docs/CodespacesCreateForAuthenticatedUserRequestOneOf1.md
 - [CodespacesCreateForAuthenticatedUserRequestOneOf1PullRequest]docs/CodespacesCreateForAuthenticatedUserRequestOneOf1PullRequest.md
 - [CodespacesCreateOrUpdateOrgSecretRequest]docs/CodespacesCreateOrUpdateOrgSecretRequest.md
 - [CodespacesCreateOrUpdateRepoSecretRequest]docs/CodespacesCreateOrUpdateRepoSecretRequest.md
 - [CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest]docs/CodespacesCreateOrUpdateSecretForAuthenticatedUserRequest.md
 - [CodespacesCreateWithPrForAuthenticatedUserRequest]docs/CodespacesCreateWithPrForAuthenticatedUserRequest.md
 - [CodespacesCreateWithRepoForAuthenticatedUserRequest]docs/CodespacesCreateWithRepoForAuthenticatedUserRequest.md
 - [CodespacesDeleteCodespacesAccessUsersRequest]docs/CodespacesDeleteCodespacesAccessUsersRequest.md
 - [CodespacesListDevcontainersInRepositoryForAuthenticatedUser200Response]docs/CodespacesListDevcontainersInRepositoryForAuthenticatedUser200Response.md
 - [CodespacesListDevcontainersInRepositoryForAuthenticatedUser200ResponseDevcontainersInner]docs/CodespacesListDevcontainersInRepositoryForAuthenticatedUser200ResponseDevcontainersInner.md
 - [CodespacesListInOrganization200Response]docs/CodespacesListInOrganization200Response.md
 - [CodespacesListOrgSecrets200Response]docs/CodespacesListOrgSecrets200Response.md
 - [CodespacesListRepoSecrets200Response]docs/CodespacesListRepoSecrets200Response.md
 - [CodespacesListSecretsForAuthenticatedUser200Response]docs/CodespacesListSecretsForAuthenticatedUser200Response.md
 - [CodespacesOrgSecret]docs/CodespacesOrgSecret.md
 - [CodespacesPermissionsCheckForDevcontainer]docs/CodespacesPermissionsCheckForDevcontainer.md
 - [CodespacesPreFlightWithRepoForAuthenticatedUser200Response]docs/CodespacesPreFlightWithRepoForAuthenticatedUser200Response.md
 - [CodespacesPreFlightWithRepoForAuthenticatedUser200ResponseDefaults]docs/CodespacesPreFlightWithRepoForAuthenticatedUser200ResponseDefaults.md
 - [CodespacesPublicKey]docs/CodespacesPublicKey.md
 - [CodespacesPublishForAuthenticatedUserRequest]docs/CodespacesPublishForAuthenticatedUserRequest.md
 - [CodespacesRepoMachinesForAuthenticatedUser200Response]docs/CodespacesRepoMachinesForAuthenticatedUser200Response.md
 - [CodespacesSecret]docs/CodespacesSecret.md
 - [CodespacesSetCodespacesAccessRequest]docs/CodespacesSetCodespacesAccessRequest.md
 - [CodespacesSetCodespacesAccessUsersRequest]docs/CodespacesSetCodespacesAccessUsersRequest.md
 - [CodespacesSetRepositoriesForSecretForAuthenticatedUserRequest]docs/CodespacesSetRepositoriesForSecretForAuthenticatedUserRequest.md
 - [CodespacesSetSelectedReposForOrgSecretRequest]docs/CodespacesSetSelectedReposForOrgSecretRequest.md
 - [CodespacesUpdateForAuthenticatedUserRequest]docs/CodespacesUpdateForAuthenticatedUserRequest.md
 - [CodespacesUserPublicKey]docs/CodespacesUserPublicKey.md
 - [Collaborator]docs/Collaborator.md
 - [CollaboratorPermissions]docs/CollaboratorPermissions.md
 - [CombinedBillingUsage]docs/CombinedBillingUsage.md
 - [CombinedCommitStatus]docs/CombinedCommitStatus.md
 - [Commit]docs/Commit.md
 - [Commit1]docs/Commit1.md
 - [CommitActivity]docs/CommitActivity.md
 - [CommitComment]docs/CommitComment.md
 - [CommitCommit]docs/CommitCommit.md
 - [CommitCommitTree]docs/CommitCommitTree.md
 - [CommitComparison]docs/CommitComparison.md
 - [CommitParentsInner]docs/CommitParentsInner.md
 - [CommitSearchResultItem]docs/CommitSearchResultItem.md
 - [CommitSearchResultItemCommit]docs/CommitSearchResultItemCommit.md
 - [CommitSearchResultItemCommitAuthor]docs/CommitSearchResultItemCommitAuthor.md
 - [CommitStats]docs/CommitStats.md
 - [Committer]docs/Committer.md
 - [Committer1]docs/Committer1.md
 - [CommunityProfile]docs/CommunityProfile.md
 - [CommunityProfileFiles]docs/CommunityProfileFiles.md
 - [ContainerMetadata]docs/ContainerMetadata.md
 - [ContentDirectoryInner]docs/ContentDirectoryInner.md
 - [ContentFile]docs/ContentFile.md
 - [ContentSubmodule]docs/ContentSubmodule.md
 - [ContentSymlink]docs/ContentSymlink.md
 - [ContentTraffic]docs/ContentTraffic.md
 - [ContentTree]docs/ContentTree.md
 - [ContentTreeEntriesInner]docs/ContentTreeEntriesInner.md
 - [ContentTreeEntriesInnerLinks]docs/ContentTreeEntriesInnerLinks.md
 - [Contributor]docs/Contributor.md
 - [ContributorActivity]docs/ContributorActivity.md
 - [ContributorActivityWeeksInner]docs/ContributorActivityWeeksInner.md
 - [ConvertedNoteToIssueIssueEvent]docs/ConvertedNoteToIssueIssueEvent.md
 - [CopilotAddCopilotSeatsForTeams201Response]docs/CopilotAddCopilotSeatsForTeams201Response.md
 - [CopilotAddCopilotSeatsForTeamsRequest]docs/CopilotAddCopilotSeatsForTeamsRequest.md
 - [CopilotAddCopilotSeatsForUsersRequest]docs/CopilotAddCopilotSeatsForUsersRequest.md
 - [CopilotCancelCopilotSeatAssignmentForTeams200Response]docs/CopilotCancelCopilotSeatAssignmentForTeams200Response.md
 - [CopilotCancelCopilotSeatAssignmentForTeamsRequest]docs/CopilotCancelCopilotSeatAssignmentForTeamsRequest.md
 - [CopilotCancelCopilotSeatAssignmentForUsersRequest]docs/CopilotCancelCopilotSeatAssignmentForUsersRequest.md
 - [CopilotListCopilotSeats200Response]docs/CopilotListCopilotSeats200Response.md
 - [CopilotOrganizationDetails]docs/CopilotOrganizationDetails.md
 - [CopilotSeatBreakdown]docs/CopilotSeatBreakdown.md
 - [CopilotSeatDetails]docs/CopilotSeatDetails.md
 - [CopilotSeatDetailsAssignee]docs/CopilotSeatDetailsAssignee.md
 - [CopilotSeatDetailsAssigningTeam]docs/CopilotSeatDetailsAssigningTeam.md
 - [CopilotUsageMetrics]docs/CopilotUsageMetrics.md
 - [CopilotUsageMetricsBreakdownInner]docs/CopilotUsageMetricsBreakdownInner.md
 - [CustomDeploymentRuleApp]docs/CustomDeploymentRuleApp.md
 - [CustomPropertyValue]docs/CustomPropertyValue.md
 - [CustomPropertyValueValue]docs/CustomPropertyValueValue.md
 - [DemilestonedIssueEvent]docs/DemilestonedIssueEvent.md
 - [DependabotAlert]docs/DependabotAlert.md
 - [DependabotAlertPackage]docs/DependabotAlertPackage.md
 - [DependabotAlertSecurityAdvisory]docs/DependabotAlertSecurityAdvisory.md
 - [DependabotAlertSecurityAdvisoryCvss]docs/DependabotAlertSecurityAdvisoryCvss.md
 - [DependabotAlertSecurityAdvisoryCwesInner]docs/DependabotAlertSecurityAdvisoryCwesInner.md
 - [DependabotAlertSecurityAdvisoryIdentifiersInner]docs/DependabotAlertSecurityAdvisoryIdentifiersInner.md
 - [DependabotAlertSecurityAdvisoryReferencesInner]docs/DependabotAlertSecurityAdvisoryReferencesInner.md
 - [DependabotAlertSecurityVulnerability]docs/DependabotAlertSecurityVulnerability.md
 - [DependabotAlertSecurityVulnerabilityFirstPatchedVersion]docs/DependabotAlertSecurityVulnerabilityFirstPatchedVersion.md
 - [DependabotAlertWithRepository]docs/DependabotAlertWithRepository.md
 - [DependabotAlertWithRepositoryDependency]docs/DependabotAlertWithRepositoryDependency.md
 - [DependabotCreateOrUpdateOrgSecretRequest]docs/DependabotCreateOrUpdateOrgSecretRequest.md
 - [DependabotCreateOrUpdateOrgSecretRequestSelectedRepositoryIdsInner]docs/DependabotCreateOrUpdateOrgSecretRequestSelectedRepositoryIdsInner.md
 - [DependabotCreateOrUpdateRepoSecretRequest]docs/DependabotCreateOrUpdateRepoSecretRequest.md
 - [DependabotListOrgSecrets200Response]docs/DependabotListOrgSecrets200Response.md
 - [DependabotListRepoSecrets200Response]docs/DependabotListRepoSecrets200Response.md
 - [DependabotPublicKey]docs/DependabotPublicKey.md
 - [DependabotSecret]docs/DependabotSecret.md
 - [DependabotSetSelectedReposForOrgSecretRequest]docs/DependabotSetSelectedReposForOrgSecretRequest.md
 - [DependabotUpdateAlertRequest]docs/DependabotUpdateAlertRequest.md
 - [Dependency]docs/Dependency.md
 - [DependencyGraphCreateRepositorySnapshot201Response]docs/DependencyGraphCreateRepositorySnapshot201Response.md
 - [DependencyGraphDiffInner]docs/DependencyGraphDiffInner.md
 - [DependencyGraphDiffInnerVulnerabilitiesInner]docs/DependencyGraphDiffInnerVulnerabilitiesInner.md
 - [DependencyGraphSpdxSbom]docs/DependencyGraphSpdxSbom.md
 - [DependencyGraphSpdxSbomSbom]docs/DependencyGraphSpdxSbomSbom.md
 - [DependencyGraphSpdxSbomSbomCreationInfo]docs/DependencyGraphSpdxSbomSbomCreationInfo.md
 - [DependencyGraphSpdxSbomSbomPackagesInner]docs/DependencyGraphSpdxSbomSbomPackagesInner.md
 - [DependencyGraphSpdxSbomSbomPackagesInnerExternalRefsInner]docs/DependencyGraphSpdxSbomSbomPackagesInnerExternalRefsInner.md
 - [DeployKey]docs/DeployKey.md
 - [Deployment]docs/Deployment.md
 - [Deployment1]docs/Deployment1.md
 - [Deployment1Payload]docs/Deployment1Payload.md
 - [DeploymentBranchPolicy]docs/DeploymentBranchPolicy.md
 - [DeploymentBranchPolicyNamePattern]docs/DeploymentBranchPolicyNamePattern.md
 - [DeploymentBranchPolicyNamePatternWithType]docs/DeploymentBranchPolicyNamePatternWithType.md
 - [DeploymentBranchPolicySettings]docs/DeploymentBranchPolicySettings.md
 - [DeploymentPayload]docs/DeploymentPayload.md
 - [DeploymentProtectionRule]docs/DeploymentProtectionRule.md
 - [DeploymentReviewerType]docs/DeploymentReviewerType.md
 - [DeploymentSimple]docs/DeploymentSimple.md
 - [DeploymentStatus]docs/DeploymentStatus.md
 - [DeploymentWorkflowRun]docs/DeploymentWorkflowRun.md
 - [DeploymentWorkflowRun1]docs/DeploymentWorkflowRun1.md
 - [DeploymentWorkflowRun1HeadRepository]docs/DeploymentWorkflowRun1HeadRepository.md
 - [DeploymentWorkflowRun2]docs/DeploymentWorkflowRun2.md
 - [DeploymentWorkflowRun3]docs/DeploymentWorkflowRun3.md
 - [DeploymentWorkflowRun4]docs/DeploymentWorkflowRun4.md
 - [DeploymentWorkflowRunHeadRepository]docs/DeploymentWorkflowRunHeadRepository.md
 - [DeploymentWorkflowRunReferencedWorkflowsInner]docs/DeploymentWorkflowRunReferencedWorkflowsInner.md
 - [DiffEntry]docs/DiffEntry.md
 - [Discussion]docs/Discussion.md
 - [DiscussionCategory]docs/DiscussionCategory.md
 - [DockerMetadata]docs/DockerMetadata.md
 - [Email]docs/Email.md
 - [EnabledRepositories]docs/EnabledRepositories.md
 - [Enterprise]docs/Enterprise.md
 - [EnterpriseWebhooks]docs/EnterpriseWebhooks.md
 - [Environment]docs/Environment.md
 - [EnvironmentApprovals]docs/EnvironmentApprovals.md
 - [EnvironmentApprovalsEnvironmentsInner]docs/EnvironmentApprovalsEnvironmentsInner.md
 - [EnvironmentProtectionRulesInner]docs/EnvironmentProtectionRulesInner.md
 - [EnvironmentProtectionRulesInnerAnyOf]docs/EnvironmentProtectionRulesInnerAnyOf.md
 - [EnvironmentProtectionRulesInnerAnyOf1]docs/EnvironmentProtectionRulesInnerAnyOf1.md
 - [EnvironmentProtectionRulesInnerAnyOf2]docs/EnvironmentProtectionRulesInnerAnyOf2.md
 - [Event]docs/Event.md
 - [EventPayload]docs/EventPayload.md
 - [EventPayloadPagesInner]docs/EventPayloadPagesInner.md
 - [EventRepo]docs/EventRepo.md
 - [Feed]docs/Feed.md
 - [FeedLinks]docs/FeedLinks.md
 - [FileCommit]docs/FileCommit.md
 - [FileCommitCommit]docs/FileCommitCommit.md
 - [FileCommitCommitAuthor]docs/FileCommitCommitAuthor.md
 - [FileCommitCommitParentsInner]docs/FileCommitCommitParentsInner.md
 - [FileCommitCommitTree]docs/FileCommitCommitTree.md
 - [FileCommitCommitVerification]docs/FileCommitCommitVerification.md
 - [FileCommitContent]docs/FileCommitContent.md
 - [FileCommitContentLinks]docs/FileCommitContentLinks.md
 - [FileExtensionRestriction]docs/FileExtensionRestriction.md
 - [FileExtensionRestrictionParameters]docs/FileExtensionRestrictionParameters.md
 - [FilePathRestriction]docs/FilePathRestriction.md
 - [FilePathRestrictionParameters]docs/FilePathRestrictionParameters.md
 - [FullRepository]docs/FullRepository.md
 - [FullRepositoryPermissions]docs/FullRepositoryPermissions.md
 - [Gist]docs/Gist.md
 - [GistComment]docs/GistComment.md
 - [GistCommit]docs/GistCommit.md
 - [GistHistory]docs/GistHistory.md
 - [GistHistoryChangeStatus]docs/GistHistoryChangeStatus.md
 - [GistSimple]docs/GistSimple.md
 - [GistSimpleFilesValue]docs/GistSimpleFilesValue.md
 - [GistSimpleForksInner]docs/GistSimpleForksInner.md
 - [GistsCreateCommentRequest]docs/GistsCreateCommentRequest.md
 - [GistsCreateRequest]docs/GistsCreateRequest.md
 - [GistsCreateRequestFilesValue]docs/GistsCreateRequestFilesValue.md
 - [GistsCreateRequestPublic]docs/GistsCreateRequestPublic.md
 - [GistsGet403Response]docs/GistsGet403Response.md
 - [GistsGet403ResponseBlock]docs/GistsGet403ResponseBlock.md
 - [GistsUpdateRequest]docs/GistsUpdateRequest.md
 - [GistsUpdateRequestFilesValue]docs/GistsUpdateRequestFilesValue.md
 - [GitCommit]docs/GitCommit.md
 - [GitCommitAuthor]docs/GitCommitAuthor.md
 - [GitCommitParentsInner]docs/GitCommitParentsInner.md
 - [GitCommitTree]docs/GitCommitTree.md
 - [GitCommitVerification]docs/GitCommitVerification.md
 - [GitCreateBlobRequest]docs/GitCreateBlobRequest.md
 - [GitCreateCommitRequest]docs/GitCreateCommitRequest.md
 - [GitCreateCommitRequestAuthor]docs/GitCreateCommitRequestAuthor.md
 - [GitCreateCommitRequestCommitter]docs/GitCreateCommitRequestCommitter.md
 - [GitCreateRefRequest]docs/GitCreateRefRequest.md
 - [GitCreateTagRequest]docs/GitCreateTagRequest.md
 - [GitCreateTagRequestTagger]docs/GitCreateTagRequestTagger.md
 - [GitCreateTreeRequest]docs/GitCreateTreeRequest.md
 - [GitCreateTreeRequestTreeInner]docs/GitCreateTreeRequestTreeInner.md
 - [GitRef]docs/GitRef.md
 - [GitRefObject]docs/GitRefObject.md
 - [GitTag]docs/GitTag.md
 - [GitTagObject]docs/GitTagObject.md
 - [GitTagTagger]docs/GitTagTagger.md
 - [GitTree]docs/GitTree.md
 - [GitTreeTreeInner]docs/GitTreeTreeInner.md
 - [GitUpdateRefRequest]docs/GitUpdateRefRequest.md
 - [GitignoreTemplate]docs/GitignoreTemplate.md
 - [GlobalAdvisory]docs/GlobalAdvisory.md
 - [GlobalAdvisoryCreditsInner]docs/GlobalAdvisoryCreditsInner.md
 - [GlobalAdvisoryCvss]docs/GlobalAdvisoryCvss.md
 - [GlobalAdvisoryCwesInner]docs/GlobalAdvisoryCwesInner.md
 - [GlobalAdvisoryIdentifiersInner]docs/GlobalAdvisoryIdentifiersInner.md
 - [GpgKey]docs/GpgKey.md
 - [GpgKeyEmailsInner]docs/GpgKeyEmailsInner.md
 - [GpgKeySubkeysInner]docs/GpgKeySubkeysInner.md
 - [Hook]docs/Hook.md
 - [HookDelivery]docs/HookDelivery.md
 - [HookDeliveryItem]docs/HookDeliveryItem.md
 - [HookDeliveryRequest]docs/HookDeliveryRequest.md
 - [HookDeliveryResponse]docs/HookDeliveryResponse.md
 - [HookResponse]docs/HookResponse.md
 - [Hovercard]docs/Hovercard.md
 - [HovercardContextsInner]docs/HovercardContextsInner.md
 - [Import]docs/Import.md
 - [ImportProjectChoicesInner]docs/ImportProjectChoicesInner.md
 - [Installation]docs/Installation.md
 - [InstallationAccount]docs/InstallationAccount.md
 - [InstallationToken]docs/InstallationToken.md
 - [Integration]docs/Integration.md
 - [IntegrationInstallationRequest]docs/IntegrationInstallationRequest.md
 - [IntegrationInstallationRequestAccount]docs/IntegrationInstallationRequestAccount.md
 - [IntegrationPermissions]docs/IntegrationPermissions.md
 - [InteractionExpiry]docs/InteractionExpiry.md
 - [InteractionGroup]docs/InteractionGroup.md
 - [InteractionLimit]docs/InteractionLimit.md
 - [InteractionLimitResponse]docs/InteractionLimitResponse.md
 - [InteractionsGetRestrictionsForOrg200Response]docs/InteractionsGetRestrictionsForOrg200Response.md
 - [Issue]docs/Issue.md
 - [Issue1]docs/Issue1.md
 - [Issue10]docs/Issue10.md
 - [Issue2]docs/Issue2.md
 - [Issue3]docs/Issue3.md
 - [Issue4]docs/Issue4.md
 - [Issue5]docs/Issue5.md
 - [Issue6]docs/Issue6.md
 - [Issue7]docs/Issue7.md
 - [Issue8]docs/Issue8.md
 - [Issue9]docs/Issue9.md
 - [IssueComment]docs/IssueComment.md
 - [IssueEvent]docs/IssueEvent.md
 - [IssueEventDismissedReview]docs/IssueEventDismissedReview.md
 - [IssueEventForIssue]docs/IssueEventForIssue.md
 - [IssueEventLabel]docs/IssueEventLabel.md
 - [IssueEventMilestone]docs/IssueEventMilestone.md
 - [IssueEventProjectCard]docs/IssueEventProjectCard.md
 - [IssueEventRename]docs/IssueEventRename.md
 - [IssueLabelsInner]docs/IssueLabelsInner.md
 - [IssueLabelsInnerOneOf]docs/IssueLabelsInnerOneOf.md
 - [IssuePullRequest]docs/IssuePullRequest.md
 - [IssueSearchResultItem]docs/IssueSearchResultItem.md
 - [IssueSearchResultItemLabelsInner]docs/IssueSearchResultItemLabelsInner.md
 - [IssuesAddAssigneesRequest]docs/IssuesAddAssigneesRequest.md
 - [IssuesAddLabelsRequest]docs/IssuesAddLabelsRequest.md
 - [IssuesAddLabelsRequestOneOf]docs/IssuesAddLabelsRequestOneOf.md
 - [IssuesCreateLabelRequest]docs/IssuesCreateLabelRequest.md
 - [IssuesCreateMilestoneRequest]docs/IssuesCreateMilestoneRequest.md
 - [IssuesCreateRequest]docs/IssuesCreateRequest.md
 - [IssuesCreateRequestLabelsInner]docs/IssuesCreateRequestLabelsInner.md
 - [IssuesCreateRequestLabelsInnerOneOf]docs/IssuesCreateRequestLabelsInnerOneOf.md
 - [IssuesCreateRequestMilestone]docs/IssuesCreateRequestMilestone.md
 - [IssuesCreateRequestTitle]docs/IssuesCreateRequestTitle.md
 - [IssuesLockRequest]docs/IssuesLockRequest.md
 - [IssuesRemoveAssigneesRequest]docs/IssuesRemoveAssigneesRequest.md
 - [IssuesSetLabelsRequest]docs/IssuesSetLabelsRequest.md
 - [IssuesSetLabelsRequestOneOf]docs/IssuesSetLabelsRequestOneOf.md
 - [IssuesSetLabelsRequestOneOf1]docs/IssuesSetLabelsRequestOneOf1.md
 - [IssuesSetLabelsRequestOneOf1LabelsInner]docs/IssuesSetLabelsRequestOneOf1LabelsInner.md
 - [IssuesUpdateCommentRequest]docs/IssuesUpdateCommentRequest.md
 - [IssuesUpdateLabelRequest]docs/IssuesUpdateLabelRequest.md
 - [IssuesUpdateMilestoneRequest]docs/IssuesUpdateMilestoneRequest.md
 - [IssuesUpdateRequest]docs/IssuesUpdateRequest.md
 - [IssuesUpdateRequestMilestone]docs/IssuesUpdateRequestMilestone.md
 - [IssuesUpdateRequestTitle]docs/IssuesUpdateRequestTitle.md
 - [Job]docs/Job.md
 - [JobStepsInner]docs/JobStepsInner.md
 - [Key]docs/Key.md
 - [KeySimple]docs/KeySimple.md
 - [Label]docs/Label.md
 - [Label1]docs/Label1.md
 - [LabelSearchResultItem]docs/LabelSearchResultItem.md
 - [LabeledIssueEvent]docs/LabeledIssueEvent.md
 - [LabeledIssueEventLabel]docs/LabeledIssueEventLabel.md
 - [License]docs/License.md
 - [LicenseContent]docs/LicenseContent.md
 - [LicenseSimple]docs/LicenseSimple.md
 - [Link]docs/Link.md
 - [LinkWithType]docs/LinkWithType.md
 - [LockedIssueEvent]docs/LockedIssueEvent.md
 - [Manifest]docs/Manifest.md
 - [ManifestFile]docs/ManifestFile.md
 - [MarkdownRenderRequest]docs/MarkdownRenderRequest.md
 - [MarketplaceAccount]docs/MarketplaceAccount.md
 - [MarketplaceListingPlan]docs/MarketplaceListingPlan.md
 - [MarketplacePurchase]docs/MarketplacePurchase.md
 - [MarketplacePurchase1]docs/MarketplacePurchase1.md
 - [MarketplacePurchase2]docs/MarketplacePurchase2.md
 - [MarketplacePurchaseMarketplacePendingChange]docs/MarketplacePurchaseMarketplacePendingChange.md
 - [MarketplacePurchaseMarketplacePurchase]docs/MarketplacePurchaseMarketplacePurchase.md
 - [MaxFilePathLength]docs/MaxFilePathLength.md
 - [MaxFilePathLengthParameters]docs/MaxFilePathLengthParameters.md
 - [MaxFileSize]docs/MaxFileSize.md
 - [MaxFileSizeParameters]docs/MaxFileSizeParameters.md
 - [MergeGroup]docs/MergeGroup.md
 - [MergedUpstream]docs/MergedUpstream.md
 - [MetadataValue]docs/MetadataValue.md
 - [Migration]docs/Migration.md
 - [MigrationsMapCommitAuthorRequest]docs/MigrationsMapCommitAuthorRequest.md
 - [MigrationsSetLfsPreferenceRequest]docs/MigrationsSetLfsPreferenceRequest.md
 - [MigrationsStartForAuthenticatedUserRequest]docs/MigrationsStartForAuthenticatedUserRequest.md
 - [MigrationsStartForOrgRequest]docs/MigrationsStartForOrgRequest.md
 - [MigrationsStartImportRequest]docs/MigrationsStartImportRequest.md
 - [MigrationsUpdateImportRequest]docs/MigrationsUpdateImportRequest.md
 - [Milestone]docs/Milestone.md
 - [Milestone1]docs/Milestone1.md
 - [MilestonedIssueEvent]docs/MilestonedIssueEvent.md
 - [MilestonedIssueEventMilestone]docs/MilestonedIssueEventMilestone.md
 - [MinimalRepository]docs/MinimalRepository.md
 - [MinimalRepositoryLicense]docs/MinimalRepositoryLicense.md
 - [MinimalRepositoryPermissions]docs/MinimalRepositoryPermissions.md
 - [MovedColumnInProjectIssueEvent]docs/MovedColumnInProjectIssueEvent.md
 - [NullableCodeOfConductSimple]docs/NullableCodeOfConductSimple.md
 - [NullableCodespaceMachine]docs/NullableCodespaceMachine.md
 - [NullableCollaborator]docs/NullableCollaborator.md
 - [NullableCommunityHealthFile]docs/NullableCommunityHealthFile.md
 - [NullableGitUser]docs/NullableGitUser.md
 - [NullableIntegration]docs/NullableIntegration.md
 - [NullableIssue]docs/NullableIssue.md
 - [NullableLicenseSimple]docs/NullableLicenseSimple.md
 - [NullableMilestone]docs/NullableMilestone.md
 - [NullableMinimalRepository]docs/NullableMinimalRepository.md
 - [NullableRepository]docs/NullableRepository.md
 - [NullableRepositoryWebhooks]docs/NullableRepositoryWebhooks.md
 - [NullableScopedInstallation]docs/NullableScopedInstallation.md
 - [NullableSimpleCommit]docs/NullableSimpleCommit.md
 - [NullableSimpleCommitAuthor]docs/NullableSimpleCommitAuthor.md
 - [NullableSimpleCommitCommitter]docs/NullableSimpleCommitCommitter.md
 - [NullableSimpleUser]docs/NullableSimpleUser.md
 - [NullableTeamSimple]docs/NullableTeamSimple.md
 - [OidcCustomSub]docs/OidcCustomSub.md
 - [OidcCustomSubRepo]docs/OidcCustomSubRepo.md
 - [OrgCustomProperty]docs/OrgCustomProperty.md
 - [OrgHook]docs/OrgHook.md
 - [OrgHookConfig]docs/OrgHookConfig.md
 - [OrgMembership]docs/OrgMembership.md
 - [OrgMembershipPermissions]docs/OrgMembershipPermissions.md
 - [OrgRepoCustomPropertyValues]docs/OrgRepoCustomPropertyValues.md
 - [OrgRulesetConditions]docs/OrgRulesetConditions.md
 - [Organization]docs/Organization.md
 - [OrganizationActionsSecret]docs/OrganizationActionsSecret.md
 - [OrganizationActionsVariable]docs/OrganizationActionsVariable.md
 - [OrganizationDependabotSecret]docs/OrganizationDependabotSecret.md
 - [OrganizationFineGrainedPermission]docs/OrganizationFineGrainedPermission.md
 - [OrganizationFull]docs/OrganizationFull.md
 - [OrganizationFullPlan]docs/OrganizationFullPlan.md
 - [OrganizationInvitation]docs/OrganizationInvitation.md
 - [OrganizationPlan]docs/OrganizationPlan.md
 - [OrganizationProgrammaticAccessGrant]docs/OrganizationProgrammaticAccessGrant.md
 - [OrganizationProgrammaticAccessGrantRequest]docs/OrganizationProgrammaticAccessGrantRequest.md
 - [OrganizationProgrammaticAccessGrantRequestPermissions]docs/OrganizationProgrammaticAccessGrantRequestPermissions.md
 - [OrganizationRole]docs/OrganizationRole.md
 - [OrganizationSecretScanningAlert]docs/OrganizationSecretScanningAlert.md
 - [OrganizationSimple]docs/OrganizationSimple.md
 - [OrganizationSimpleWebhooks]docs/OrganizationSimpleWebhooks.md
 - [OrgsConvertMemberToOutsideCollaboratorRequest]docs/OrgsConvertMemberToOutsideCollaboratorRequest.md
 - [OrgsCreateCustomOrganizationRoleRequest]docs/OrgsCreateCustomOrganizationRoleRequest.md
 - [OrgsCreateInvitationRequest]docs/OrgsCreateInvitationRequest.md
 - [OrgsCreateOrUpdateCustomPropertiesRequest]docs/OrgsCreateOrUpdateCustomPropertiesRequest.md
 - [OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest]docs/OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.md
 - [OrgsCreateOrUpdateCustomPropertyRequest]docs/OrgsCreateOrUpdateCustomPropertyRequest.md
 - [OrgsCreateOrUpdateCustomPropertyRequestDefaultValue]docs/OrgsCreateOrUpdateCustomPropertyRequestDefaultValue.md
 - [OrgsCreateWebhookRequest]docs/OrgsCreateWebhookRequest.md
 - [OrgsCreateWebhookRequestConfig]docs/OrgsCreateWebhookRequestConfig.md
 - [OrgsEnableOrDisableSecurityProductOnAllOrgReposRequest]docs/OrgsEnableOrDisableSecurityProductOnAllOrgReposRequest.md
 - [OrgsListAppInstallations200Response]docs/OrgsListAppInstallations200Response.md
 - [OrgsListOrgRoles200Response]docs/OrgsListOrgRoles200Response.md
 - [OrgsPatchCustomOrganizationRoleRequest]docs/OrgsPatchCustomOrganizationRoleRequest.md
 - [OrgsRemoveOutsideCollaborator422Response]docs/OrgsRemoveOutsideCollaborator422Response.md
 - [OrgsReviewPatGrantRequestRequest]docs/OrgsReviewPatGrantRequestRequest.md
 - [OrgsReviewPatGrantRequestsInBulkRequest]docs/OrgsReviewPatGrantRequestsInBulkRequest.md
 - [OrgsSetMembershipForUserRequest]docs/OrgsSetMembershipForUserRequest.md
 - [OrgsUpdate422Response]docs/OrgsUpdate422Response.md
 - [OrgsUpdateMembershipForAuthenticatedUserRequest]docs/OrgsUpdateMembershipForAuthenticatedUserRequest.md
 - [OrgsUpdatePatAccessRequest]docs/OrgsUpdatePatAccessRequest.md
 - [OrgsUpdatePatAccessesRequest]docs/OrgsUpdatePatAccessesRequest.md
 - [OrgsUpdateRequest]docs/OrgsUpdateRequest.md
 - [OrgsUpdateWebhookRequest]docs/OrgsUpdateWebhookRequest.md
 - [OrgsUpdateWebhookRequestConfig]docs/OrgsUpdateWebhookRequestConfig.md
 - [Package]docs/Package.md
 - [PackageVersion]docs/PackageVersion.md
 - [PackageVersionMetadata]docs/PackageVersionMetadata.md
 - [PackagesBillingUsage]docs/PackagesBillingUsage.md
 - [Page]docs/Page.md
 - [PageBuild]docs/PageBuild.md
 - [PageBuildError]docs/PageBuildError.md
 - [PageBuildStatus]docs/PageBuildStatus.md
 - [PageDeployment]docs/PageDeployment.md
 - [PageDeploymentId]docs/PageDeploymentId.md
 - [PagesDeploymentStatus]docs/PagesDeploymentStatus.md
 - [PagesHealthCheck]docs/PagesHealthCheck.md
 - [PagesHealthCheckAltDomain]docs/PagesHealthCheckAltDomain.md
 - [PagesHealthCheckDomain]docs/PagesHealthCheckDomain.md
 - [PagesHttpsCertificate]docs/PagesHttpsCertificate.md
 - [PagesSourceHash]docs/PagesSourceHash.md
 - [ParticipationStats]docs/ParticipationStats.md
 - [PendingDeployment]docs/PendingDeployment.md
 - [PendingDeploymentEnvironment]docs/PendingDeploymentEnvironment.md
 - [PendingDeploymentReviewersInner]docs/PendingDeploymentReviewersInner.md
 - [PendingDeploymentReviewersInnerReviewer]docs/PendingDeploymentReviewersInnerReviewer.md
 - [PersonalAccessTokenRequest]docs/PersonalAccessTokenRequest.md
 - [PersonalAccessTokenRequestPermissionsAdded]docs/PersonalAccessTokenRequestPermissionsAdded.md
 - [PersonalAccessTokenRequestPermissionsResult]docs/PersonalAccessTokenRequestPermissionsResult.md
 - [PersonalAccessTokenRequestPermissionsUpgraded]docs/PersonalAccessTokenRequestPermissionsUpgraded.md
 - [PorterAuthor]docs/PorterAuthor.md
 - [PorterLargeFile]docs/PorterLargeFile.md
 - [PrivateUser]docs/PrivateUser.md
 - [PrivateVulnerabilityReportCreate]docs/PrivateVulnerabilityReportCreate.md
 - [Project]docs/Project.md
 - [ProjectCard]docs/ProjectCard.md
 - [ProjectCollaboratorPermission]docs/ProjectCollaboratorPermission.md
 - [ProjectColumn]docs/ProjectColumn.md
 - [ProjectsAddCollaboratorRequest]docs/ProjectsAddCollaboratorRequest.md
 - [ProjectsCreateCardRequest]docs/ProjectsCreateCardRequest.md
 - [ProjectsCreateCardRequestOneOf]docs/ProjectsCreateCardRequestOneOf.md
 - [ProjectsCreateCardRequestOneOf1]docs/ProjectsCreateCardRequestOneOf1.md
 - [ProjectsCreateForAuthenticatedUserRequest]docs/ProjectsCreateForAuthenticatedUserRequest.md
 - [ProjectsCreateForOrgRequest]docs/ProjectsCreateForOrgRequest.md
 - [ProjectsDeleteCard403Response]docs/ProjectsDeleteCard403Response.md
 - [ProjectsMoveCard403Response]docs/ProjectsMoveCard403Response.md
 - [ProjectsMoveCard403ResponseErrorsInner]docs/ProjectsMoveCard403ResponseErrorsInner.md
 - [ProjectsMoveCard503Response]docs/ProjectsMoveCard503Response.md
 - [ProjectsMoveCard503ResponseErrorsInner]docs/ProjectsMoveCard503ResponseErrorsInner.md
 - [ProjectsMoveCardRequest]docs/ProjectsMoveCardRequest.md
 - [ProjectsMoveColumnRequest]docs/ProjectsMoveColumnRequest.md
 - [ProjectsUpdateCardRequest]docs/ProjectsUpdateCardRequest.md
 - [ProjectsUpdateColumnRequest]docs/ProjectsUpdateColumnRequest.md
 - [ProjectsUpdateRequest]docs/ProjectsUpdateRequest.md
 - [ProjectsV2]docs/ProjectsV2.md
 - [ProjectsV2Item]docs/ProjectsV2Item.md
 - [ProjectsV2ItemContentType]docs/ProjectsV2ItemContentType.md
 - [ProtectedBranch]docs/ProtectedBranch.md
 - [ProtectedBranchAdminEnforced]docs/ProtectedBranchAdminEnforced.md
 - [ProtectedBranchAllowForkSyncing]docs/ProtectedBranchAllowForkSyncing.md
 - [ProtectedBranchEnforceAdmins]docs/ProtectedBranchEnforceAdmins.md
 - [ProtectedBranchLockBranch]docs/ProtectedBranchLockBranch.md
 - [ProtectedBranchPullRequestReview]docs/ProtectedBranchPullRequestReview.md
 - [ProtectedBranchPullRequestReviewBypassPullRequestAllowances]docs/ProtectedBranchPullRequestReviewBypassPullRequestAllowances.md
 - [ProtectedBranchPullRequestReviewDismissalRestrictions]docs/ProtectedBranchPullRequestReviewDismissalRestrictions.md
 - [ProtectedBranchRequiredConversationResolution]docs/ProtectedBranchRequiredConversationResolution.md
 - [ProtectedBranchRequiredLinearHistory]docs/ProtectedBranchRequiredLinearHistory.md
 - [ProtectedBranchRequiredPullRequestReviews]docs/ProtectedBranchRequiredPullRequestReviews.md
 - [ProtectedBranchRequiredPullRequestReviewsBypassPullRequestAllowances]docs/ProtectedBranchRequiredPullRequestReviewsBypassPullRequestAllowances.md
 - [ProtectedBranchRequiredPullRequestReviewsDismissalRestrictions]docs/ProtectedBranchRequiredPullRequestReviewsDismissalRestrictions.md
 - [ProtectedBranchRequiredStatusCheck]docs/ProtectedBranchRequiredStatusCheck.md
 - [ProtectedBranchRequiredStatusCheckChecksInner]docs/ProtectedBranchRequiredStatusCheckChecksInner.md
 - [PublicUser]docs/PublicUser.md
 - [PublicUserPlan]docs/PublicUserPlan.md
 - [PullRequest]docs/PullRequest.md
 - [PullRequest1]docs/PullRequest1.md
 - [PullRequest10]docs/PullRequest10.md
 - [PullRequest10Head]docs/PullRequest10Head.md
 - [PullRequest11]docs/PullRequest11.md
 - [PullRequest11Base]docs/PullRequest11Base.md
 - [PullRequest12]docs/PullRequest12.md
 - [PullRequest12Head]docs/PullRequest12Head.md
 - [PullRequest13]docs/PullRequest13.md
 - [PullRequest1Base]docs/PullRequest1Base.md
 - [PullRequest2]docs/PullRequest2.md
 - [PullRequest3]docs/PullRequest3.md
 - [PullRequest4]docs/PullRequest4.md
 - [PullRequest5]docs/PullRequest5.md
 - [PullRequest6]docs/PullRequest6.md
 - [PullRequest6Base]docs/PullRequest6Base.md
 - [PullRequest6RequestedReviewersInner]docs/PullRequest6RequestedReviewersInner.md
 - [PullRequest7]docs/PullRequest7.md
 - [PullRequest8]docs/PullRequest8.md
 - [PullRequest9]docs/PullRequest9.md
 - [PullRequestAutoMerge]docs/PullRequestAutoMerge.md
 - [PullRequestAutoMerge1]docs/PullRequestAutoMerge1.md
 - [PullRequestBase]docs/PullRequestBase.md
 - [PullRequestBaseRepo]docs/PullRequestBaseRepo.md
 - [PullRequestHead]docs/PullRequestHead.md
 - [PullRequestHeadRepo]docs/PullRequestHeadRepo.md
 - [PullRequestHeadRepoLicense]docs/PullRequestHeadRepoLicense.md
 - [PullRequestHeadRepoOwner]docs/PullRequestHeadRepoOwner.md
 - [PullRequestLabelsInner]docs/PullRequestLabelsInner.md
 - [PullRequestMergeResult]docs/PullRequestMergeResult.md
 - [PullRequestMinimal]docs/PullRequestMinimal.md
 - [PullRequestMinimalHead]docs/PullRequestMinimalHead.md
 - [PullRequestMinimalHeadRepo]docs/PullRequestMinimalHeadRepo.md
 - [PullRequestRequestedReviewersInner]docs/PullRequestRequestedReviewersInner.md
 - [PullRequestReview]docs/PullRequestReview.md
 - [PullRequestReviewComment]docs/PullRequestReviewComment.md
 - [PullRequestReviewComment1]docs/PullRequestReviewComment1.md
 - [PullRequestReviewComment2]docs/PullRequestReviewComment2.md
 - [PullRequestReviewCommentLinks]docs/PullRequestReviewCommentLinks.md
 - [PullRequestReviewCommentLinksHtml]docs/PullRequestReviewCommentLinksHtml.md
 - [PullRequestReviewCommentLinksPullRequest]docs/PullRequestReviewCommentLinksPullRequest.md
 - [PullRequestReviewCommentLinksSelf]docs/PullRequestReviewCommentLinksSelf.md
 - [PullRequestReviewRequest]docs/PullRequestReviewRequest.md
 - [PullRequestSimple]docs/PullRequestSimple.md
 - [PullRequestSimpleHead]docs/PullRequestSimpleHead.md
 - [PullRequestSimpleLabelsInner]docs/PullRequestSimpleLabelsInner.md
 - [PullRequestSimpleLinks]docs/PullRequestSimpleLinks.md
 - [PullRequestWebhook]docs/PullRequestWebhook.md
 - [PullsCreateReplyForReviewCommentRequest]docs/PullsCreateReplyForReviewCommentRequest.md
 - [PullsCreateRequest]docs/PullsCreateRequest.md
 - [PullsCreateReviewCommentRequest]docs/PullsCreateReviewCommentRequest.md
 - [PullsCreateReviewRequest]docs/PullsCreateReviewRequest.md
 - [PullsCreateReviewRequestCommentsInner]docs/PullsCreateReviewRequestCommentsInner.md
 - [PullsDismissReviewRequest]docs/PullsDismissReviewRequest.md
 - [PullsMergeRequest]docs/PullsMergeRequest.md
 - [PullsRemoveRequestedReviewersRequest]docs/PullsRemoveRequestedReviewersRequest.md
 - [PullsRequestReviewersRequest]docs/PullsRequestReviewersRequest.md
 - [PullsSubmitReviewRequest]docs/PullsSubmitReviewRequest.md
 - [PullsUpdateBranchRequest]docs/PullsUpdateBranchRequest.md
 - [PullsUpdateRequest]docs/PullsUpdateRequest.md
 - [PullsUpdateReviewCommentRequest]docs/PullsUpdateReviewCommentRequest.md
 - [PullsUpdateReviewRequest]docs/PullsUpdateReviewRequest.md
 - [RateLimit]docs/RateLimit.md
 - [RateLimitOverview]docs/RateLimitOverview.md
 - [RateLimitOverviewResources]docs/RateLimitOverviewResources.md
 - [Reaction]docs/Reaction.md
 - [ReactionRollup]docs/ReactionRollup.md
 - [Reactions]docs/Reactions.md
 - [ReactionsCreateForCommitCommentRequest]docs/ReactionsCreateForCommitCommentRequest.md
 - [ReactionsCreateForIssueCommentRequest]docs/ReactionsCreateForIssueCommentRequest.md
 - [ReactionsCreateForIssueRequest]docs/ReactionsCreateForIssueRequest.md
 - [ReactionsCreateForPullRequestReviewCommentRequest]docs/ReactionsCreateForPullRequestReviewCommentRequest.md
 - [ReactionsCreateForReleaseRequest]docs/ReactionsCreateForReleaseRequest.md
 - [ReactionsCreateForTeamDiscussionCommentInOrgRequest]docs/ReactionsCreateForTeamDiscussionCommentInOrgRequest.md
 - [ReactionsCreateForTeamDiscussionInOrgRequest]docs/ReactionsCreateForTeamDiscussionInOrgRequest.md
 - [ReferencedWorkflow]docs/ReferencedWorkflow.md
 - [ReferrerTraffic]docs/ReferrerTraffic.md
 - [Release]docs/Release.md
 - [ReleaseAsset]docs/ReleaseAsset.md
 - [ReleaseAsset1]docs/ReleaseAsset1.md
 - [ReleaseNotesContent]docs/ReleaseNotesContent.md
 - [RemovedFromProjectIssueEvent]docs/RemovedFromProjectIssueEvent.md
 - [RenamedIssueEvent]docs/RenamedIssueEvent.md
 - [RenamedIssueEventRename]docs/RenamedIssueEventRename.md
 - [RepoCodespacesSecret]docs/RepoCodespacesSecret.md
 - [RepoRef]docs/RepoRef.md
 - [RepoSearchResultItem]docs/RepoSearchResultItem.md
 - [ReposAddCollaboratorRequest]docs/ReposAddCollaboratorRequest.md
 - [ReposAddTeamAccessRestrictionsRequest]docs/ReposAddTeamAccessRestrictionsRequest.md
 - [ReposAddTeamAccessRestrictionsRequestOneOf]docs/ReposAddTeamAccessRestrictionsRequestOneOf.md
 - [ReposCheckPrivateVulnerabilityReporting200Response]docs/ReposCheckPrivateVulnerabilityReporting200Response.md
 - [ReposCreateAutolinkRequest]docs/ReposCreateAutolinkRequest.md
 - [ReposCreateCommitCommentRequest]docs/ReposCreateCommitCommentRequest.md
 - [ReposCreateCommitStatusRequest]docs/ReposCreateCommitStatusRequest.md
 - [ReposCreateDeployKeyRequest]docs/ReposCreateDeployKeyRequest.md
 - [ReposCreateDeploymentProtectionRuleRequest]docs/ReposCreateDeploymentProtectionRuleRequest.md
 - [ReposCreateDeploymentRequest]docs/ReposCreateDeploymentRequest.md
 - [ReposCreateDeploymentRequestPayload]docs/ReposCreateDeploymentRequestPayload.md
 - [ReposCreateDeploymentStatusRequest]docs/ReposCreateDeploymentStatusRequest.md
 - [ReposCreateDispatchEventRequest]docs/ReposCreateDispatchEventRequest.md
 - [ReposCreateForAuthenticatedUserRequest]docs/ReposCreateForAuthenticatedUserRequest.md
 - [ReposCreateForkRequest]docs/ReposCreateForkRequest.md
 - [ReposCreateInOrgRequest]docs/ReposCreateInOrgRequest.md
 - [ReposCreateOrUpdateCustomPropertiesValuesRequest]docs/ReposCreateOrUpdateCustomPropertiesValuesRequest.md
 - [ReposCreateOrUpdateEnvironmentRequest]docs/ReposCreateOrUpdateEnvironmentRequest.md
 - [ReposCreateOrUpdateEnvironmentRequestReviewersInner]docs/ReposCreateOrUpdateEnvironmentRequestReviewersInner.md
 - [ReposCreateOrUpdateFileContentsRequest]docs/ReposCreateOrUpdateFileContentsRequest.md
 - [ReposCreateOrUpdateFileContentsRequestAuthor]docs/ReposCreateOrUpdateFileContentsRequestAuthor.md
 - [ReposCreateOrUpdateFileContentsRequestCommitter]docs/ReposCreateOrUpdateFileContentsRequestCommitter.md
 - [ReposCreateOrgRulesetRequest]docs/ReposCreateOrgRulesetRequest.md
 - [ReposCreatePagesDeploymentRequest]docs/ReposCreatePagesDeploymentRequest.md
 - [ReposCreatePagesSiteRequest]docs/ReposCreatePagesSiteRequest.md
 - [ReposCreatePagesSiteRequestSource]docs/ReposCreatePagesSiteRequestSource.md
 - [ReposCreateReleaseRequest]docs/ReposCreateReleaseRequest.md
 - [ReposCreateRepoRulesetRequest]docs/ReposCreateRepoRulesetRequest.md
 - [ReposCreateTagProtectionRequest]docs/ReposCreateTagProtectionRequest.md
 - [ReposCreateUsingTemplateRequest]docs/ReposCreateUsingTemplateRequest.md
 - [ReposCreateWebhookRequest]docs/ReposCreateWebhookRequest.md
 - [ReposCreateWebhookRequestConfig]docs/ReposCreateWebhookRequestConfig.md
 - [ReposDeleteFileRequest]docs/ReposDeleteFileRequest.md
 - [ReposDeleteFileRequestAuthor]docs/ReposDeleteFileRequestAuthor.md
 - [ReposDeleteFileRequestCommitter]docs/ReposDeleteFileRequestCommitter.md
 - [ReposGenerateReleaseNotesRequest]docs/ReposGenerateReleaseNotesRequest.md
 - [ReposGetAllDeploymentProtectionRules200Response]docs/ReposGetAllDeploymentProtectionRules200Response.md
 - [ReposGetAllEnvironments200Response]docs/ReposGetAllEnvironments200Response.md
 - [ReposGetContent200Response]docs/ReposGetContent200Response.md
 - [ReposListCustomDeploymentRuleIntegrations200Response]docs/ReposListCustomDeploymentRuleIntegrations200Response.md
 - [ReposListDeploymentBranchPolicies200Response]docs/ReposListDeploymentBranchPolicies200Response.md
 - [ReposMergeRequest]docs/ReposMergeRequest.md
 - [ReposMergeUpstreamRequest]docs/ReposMergeUpstreamRequest.md
 - [ReposRenameBranchRequest]docs/ReposRenameBranchRequest.md
 - [ReposReplaceAllTopicsRequest]docs/ReposReplaceAllTopicsRequest.md
 - [ReposSetAppAccessRestrictionsRequest]docs/ReposSetAppAccessRestrictionsRequest.md
 - [ReposSetAppAccessRestrictionsRequestOneOf]docs/ReposSetAppAccessRestrictionsRequestOneOf.md
 - [ReposSetStatusCheckContextsRequest]docs/ReposSetStatusCheckContextsRequest.md
 - [ReposSetStatusCheckContextsRequestOneOf]docs/ReposSetStatusCheckContextsRequestOneOf.md
 - [ReposSetTeamAccessRestrictionsRequest]docs/ReposSetTeamAccessRestrictionsRequest.md
 - [ReposSetTeamAccessRestrictionsRequestOneOf]docs/ReposSetTeamAccessRestrictionsRequestOneOf.md
 - [ReposSetUserAccessRestrictionsRequest]docs/ReposSetUserAccessRestrictionsRequest.md
 - [ReposSetUserAccessRestrictionsRequestOneOf]docs/ReposSetUserAccessRestrictionsRequestOneOf.md
 - [ReposTransferRequest]docs/ReposTransferRequest.md
 - [ReposUpdateBranchProtectionRequest]docs/ReposUpdateBranchProtectionRequest.md
 - [ReposUpdateBranchProtectionRequestRequiredPullRequestReviews]docs/ReposUpdateBranchProtectionRequestRequiredPullRequestReviews.md
 - [ReposUpdateBranchProtectionRequestRequiredPullRequestReviewsBypassPullRequestAllowances]docs/ReposUpdateBranchProtectionRequestRequiredPullRequestReviewsBypassPullRequestAllowances.md
 - [ReposUpdateBranchProtectionRequestRequiredPullRequestReviewsDismissalRestrictions]docs/ReposUpdateBranchProtectionRequestRequiredPullRequestReviewsDismissalRestrictions.md
 - [ReposUpdateBranchProtectionRequestRequiredStatusChecks]docs/ReposUpdateBranchProtectionRequestRequiredStatusChecks.md
 - [ReposUpdateBranchProtectionRequestRequiredStatusChecksChecksInner]docs/ReposUpdateBranchProtectionRequestRequiredStatusChecksChecksInner.md
 - [ReposUpdateBranchProtectionRequestRestrictions]docs/ReposUpdateBranchProtectionRequestRestrictions.md
 - [ReposUpdateCommitCommentRequest]docs/ReposUpdateCommitCommentRequest.md
 - [ReposUpdateInformationAboutPagesSiteRequest]docs/ReposUpdateInformationAboutPagesSiteRequest.md
 - [ReposUpdateInformationAboutPagesSiteRequestSource]docs/ReposUpdateInformationAboutPagesSiteRequestSource.md
 - [ReposUpdateInformationAboutPagesSiteRequestSourceAnyOf]docs/ReposUpdateInformationAboutPagesSiteRequestSourceAnyOf.md
 - [ReposUpdateInvitationRequest]docs/ReposUpdateInvitationRequest.md
 - [ReposUpdateOrgRulesetRequest]docs/ReposUpdateOrgRulesetRequest.md
 - [ReposUpdatePullRequestReviewProtectionRequest]docs/ReposUpdatePullRequestReviewProtectionRequest.md
 - [ReposUpdateReleaseAssetRequest]docs/ReposUpdateReleaseAssetRequest.md
 - [ReposUpdateReleaseRequest]docs/ReposUpdateReleaseRequest.md
 - [ReposUpdateRepoRulesetRequest]docs/ReposUpdateRepoRulesetRequest.md
 - [ReposUpdateRequest]docs/ReposUpdateRequest.md
 - [ReposUpdateRequestSecurityAndAnalysis]docs/ReposUpdateRequestSecurityAndAnalysis.md
 - [ReposUpdateRequestSecurityAndAnalysisAdvancedSecurity]docs/ReposUpdateRequestSecurityAndAnalysisAdvancedSecurity.md
 - [ReposUpdateRequestSecurityAndAnalysisSecretScanning]docs/ReposUpdateRequestSecurityAndAnalysisSecretScanning.md
 - [ReposUpdateRequestSecurityAndAnalysisSecretScanningPushProtection]docs/ReposUpdateRequestSecurityAndAnalysisSecretScanningPushProtection.md
 - [ReposUpdateStatusCheckProtectionRequest]docs/ReposUpdateStatusCheckProtectionRequest.md
 - [ReposUpdateWebhookConfigForRepoRequest]docs/ReposUpdateWebhookConfigForRepoRequest.md
 - [ReposUpdateWebhookRequest]docs/ReposUpdateWebhookRequest.md
 - [Repository]docs/Repository.md
 - [Repository1]docs/Repository1.md
 - [Repository10]docs/Repository10.md
 - [Repository11]docs/Repository11.md
 - [Repository12]docs/Repository12.md
 - [Repository13]docs/Repository13.md
 - [Repository14]docs/Repository14.md
 - [Repository2]docs/Repository2.md
 - [Repository3]docs/Repository3.md
 - [Repository4]docs/Repository4.md
 - [Repository5]docs/Repository5.md
 - [Repository6]docs/Repository6.md
 - [Repository7]docs/Repository7.md
 - [Repository8]docs/Repository8.md
 - [Repository9]docs/Repository9.md
 - [RepositoryAdvisory]docs/RepositoryAdvisory.md
 - [RepositoryAdvisoryCreate]docs/RepositoryAdvisoryCreate.md
 - [RepositoryAdvisoryCreateCreditsInner]docs/RepositoryAdvisoryCreateCreditsInner.md
 - [RepositoryAdvisoryCreateVulnerabilitiesInner]docs/RepositoryAdvisoryCreateVulnerabilitiesInner.md
 - [RepositoryAdvisoryCreateVulnerabilitiesInnerPackage]docs/RepositoryAdvisoryCreateVulnerabilitiesInnerPackage.md
 - [RepositoryAdvisoryCredit]docs/RepositoryAdvisoryCredit.md
 - [RepositoryAdvisoryCreditsInner]docs/RepositoryAdvisoryCreditsInner.md
 - [RepositoryAdvisorySubmission]docs/RepositoryAdvisorySubmission.md
 - [RepositoryAdvisoryUpdate]docs/RepositoryAdvisoryUpdate.md
 - [RepositoryAdvisoryVulnerability]docs/RepositoryAdvisoryVulnerability.md
 - [RepositoryCollaboratorPermission]docs/RepositoryCollaboratorPermission.md
 - [RepositoryCreatedAt]docs/RepositoryCreatedAt.md
 - [RepositoryIdAndRefName]docs/RepositoryIdAndRefName.md
 - [RepositoryInvitation]docs/RepositoryInvitation.md
 - [RepositoryLite]docs/RepositoryLite.md
 - [RepositoryLite1]docs/RepositoryLite1.md
 - [RepositoryNameAndRefName]docs/RepositoryNameAndRefName.md
 - [RepositoryPermissions]docs/RepositoryPermissions.md
 - [RepositoryPropertyAndRefName]docs/RepositoryPropertyAndRefName.md
 - [RepositoryPushedAt]docs/RepositoryPushedAt.md
 - [RepositoryRule]docs/RepositoryRule.md
 - [RepositoryRuleBranchNamePattern]docs/RepositoryRuleBranchNamePattern.md
 - [RepositoryRuleCommitAuthorEmailPattern]docs/RepositoryRuleCommitAuthorEmailPattern.md
 - [RepositoryRuleCommitMessagePattern]docs/RepositoryRuleCommitMessagePattern.md
 - [RepositoryRuleCommitMessagePatternParameters]docs/RepositoryRuleCommitMessagePatternParameters.md
 - [RepositoryRuleCommitterEmailPattern]docs/RepositoryRuleCommitterEmailPattern.md
 - [RepositoryRuleCreation]docs/RepositoryRuleCreation.md
 - [RepositoryRuleDeletion]docs/RepositoryRuleDeletion.md
 - [RepositoryRuleDetailed]docs/RepositoryRuleDetailed.md
 - [RepositoryRuleDetailedOneOf]docs/RepositoryRuleDetailedOneOf.md
 - [RepositoryRuleDetailedOneOf1]docs/RepositoryRuleDetailedOneOf1.md
 - [RepositoryRuleDetailedOneOf10]docs/RepositoryRuleDetailedOneOf10.md
 - [RepositoryRuleDetailedOneOf11]docs/RepositoryRuleDetailedOneOf11.md
 - [RepositoryRuleDetailedOneOf12]docs/RepositoryRuleDetailedOneOf12.md
 - [RepositoryRuleDetailedOneOf13]docs/RepositoryRuleDetailedOneOf13.md
 - [RepositoryRuleDetailedOneOf14]docs/RepositoryRuleDetailedOneOf14.md
 - [RepositoryRuleDetailedOneOf2]docs/RepositoryRuleDetailedOneOf2.md
 - [RepositoryRuleDetailedOneOf3]docs/RepositoryRuleDetailedOneOf3.md
 - [RepositoryRuleDetailedOneOf4]docs/RepositoryRuleDetailedOneOf4.md
 - [RepositoryRuleDetailedOneOf5]docs/RepositoryRuleDetailedOneOf5.md
 - [RepositoryRuleDetailedOneOf6]docs/RepositoryRuleDetailedOneOf6.md
 - [RepositoryRuleDetailedOneOf7]docs/RepositoryRuleDetailedOneOf7.md
 - [RepositoryRuleDetailedOneOf8]docs/RepositoryRuleDetailedOneOf8.md
 - [RepositoryRuleDetailedOneOf9]docs/RepositoryRuleDetailedOneOf9.md
 - [RepositoryRuleEnforcement]docs/RepositoryRuleEnforcement.md
 - [RepositoryRuleNonFastForward]docs/RepositoryRuleNonFastForward.md
 - [RepositoryRuleParamsCodeScanningTool]docs/RepositoryRuleParamsCodeScanningTool.md
 - [RepositoryRuleParamsRestrictedCommits]docs/RepositoryRuleParamsRestrictedCommits.md
 - [RepositoryRuleParamsStatusCheckConfiguration]docs/RepositoryRuleParamsStatusCheckConfiguration.md
 - [RepositoryRuleParamsWorkflowFileReference]docs/RepositoryRuleParamsWorkflowFileReference.md
 - [RepositoryRulePullRequest]docs/RepositoryRulePullRequest.md
 - [RepositoryRulePullRequestParameters]docs/RepositoryRulePullRequestParameters.md
 - [RepositoryRuleRequiredDeployments]docs/RepositoryRuleRequiredDeployments.md
 - [RepositoryRuleRequiredDeploymentsParameters]docs/RepositoryRuleRequiredDeploymentsParameters.md
 - [RepositoryRuleRequiredLinearHistory]docs/RepositoryRuleRequiredLinearHistory.md
 - [RepositoryRuleRequiredSignatures]docs/RepositoryRuleRequiredSignatures.md
 - [RepositoryRuleRequiredStatusChecks]docs/RepositoryRuleRequiredStatusChecks.md
 - [RepositoryRuleRequiredStatusChecksParameters]docs/RepositoryRuleRequiredStatusChecksParameters.md
 - [RepositoryRuleRulesetInfo]docs/RepositoryRuleRulesetInfo.md
 - [RepositoryRuleTagNamePattern]docs/RepositoryRuleTagNamePattern.md
 - [RepositoryRuleUpdate]docs/RepositoryRuleUpdate.md
 - [RepositoryRuleUpdateParameters]docs/RepositoryRuleUpdateParameters.md
 - [RepositoryRuleWorkflows]docs/RepositoryRuleWorkflows.md
 - [RepositoryRuleWorkflowsParameters]docs/RepositoryRuleWorkflowsParameters.md
 - [RepositoryRuleset]docs/RepositoryRuleset.md
 - [RepositoryRulesetBypassActor]docs/RepositoryRulesetBypassActor.md
 - [RepositoryRulesetConditions]docs/RepositoryRulesetConditions.md
 - [RepositoryRulesetConditionsRefName]docs/RepositoryRulesetConditionsRefName.md
 - [RepositoryRulesetConditionsRepositoryIdTarget]docs/RepositoryRulesetConditionsRepositoryIdTarget.md
 - [RepositoryRulesetConditionsRepositoryIdTargetRepositoryId]docs/RepositoryRulesetConditionsRepositoryIdTargetRepositoryId.md
 - [RepositoryRulesetConditionsRepositoryNameTarget]docs/RepositoryRulesetConditionsRepositoryNameTarget.md
 - [RepositoryRulesetConditionsRepositoryNameTargetRepositoryName]docs/RepositoryRulesetConditionsRepositoryNameTargetRepositoryName.md
 - [RepositoryRulesetConditionsRepositoryPropertySpec]docs/RepositoryRulesetConditionsRepositoryPropertySpec.md
 - [RepositoryRulesetConditionsRepositoryPropertyTarget]docs/RepositoryRulesetConditionsRepositoryPropertyTarget.md
 - [RepositoryRulesetConditionsRepositoryPropertyTargetRepositoryProperty]docs/RepositoryRulesetConditionsRepositoryPropertyTargetRepositoryProperty.md
 - [RepositoryRulesetLinks]docs/RepositoryRulesetLinks.md
 - [RepositoryRulesetLinksHtml]docs/RepositoryRulesetLinksHtml.md
 - [RepositoryRulesetLinksSelf]docs/RepositoryRulesetLinksSelf.md
 - [RepositorySubscription]docs/RepositorySubscription.md
 - [RepositoryVulnerabilityAlertAlert]docs/RepositoryVulnerabilityAlertAlert.md
 - [RepositoryVulnerabilityAlertAlert1]docs/RepositoryVulnerabilityAlertAlert1.md
 - [RepositoryWebhooks]docs/RepositoryWebhooks.md
 - [RepositoryWebhooksTemplateRepository]docs/RepositoryWebhooksTemplateRepository.md
 - [ReviewComment]docs/ReviewComment.md
 - [ReviewCommentLinks]docs/ReviewCommentLinks.md
 - [ReviewCustomGatesCommentRequired]docs/ReviewCustomGatesCommentRequired.md
 - [ReviewCustomGatesStateRequired]docs/ReviewCustomGatesStateRequired.md
 - [ReviewDismissedIssueEvent]docs/ReviewDismissedIssueEvent.md
 - [ReviewDismissedIssueEventDismissedReview]docs/ReviewDismissedIssueEventDismissedReview.md
 - [ReviewRequestRemovedIssueEvent]docs/ReviewRequestRemovedIssueEvent.md
 - [ReviewRequestedIssueEvent]docs/ReviewRequestedIssueEvent.md
 - [Root]docs/Root.md
 - [RuleSuite]docs/RuleSuite.md
 - [RuleSuiteRuleEvaluationsInner]docs/RuleSuiteRuleEvaluationsInner.md
 - [RuleSuiteRuleEvaluationsInnerRuleSource]docs/RuleSuiteRuleEvaluationsInnerRuleSource.md
 - [RuleSuitesInner]docs/RuleSuitesInner.md
 - [Runner]docs/Runner.md
 - [RunnerApplication]docs/RunnerApplication.md
 - [RunnerLabel]docs/RunnerLabel.md
 - [ScimError]docs/ScimError.md
 - [SearchCode200Response]docs/SearchCode200Response.md
 - [SearchCommits200Response]docs/SearchCommits200Response.md
 - [SearchIssuesAndPullRequests200Response]docs/SearchIssuesAndPullRequests200Response.md
 - [SearchLabels200Response]docs/SearchLabels200Response.md
 - [SearchRepos200Response]docs/SearchRepos200Response.md
 - [SearchResultTextMatchesInner]docs/SearchResultTextMatchesInner.md
 - [SearchResultTextMatchesInnerMatchesInner]docs/SearchResultTextMatchesInnerMatchesInner.md
 - [SearchTopics200Response]docs/SearchTopics200Response.md
 - [SearchUsers200Response]docs/SearchUsers200Response.md
 - [SecretScanningAlert]docs/SecretScanningAlert.md
 - [SecretScanningAlertResolution]docs/SecretScanningAlertResolution.md
 - [SecretScanningAlertResolutionWebhook]docs/SecretScanningAlertResolutionWebhook.md
 - [SecretScanningAlertState]docs/SecretScanningAlertState.md
 - [SecretScanningAlertWebhook]docs/SecretScanningAlertWebhook.md
 - [SecretScanningListAlertsForEnterprise503Response]docs/SecretScanningListAlertsForEnterprise503Response.md
 - [SecretScanningLocation]docs/SecretScanningLocation.md
 - [SecretScanningLocationCommit]docs/SecretScanningLocationCommit.md
 - [SecretScanningLocationDetails]docs/SecretScanningLocationDetails.md
 - [SecretScanningLocationDiscussionBody]docs/SecretScanningLocationDiscussionBody.md
 - [SecretScanningLocationDiscussionComment]docs/SecretScanningLocationDiscussionComment.md
 - [SecretScanningLocationDiscussionTitle]docs/SecretScanningLocationDiscussionTitle.md
 - [SecretScanningLocationIssueBody]docs/SecretScanningLocationIssueBody.md
 - [SecretScanningLocationIssueComment]docs/SecretScanningLocationIssueComment.md
 - [SecretScanningLocationIssueTitle]docs/SecretScanningLocationIssueTitle.md
 - [SecretScanningLocationPullRequestBody]docs/SecretScanningLocationPullRequestBody.md
 - [SecretScanningLocationPullRequestComment]docs/SecretScanningLocationPullRequestComment.md
 - [SecretScanningLocationPullRequestReview]docs/SecretScanningLocationPullRequestReview.md
 - [SecretScanningLocationPullRequestReviewComment]docs/SecretScanningLocationPullRequestReviewComment.md
 - [SecretScanningLocationPullRequestTitle]docs/SecretScanningLocationPullRequestTitle.md
 - [SecretScanningLocationWikiCommit]docs/SecretScanningLocationWikiCommit.md
 - [SecretScanningUpdateAlertRequest]docs/SecretScanningUpdateAlertRequest.md
 - [SecurityAdvisoriesListGlobalAdvisoriesAffectsParameter]docs/SecurityAdvisoriesListGlobalAdvisoriesAffectsParameter.md
 - [SecurityAdvisoriesListGlobalAdvisoriesCwesParameter]docs/SecurityAdvisoriesListGlobalAdvisoriesCwesParameter.md
 - [SecurityAdvisoryCreditTypes]docs/SecurityAdvisoryCreditTypes.md
 - [SecurityAdvisoryEcosystems]docs/SecurityAdvisoryEcosystems.md
 - [SecurityAndAnalysis]docs/SecurityAndAnalysis.md
 - [SecurityAndAnalysisAdvancedSecurity]docs/SecurityAndAnalysisAdvancedSecurity.md
 - [SecurityAndAnalysisDependabotSecurityUpdates]docs/SecurityAndAnalysisDependabotSecurityUpdates.md
 - [SelectedActions]docs/SelectedActions.md
 - [ShortBlob]docs/ShortBlob.md
 - [ShortBranch]docs/ShortBranch.md
 - [ShortBranchCommit]docs/ShortBranchCommit.md
 - [SimpleCheckSuite]docs/SimpleCheckSuite.md
 - [SimpleClassroom]docs/SimpleClassroom.md
 - [SimpleClassroomAssignment]docs/SimpleClassroomAssignment.md
 - [SimpleClassroomOrganization]docs/SimpleClassroomOrganization.md
 - [SimpleClassroomRepository]docs/SimpleClassroomRepository.md
 - [SimpleClassroomUser]docs/SimpleClassroomUser.md
 - [SimpleCommit]docs/SimpleCommit.md
 - [SimpleCommitStatus]docs/SimpleCommitStatus.md
 - [SimpleInstallation]docs/SimpleInstallation.md
 - [SimplePullRequest]docs/SimplePullRequest.md
 - [SimplePullRequest1]docs/SimplePullRequest1.md
 - [SimplePullRequest1Base]docs/SimplePullRequest1Base.md
 - [SimplePullRequest1Head]docs/SimplePullRequest1Head.md
 - [SimplePullRequest2]docs/SimplePullRequest2.md
 - [SimplePullRequest3]docs/SimplePullRequest3.md
 - [SimplePullRequest3Base]docs/SimplePullRequest3Base.md
 - [SimplePullRequest3Head]docs/SimplePullRequest3Head.md
 - [SimplePullRequest4]docs/SimplePullRequest4.md
 - [SimpleRepository]docs/SimpleRepository.md
 - [SimpleUser]docs/SimpleUser.md
 - [SimpleUserWebhooks]docs/SimpleUserWebhooks.md
 - [Snapshot]docs/Snapshot.md
 - [SnapshotDetector]docs/SnapshotDetector.md
 - [SnapshotJob]docs/SnapshotJob.md
 - [SocialAccount]docs/SocialAccount.md
 - [SponsorshipTier]docs/SponsorshipTier.md
 - [SshSigningKey]docs/SshSigningKey.md
 - [Stargazer]docs/Stargazer.md
 - [StarredRepository]docs/StarredRepository.md
 - [StateChangeIssueEvent]docs/StateChangeIssueEvent.md
 - [Status]docs/Status.md
 - [StatusCheckPolicy]docs/StatusCheckPolicy.md
 - [StatusCheckPolicyChecksInner]docs/StatusCheckPolicyChecksInner.md
 - [Tag]docs/Tag.md
 - [TagProtection]docs/TagProtection.md
 - [Team]docs/Team.md
 - [Team1]docs/Team1.md
 - [TeamDiscussion]docs/TeamDiscussion.md
 - [TeamDiscussionComment]docs/TeamDiscussionComment.md
 - [TeamFull]docs/TeamFull.md
 - [TeamMembership]docs/TeamMembership.md
 - [TeamOrganization]docs/TeamOrganization.md
 - [TeamParent]docs/TeamParent.md
 - [TeamPermissions]docs/TeamPermissions.md
 - [TeamProject]docs/TeamProject.md
 - [TeamProjectPermissions]docs/TeamProjectPermissions.md
 - [TeamRepository]docs/TeamRepository.md
 - [TeamSimple]docs/TeamSimple.md
 - [TeamsAddOrUpdateMembershipForUserInOrgRequest]docs/TeamsAddOrUpdateMembershipForUserInOrgRequest.md
 - [TeamsAddOrUpdateProjectPermissionsInOrgRequest]docs/TeamsAddOrUpdateProjectPermissionsInOrgRequest.md
 - [TeamsAddOrUpdateProjectPermissionsLegacyRequest]docs/TeamsAddOrUpdateProjectPermissionsLegacyRequest.md
 - [TeamsAddOrUpdateRepoPermissionsInOrgRequest]docs/TeamsAddOrUpdateRepoPermissionsInOrgRequest.md
 - [TeamsAddOrUpdateRepoPermissionsLegacyRequest]docs/TeamsAddOrUpdateRepoPermissionsLegacyRequest.md
 - [TeamsCreateDiscussionCommentInOrgRequest]docs/TeamsCreateDiscussionCommentInOrgRequest.md
 - [TeamsCreateDiscussionInOrgRequest]docs/TeamsCreateDiscussionInOrgRequest.md
 - [TeamsCreateRequest]docs/TeamsCreateRequest.md
 - [TeamsUpdateDiscussionInOrgRequest]docs/TeamsUpdateDiscussionInOrgRequest.md
 - [TeamsUpdateInOrgRequest]docs/TeamsUpdateInOrgRequest.md
 - [TeamsUpdateLegacyRequest]docs/TeamsUpdateLegacyRequest.md
 - [Thread]docs/Thread.md
 - [ThreadSubject]docs/ThreadSubject.md
 - [ThreadSubscription]docs/ThreadSubscription.md
 - [TimelineAssignedIssueEvent]docs/TimelineAssignedIssueEvent.md
 - [TimelineCommentEvent]docs/TimelineCommentEvent.md
 - [TimelineCommitCommentedEvent]docs/TimelineCommitCommentedEvent.md
 - [TimelineCommittedEvent]docs/TimelineCommittedEvent.md
 - [TimelineCrossReferencedEvent]docs/TimelineCrossReferencedEvent.md
 - [TimelineCrossReferencedEventSource]docs/TimelineCrossReferencedEventSource.md
 - [TimelineIssueEvents]docs/TimelineIssueEvents.md
 - [TimelineLineCommentedEvent]docs/TimelineLineCommentedEvent.md
 - [TimelineReviewedEvent]docs/TimelineReviewedEvent.md
 - [TimelineReviewedEventLinks]docs/TimelineReviewedEventLinks.md
 - [TimelineReviewedEventLinksHtml]docs/TimelineReviewedEventLinksHtml.md
 - [TimelineUnassignedIssueEvent]docs/TimelineUnassignedIssueEvent.md
 - [Topic]docs/Topic.md
 - [TopicSearchResultItem]docs/TopicSearchResultItem.md
 - [TopicSearchResultItemRelatedInner]docs/TopicSearchResultItemRelatedInner.md
 - [TopicSearchResultItemRelatedInnerTopicRelation]docs/TopicSearchResultItemRelatedInnerTopicRelation.md
 - [Traffic]docs/Traffic.md
 - [UnassignedIssueEvent]docs/UnassignedIssueEvent.md
 - [UnlabeledIssueEvent]docs/UnlabeledIssueEvent.md
 - [User]docs/User.md
 - [User1]docs/User1.md
 - [User2]docs/User2.md
 - [User3]docs/User3.md
 - [UserMarketplacePurchase]docs/UserMarketplacePurchase.md
 - [UserSearchResultItem]docs/UserSearchResultItem.md
 - [UsersAddEmailForAuthenticatedUserRequest]docs/UsersAddEmailForAuthenticatedUserRequest.md
 - [UsersAddEmailForAuthenticatedUserRequestOneOf]docs/UsersAddEmailForAuthenticatedUserRequestOneOf.md
 - [UsersAddSocialAccountForAuthenticatedUserRequest]docs/UsersAddSocialAccountForAuthenticatedUserRequest.md
 - [UsersCreateGpgKeyForAuthenticatedUserRequest]docs/UsersCreateGpgKeyForAuthenticatedUserRequest.md
 - [UsersCreatePublicSshKeyForAuthenticatedUserRequest]docs/UsersCreatePublicSshKeyForAuthenticatedUserRequest.md
 - [UsersCreateSshSigningKeyForAuthenticatedUserRequest]docs/UsersCreateSshSigningKeyForAuthenticatedUserRequest.md
 - [UsersDeleteEmailForAuthenticatedUserRequest]docs/UsersDeleteEmailForAuthenticatedUserRequest.md
 - [UsersDeleteEmailForAuthenticatedUserRequestOneOf]docs/UsersDeleteEmailForAuthenticatedUserRequestOneOf.md
 - [UsersDeleteSocialAccountForAuthenticatedUserRequest]docs/UsersDeleteSocialAccountForAuthenticatedUserRequest.md
 - [UsersGetAuthenticated200Response]docs/UsersGetAuthenticated200Response.md
 - [UsersSetPrimaryEmailVisibilityForAuthenticatedUserRequest]docs/UsersSetPrimaryEmailVisibilityForAuthenticatedUserRequest.md
 - [UsersUpdateAuthenticatedRequest]docs/UsersUpdateAuthenticatedRequest.md
 - [ValidationError]docs/ValidationError.md
 - [ValidationErrorErrorsInner]docs/ValidationErrorErrorsInner.md
 - [ValidationErrorErrorsInnerValue]docs/ValidationErrorErrorsInnerValue.md
 - [ValidationErrorSimple]docs/ValidationErrorSimple.md
 - [Verification]docs/Verification.md
 - [ViewTraffic]docs/ViewTraffic.md
 - [Vulnerability]docs/Vulnerability.md
 - [VulnerabilityPackage]docs/VulnerabilityPackage.md
 - [Webhook]docs/Webhook.md
 - [WebhookBranchProtectionConfigurationDisabled]docs/WebhookBranchProtectionConfigurationDisabled.md
 - [WebhookBranchProtectionConfigurationEnabled]docs/WebhookBranchProtectionConfigurationEnabled.md
 - [WebhookBranchProtectionRuleCreated]docs/WebhookBranchProtectionRuleCreated.md
 - [WebhookBranchProtectionRuleDeleted]docs/WebhookBranchProtectionRuleDeleted.md
 - [WebhookBranchProtectionRuleEdited]docs/WebhookBranchProtectionRuleEdited.md
 - [WebhookBranchProtectionRuleEditedChanges]docs/WebhookBranchProtectionRuleEditedChanges.md
 - [WebhookBranchProtectionRuleEditedChangesAdminEnforced]docs/WebhookBranchProtectionRuleEditedChangesAdminEnforced.md
 - [WebhookBranchProtectionRuleEditedChangesAuthorizedActorNames]docs/WebhookBranchProtectionRuleEditedChangesAuthorizedActorNames.md
 - [WebhookBranchProtectionRuleEditedChangesLinearHistoryRequirementEnforcementLevel]docs/WebhookBranchProtectionRuleEditedChangesLinearHistoryRequirementEnforcementLevel.md
 - [WebhookCheckRunCompleted]docs/WebhookCheckRunCompleted.md
 - [WebhookCheckRunCompletedFormEncoded]docs/WebhookCheckRunCompletedFormEncoded.md
 - [WebhookCheckRunCreated]docs/WebhookCheckRunCreated.md
 - [WebhookCheckRunCreatedFormEncoded]docs/WebhookCheckRunCreatedFormEncoded.md
 - [WebhookCheckRunRequestedAction]docs/WebhookCheckRunRequestedAction.md
 - [WebhookCheckRunRequestedActionFormEncoded]docs/WebhookCheckRunRequestedActionFormEncoded.md
 - [WebhookCheckRunRequestedActionRequestedAction]docs/WebhookCheckRunRequestedActionRequestedAction.md
 - [WebhookCheckRunRerequested]docs/WebhookCheckRunRerequested.md
 - [WebhookCheckRunRerequestedFormEncoded]docs/WebhookCheckRunRerequestedFormEncoded.md
 - [WebhookCheckSuiteCompleted]docs/WebhookCheckSuiteCompleted.md
 - [WebhookCheckSuiteCompletedCheckSuite]docs/WebhookCheckSuiteCompletedCheckSuite.md
 - [WebhookCheckSuiteRequested]docs/WebhookCheckSuiteRequested.md
 - [WebhookCheckSuiteRequestedCheckSuite]docs/WebhookCheckSuiteRequestedCheckSuite.md
 - [WebhookCheckSuiteRerequested]docs/WebhookCheckSuiteRerequested.md
 - [WebhookCheckSuiteRerequestedCheckSuite]docs/WebhookCheckSuiteRerequestedCheckSuite.md
 - [WebhookCodeScanningAlertAppearedInBranch]docs/WebhookCodeScanningAlertAppearedInBranch.md
 - [WebhookCodeScanningAlertAppearedInBranchAlert]docs/WebhookCodeScanningAlertAppearedInBranchAlert.md
 - [WebhookCodeScanningAlertAppearedInBranchAlertRule]docs/WebhookCodeScanningAlertAppearedInBranchAlertRule.md
 - [WebhookCodeScanningAlertAppearedInBranchAlertTool]docs/WebhookCodeScanningAlertAppearedInBranchAlertTool.md
 - [WebhookCodeScanningAlertClosedByUser]docs/WebhookCodeScanningAlertClosedByUser.md
 - [WebhookCodeScanningAlertClosedByUserAlert]docs/WebhookCodeScanningAlertClosedByUserAlert.md
 - [WebhookCodeScanningAlertClosedByUserAlertRule]docs/WebhookCodeScanningAlertClosedByUserAlertRule.md
 - [WebhookCodeScanningAlertClosedByUserAlertTool]docs/WebhookCodeScanningAlertClosedByUserAlertTool.md
 - [WebhookCodeScanningAlertCreated]docs/WebhookCodeScanningAlertCreated.md
 - [WebhookCodeScanningAlertCreatedAlert]docs/WebhookCodeScanningAlertCreatedAlert.md
 - [WebhookCodeScanningAlertCreatedAlertTool]docs/WebhookCodeScanningAlertCreatedAlertTool.md
 - [WebhookCodeScanningAlertFixed]docs/WebhookCodeScanningAlertFixed.md
 - [WebhookCodeScanningAlertFixedAlert]docs/WebhookCodeScanningAlertFixedAlert.md
 - [WebhookCodeScanningAlertReopened]docs/WebhookCodeScanningAlertReopened.md
 - [WebhookCodeScanningAlertReopenedAlert]docs/WebhookCodeScanningAlertReopenedAlert.md
 - [WebhookCodeScanningAlertReopenedByUser]docs/WebhookCodeScanningAlertReopenedByUser.md
 - [WebhookCodeScanningAlertReopenedByUserAlert]docs/WebhookCodeScanningAlertReopenedByUserAlert.md
 - [WebhookCommitCommentCreated]docs/WebhookCommitCommentCreated.md
 - [WebhookCommitCommentCreatedComment]docs/WebhookCommitCommentCreatedComment.md
 - [WebhookConfig]docs/WebhookConfig.md
 - [WebhookConfigInsecureSsl]docs/WebhookConfigInsecureSsl.md
 - [WebhookCreate]docs/WebhookCreate.md
 - [WebhookCustomPropertyCreated]docs/WebhookCustomPropertyCreated.md
 - [WebhookCustomPropertyDeleted]docs/WebhookCustomPropertyDeleted.md
 - [WebhookCustomPropertyDeletedDefinition]docs/WebhookCustomPropertyDeletedDefinition.md
 - [WebhookCustomPropertyUpdated]docs/WebhookCustomPropertyUpdated.md
 - [WebhookCustomPropertyValuesUpdated]docs/WebhookCustomPropertyValuesUpdated.md
 - [WebhookDelete]docs/WebhookDelete.md
 - [WebhookDependabotAlertAutoDismissed]docs/WebhookDependabotAlertAutoDismissed.md
 - [WebhookDependabotAlertAutoReopened]docs/WebhookDependabotAlertAutoReopened.md
 - [WebhookDependabotAlertCreated]docs/WebhookDependabotAlertCreated.md
 - [WebhookDependabotAlertDismissed]docs/WebhookDependabotAlertDismissed.md
 - [WebhookDependabotAlertFixed]docs/WebhookDependabotAlertFixed.md
 - [WebhookDependabotAlertReintroduced]docs/WebhookDependabotAlertReintroduced.md
 - [WebhookDependabotAlertReopened]docs/WebhookDependabotAlertReopened.md
 - [WebhookDeployKeyCreated]docs/WebhookDeployKeyCreated.md
 - [WebhookDeployKeyDeleted]docs/WebhookDeployKeyDeleted.md
 - [WebhookDeploymentCreated]docs/WebhookDeploymentCreated.md
 - [WebhookDeploymentProtectionRuleRequested]docs/WebhookDeploymentProtectionRuleRequested.md
 - [WebhookDeploymentReviewApproved]docs/WebhookDeploymentReviewApproved.md
 - [WebhookDeploymentReviewApprovedWorkflowJobRunsInner]docs/WebhookDeploymentReviewApprovedWorkflowJobRunsInner.md
 - [WebhookDeploymentReviewRejected]docs/WebhookDeploymentReviewRejected.md
 - [WebhookDeploymentReviewRejectedWorkflowJobRunsInner]docs/WebhookDeploymentReviewRejectedWorkflowJobRunsInner.md
 - [WebhookDeploymentReviewRequested]docs/WebhookDeploymentReviewRequested.md
 - [WebhookDeploymentReviewRequestedReviewersInner]docs/WebhookDeploymentReviewRequestedReviewersInner.md
 - [WebhookDeploymentReviewRequestedWorkflowJobRun]docs/WebhookDeploymentReviewRequestedWorkflowJobRun.md
 - [WebhookDeploymentStatusCreated]docs/WebhookDeploymentStatusCreated.md
 - [WebhookDeploymentStatusCreatedCheckRun]docs/WebhookDeploymentStatusCreatedCheckRun.md
 - [WebhookDeploymentStatusCreatedDeploymentStatus]docs/WebhookDeploymentStatusCreatedDeploymentStatus.md
 - [WebhookDiscussionAnswered]docs/WebhookDiscussionAnswered.md
 - [WebhookDiscussionCategoryChanged]docs/WebhookDiscussionCategoryChanged.md
 - [WebhookDiscussionCategoryChangedChanges]docs/WebhookDiscussionCategoryChangedChanges.md
 - [WebhookDiscussionCategoryChangedChangesCategory]docs/WebhookDiscussionCategoryChangedChangesCategory.md
 - [WebhookDiscussionClosed]docs/WebhookDiscussionClosed.md
 - [WebhookDiscussionCommentCreated]docs/WebhookDiscussionCommentCreated.md
 - [WebhookDiscussionCommentDeleted]docs/WebhookDiscussionCommentDeleted.md
 - [WebhookDiscussionCommentEdited]docs/WebhookDiscussionCommentEdited.md
 - [WebhookDiscussionCommentEditedChanges]docs/WebhookDiscussionCommentEditedChanges.md
 - [WebhookDiscussionCommentEditedChangesBody]docs/WebhookDiscussionCommentEditedChangesBody.md
 - [WebhookDiscussionCreated]docs/WebhookDiscussionCreated.md
 - [WebhookDiscussionDeleted]docs/WebhookDiscussionDeleted.md
 - [WebhookDiscussionEdited]docs/WebhookDiscussionEdited.md
 - [WebhookDiscussionEditedChanges]docs/WebhookDiscussionEditedChanges.md
 - [WebhookDiscussionLabeled]docs/WebhookDiscussionLabeled.md
 - [WebhookDiscussionLocked]docs/WebhookDiscussionLocked.md
 - [WebhookDiscussionPinned]docs/WebhookDiscussionPinned.md
 - [WebhookDiscussionReopened]docs/WebhookDiscussionReopened.md
 - [WebhookDiscussionTransferred]docs/WebhookDiscussionTransferred.md
 - [WebhookDiscussionTransferredChanges]docs/WebhookDiscussionTransferredChanges.md
 - [WebhookDiscussionUnanswered]docs/WebhookDiscussionUnanswered.md
 - [WebhookDiscussionUnlabeled]docs/WebhookDiscussionUnlabeled.md
 - [WebhookDiscussionUnlocked]docs/WebhookDiscussionUnlocked.md
 - [WebhookDiscussionUnpinned]docs/WebhookDiscussionUnpinned.md
 - [WebhookFork]docs/WebhookFork.md
 - [WebhookForkForkee]docs/WebhookForkForkee.md
 - [WebhookGithubAppAuthorizationRevoked]docs/WebhookGithubAppAuthorizationRevoked.md
 - [WebhookGollum]docs/WebhookGollum.md
 - [WebhookGollumPagesInner]docs/WebhookGollumPagesInner.md
 - [WebhookInstallationCreated]docs/WebhookInstallationCreated.md
 - [WebhookInstallationDeleted]docs/WebhookInstallationDeleted.md
 - [WebhookInstallationNewPermissionsAccepted]docs/WebhookInstallationNewPermissionsAccepted.md
 - [WebhookInstallationRepositoriesAdded]docs/WebhookInstallationRepositoriesAdded.md
 - [WebhookInstallationRepositoriesAddedRepositoriesRemovedInner]docs/WebhookInstallationRepositoriesAddedRepositoriesRemovedInner.md
 - [WebhookInstallationRepositoriesRemoved]docs/WebhookInstallationRepositoriesRemoved.md
 - [WebhookInstallationSuspend]docs/WebhookInstallationSuspend.md
 - [WebhookInstallationTargetRenamed]docs/WebhookInstallationTargetRenamed.md
 - [WebhookInstallationTargetRenamedAccount]docs/WebhookInstallationTargetRenamedAccount.md
 - [WebhookInstallationTargetRenamedChanges]docs/WebhookInstallationTargetRenamedChanges.md
 - [WebhookInstallationUnsuspend]docs/WebhookInstallationUnsuspend.md
 - [WebhookIssueCommentCreated]docs/WebhookIssueCommentCreated.md
 - [WebhookIssueCommentCreatedIssue]docs/WebhookIssueCommentCreatedIssue.md
 - [WebhookIssueCommentCreatedIssueAllOfReactions]docs/WebhookIssueCommentCreatedIssueAllOfReactions.md
 - [WebhookIssueCommentDeleted]docs/WebhookIssueCommentDeleted.md
 - [WebhookIssueCommentDeletedIssue]docs/WebhookIssueCommentDeletedIssue.md
 - [WebhookIssueCommentEdited]docs/WebhookIssueCommentEdited.md
 - [WebhookIssueCommentEditedIssue]docs/WebhookIssueCommentEditedIssue.md
 - [WebhookIssuesAssigned]docs/WebhookIssuesAssigned.md
 - [WebhookIssuesClosed]docs/WebhookIssuesClosed.md
 - [WebhookIssuesClosedIssue]docs/WebhookIssuesClosedIssue.md
 - [WebhookIssuesDeleted]docs/WebhookIssuesDeleted.md
 - [WebhookIssuesDemilestoned]docs/WebhookIssuesDemilestoned.md
 - [WebhookIssuesEdited]docs/WebhookIssuesEdited.md
 - [WebhookIssuesEditedChanges]docs/WebhookIssuesEditedChanges.md
 - [WebhookIssuesEditedChangesTitle]docs/WebhookIssuesEditedChangesTitle.md
 - [WebhookIssuesLabeled]docs/WebhookIssuesLabeled.md
 - [WebhookIssuesLocked]docs/WebhookIssuesLocked.md
 - [WebhookIssuesMilestoned]docs/WebhookIssuesMilestoned.md
 - [WebhookIssuesOpened]docs/WebhookIssuesOpened.md
 - [WebhookIssuesOpenedChanges]docs/WebhookIssuesOpenedChanges.md
 - [WebhookIssuesPinned]docs/WebhookIssuesPinned.md
 - [WebhookIssuesReopened]docs/WebhookIssuesReopened.md
 - [WebhookIssuesTransferred]docs/WebhookIssuesTransferred.md
 - [WebhookIssuesTransferredChanges]docs/WebhookIssuesTransferredChanges.md
 - [WebhookIssuesUnassigned]docs/WebhookIssuesUnassigned.md
 - [WebhookIssuesUnlabeled]docs/WebhookIssuesUnlabeled.md
 - [WebhookIssuesUnlocked]docs/WebhookIssuesUnlocked.md
 - [WebhookIssuesUnpinned]docs/WebhookIssuesUnpinned.md
 - [WebhookLabelCreated]docs/WebhookLabelCreated.md
 - [WebhookLabelDeleted]docs/WebhookLabelDeleted.md
 - [WebhookLabelEdited]docs/WebhookLabelEdited.md
 - [WebhookLabelEditedChanges]docs/WebhookLabelEditedChanges.md
 - [WebhookLabelEditedChangesColor]docs/WebhookLabelEditedChangesColor.md
 - [WebhookLabelEditedChangesDescription]docs/WebhookLabelEditedChangesDescription.md
 - [WebhookLabelEditedChangesName]docs/WebhookLabelEditedChangesName.md
 - [WebhookMarketplacePurchaseCancelled]docs/WebhookMarketplacePurchaseCancelled.md
 - [WebhookMarketplacePurchaseChanged]docs/WebhookMarketplacePurchaseChanged.md
 - [WebhookMarketplacePurchasePendingChange]docs/WebhookMarketplacePurchasePendingChange.md
 - [WebhookMarketplacePurchasePendingChangeCancelled]docs/WebhookMarketplacePurchasePendingChangeCancelled.md
 - [WebhookMarketplacePurchasePurchased]docs/WebhookMarketplacePurchasePurchased.md
 - [WebhookMemberAdded]docs/WebhookMemberAdded.md
 - [WebhookMemberAddedChanges]docs/WebhookMemberAddedChanges.md
 - [WebhookMemberAddedChangesPermission]docs/WebhookMemberAddedChangesPermission.md
 - [WebhookMemberAddedChangesRoleName]docs/WebhookMemberAddedChangesRoleName.md
 - [WebhookMemberEdited]docs/WebhookMemberEdited.md
 - [WebhookMemberEditedChanges]docs/WebhookMemberEditedChanges.md
 - [WebhookMemberEditedChangesOldPermission]docs/WebhookMemberEditedChangesOldPermission.md
 - [WebhookMemberEditedChangesPermission]docs/WebhookMemberEditedChangesPermission.md
 - [WebhookMemberRemoved]docs/WebhookMemberRemoved.md
 - [WebhookMembershipAdded]docs/WebhookMembershipAdded.md
 - [WebhookMembershipRemoved]docs/WebhookMembershipRemoved.md
 - [WebhookMergeGroupChecksRequested]docs/WebhookMergeGroupChecksRequested.md
 - [WebhookMergeGroupDestroyed]docs/WebhookMergeGroupDestroyed.md
 - [WebhookMetaDeleted]docs/WebhookMetaDeleted.md
 - [WebhookMetaDeletedHook]docs/WebhookMetaDeletedHook.md
 - [WebhookMetaDeletedHookConfig]docs/WebhookMetaDeletedHookConfig.md
 - [WebhookMilestoneClosed]docs/WebhookMilestoneClosed.md
 - [WebhookMilestoneCreated]docs/WebhookMilestoneCreated.md
 - [WebhookMilestoneDeleted]docs/WebhookMilestoneDeleted.md
 - [WebhookMilestoneEdited]docs/WebhookMilestoneEdited.md
 - [WebhookMilestoneEditedChanges]docs/WebhookMilestoneEditedChanges.md
 - [WebhookMilestoneEditedChangesDueOn]docs/WebhookMilestoneEditedChangesDueOn.md
 - [WebhookMilestoneEditedChangesTitle]docs/WebhookMilestoneEditedChangesTitle.md
 - [WebhookMilestoneOpened]docs/WebhookMilestoneOpened.md
 - [WebhookOrgBlockBlocked]docs/WebhookOrgBlockBlocked.md
 - [WebhookOrgBlockUnblocked]docs/WebhookOrgBlockUnblocked.md
 - [WebhookOrganizationDeleted]docs/WebhookOrganizationDeleted.md
 - [WebhookOrganizationMemberAdded]docs/WebhookOrganizationMemberAdded.md
 - [WebhookOrganizationMemberInvited]docs/WebhookOrganizationMemberInvited.md
 - [WebhookOrganizationMemberInvitedInvitation]docs/WebhookOrganizationMemberInvitedInvitation.md
 - [WebhookOrganizationMemberRemoved]docs/WebhookOrganizationMemberRemoved.md
 - [WebhookOrganizationRenamed]docs/WebhookOrganizationRenamed.md
 - [WebhookOrganizationRenamedChanges]docs/WebhookOrganizationRenamedChanges.md
 - [WebhookOrganizationRenamedChangesLogin]docs/WebhookOrganizationRenamedChangesLogin.md
 - [WebhookPackagePublished]docs/WebhookPackagePublished.md
 - [WebhookPackagePublishedPackage]docs/WebhookPackagePublishedPackage.md
 - [WebhookPackagePublishedPackagePackageVersion]docs/WebhookPackagePublishedPackagePackageVersion.md
 - [WebhookPackagePublishedPackagePackageVersionBody]docs/WebhookPackagePublishedPackagePackageVersionBody.md
 - [WebhookPackagePublishedPackagePackageVersionContainerMetadata]docs/WebhookPackagePublishedPackagePackageVersionContainerMetadata.md
 - [WebhookPackagePublishedPackagePackageVersionContainerMetadataTag]docs/WebhookPackagePublishedPackagePackageVersionContainerMetadataTag.md
 - [WebhookPackagePublishedPackagePackageVersionDockerMetadataInner]docs/WebhookPackagePublishedPackagePackageVersionDockerMetadataInner.md
 - [WebhookPackagePublishedPackagePackageVersionNpmMetadata]docs/WebhookPackagePublishedPackagePackageVersionNpmMetadata.md
 - [WebhookPackagePublishedPackagePackageVersionNugetMetadataInner]docs/WebhookPackagePublishedPackagePackageVersionNugetMetadataInner.md
 - [WebhookPackagePublishedPackagePackageVersionNugetMetadataInnerValue]docs/WebhookPackagePublishedPackagePackageVersionNugetMetadataInnerValue.md
 - [WebhookPackagePublishedPackagePackageVersionNugetMetadataInnerValueOneOf]docs/WebhookPackagePublishedPackagePackageVersionNugetMetadataInnerValueOneOf.md
 - [WebhookPackagePublishedPackagePackageVersionPackageFilesInner]docs/WebhookPackagePublishedPackagePackageVersionPackageFilesInner.md
 - [WebhookPackagePublishedPackagePackageVersionRelease]docs/WebhookPackagePublishedPackagePackageVersionRelease.md
 - [WebhookPackagePublishedPackageRegistry]docs/WebhookPackagePublishedPackageRegistry.md
 - [WebhookPackageUpdated]docs/WebhookPackageUpdated.md
 - [WebhookPackageUpdatedPackage]docs/WebhookPackageUpdatedPackage.md
 - [WebhookPackageUpdatedPackagePackageVersion]docs/WebhookPackageUpdatedPackagePackageVersion.md
 - [WebhookPackageUpdatedPackagePackageVersionPackageFilesInner]docs/WebhookPackageUpdatedPackagePackageVersionPackageFilesInner.md
 - [WebhookPackageUpdatedPackagePackageVersionRelease]docs/WebhookPackageUpdatedPackagePackageVersionRelease.md
 - [WebhookPageBuild]docs/WebhookPageBuild.md
 - [WebhookPageBuildBuild]docs/WebhookPageBuildBuild.md
 - [WebhookPersonalAccessTokenRequestApproved]docs/WebhookPersonalAccessTokenRequestApproved.md
 - [WebhookPersonalAccessTokenRequestCancelled]docs/WebhookPersonalAccessTokenRequestCancelled.md
 - [WebhookPersonalAccessTokenRequestCreated]docs/WebhookPersonalAccessTokenRequestCreated.md
 - [WebhookPersonalAccessTokenRequestDenied]docs/WebhookPersonalAccessTokenRequestDenied.md
 - [WebhookPing]docs/WebhookPing.md
 - [WebhookPingFormEncoded]docs/WebhookPingFormEncoded.md
 - [WebhookProjectCardConverted]docs/WebhookProjectCardConverted.md
 - [WebhookProjectCardConvertedChanges]docs/WebhookProjectCardConvertedChanges.md
 - [WebhookProjectCardCreated]docs/WebhookProjectCardCreated.md
 - [WebhookProjectCardDeleted]docs/WebhookProjectCardDeleted.md
 - [WebhookProjectCardEdited]docs/WebhookProjectCardEdited.md
 - [WebhookProjectCardEditedChanges]docs/WebhookProjectCardEditedChanges.md
 - [WebhookProjectCardEditedChangesNote]docs/WebhookProjectCardEditedChangesNote.md
 - [WebhookProjectCardMoved]docs/WebhookProjectCardMoved.md
 - [WebhookProjectCardMovedChanges]docs/WebhookProjectCardMovedChanges.md
 - [WebhookProjectCardMovedChangesColumnId]docs/WebhookProjectCardMovedChangesColumnId.md
 - [WebhookProjectCardMovedProjectCard]docs/WebhookProjectCardMovedProjectCard.md
 - [WebhookProjectCardMovedProjectCardAllOfCreator]docs/WebhookProjectCardMovedProjectCardAllOfCreator.md
 - [WebhookProjectClosed]docs/WebhookProjectClosed.md
 - [WebhookProjectColumnCreated]docs/WebhookProjectColumnCreated.md
 - [WebhookProjectColumnDeleted]docs/WebhookProjectColumnDeleted.md
 - [WebhookProjectColumnEdited]docs/WebhookProjectColumnEdited.md
 - [WebhookProjectColumnEditedChanges]docs/WebhookProjectColumnEditedChanges.md
 - [WebhookProjectColumnMoved]docs/WebhookProjectColumnMoved.md
 - [WebhookProjectCreated]docs/WebhookProjectCreated.md
 - [WebhookProjectDeleted]docs/WebhookProjectDeleted.md
 - [WebhookProjectEdited]docs/WebhookProjectEdited.md
 - [WebhookProjectEditedChanges]docs/WebhookProjectEditedChanges.md
 - [WebhookProjectEditedChangesBody]docs/WebhookProjectEditedChangesBody.md
 - [WebhookProjectEditedChangesName]docs/WebhookProjectEditedChangesName.md
 - [WebhookProjectReopened]docs/WebhookProjectReopened.md
 - [WebhookProjectsV2ItemArchived]docs/WebhookProjectsV2ItemArchived.md
 - [WebhookProjectsV2ItemConverted]docs/WebhookProjectsV2ItemConverted.md
 - [WebhookProjectsV2ItemConvertedChanges]docs/WebhookProjectsV2ItemConvertedChanges.md
 - [WebhookProjectsV2ItemConvertedChangesContentType]docs/WebhookProjectsV2ItemConvertedChangesContentType.md
 - [WebhookProjectsV2ItemCreated]docs/WebhookProjectsV2ItemCreated.md
 - [WebhookProjectsV2ItemDeleted]docs/WebhookProjectsV2ItemDeleted.md
 - [WebhookProjectsV2ItemEdited]docs/WebhookProjectsV2ItemEdited.md
 - [WebhookProjectsV2ItemEditedChanges]docs/WebhookProjectsV2ItemEditedChanges.md
 - [WebhookProjectsV2ItemEditedChangesOneOf]docs/WebhookProjectsV2ItemEditedChangesOneOf.md
 - [WebhookProjectsV2ItemEditedChangesOneOf1]docs/WebhookProjectsV2ItemEditedChangesOneOf1.md
 - [WebhookProjectsV2ItemEditedChangesOneOfFieldValue]docs/WebhookProjectsV2ItemEditedChangesOneOfFieldValue.md
 - [WebhookProjectsV2ItemReordered]docs/WebhookProjectsV2ItemReordered.md
 - [WebhookProjectsV2ItemReorderedChanges]docs/WebhookProjectsV2ItemReorderedChanges.md
 - [WebhookProjectsV2ItemRestored]docs/WebhookProjectsV2ItemRestored.md
 - [WebhookProjectsV2ProjectClosed]docs/WebhookProjectsV2ProjectClosed.md
 - [WebhookProjectsV2ProjectCreated]docs/WebhookProjectsV2ProjectCreated.md
 - [WebhookProjectsV2ProjectDeleted]docs/WebhookProjectsV2ProjectDeleted.md
 - [WebhookProjectsV2ProjectEdited]docs/WebhookProjectsV2ProjectEdited.md
 - [WebhookProjectsV2ProjectEditedChanges]docs/WebhookProjectsV2ProjectEditedChanges.md
 - [WebhookProjectsV2ProjectEditedChangesPublic]docs/WebhookProjectsV2ProjectEditedChangesPublic.md
 - [WebhookProjectsV2ProjectEditedChangesTitle]docs/WebhookProjectsV2ProjectEditedChangesTitle.md
 - [WebhookProjectsV2ProjectReopened]docs/WebhookProjectsV2ProjectReopened.md
 - [WebhookPublic]docs/WebhookPublic.md
 - [WebhookPullRequestAssigned]docs/WebhookPullRequestAssigned.md
 - [WebhookPullRequestAutoMergeDisabled]docs/WebhookPullRequestAutoMergeDisabled.md
 - [WebhookPullRequestAutoMergeEnabled]docs/WebhookPullRequestAutoMergeEnabled.md
 - [WebhookPullRequestClosed]docs/WebhookPullRequestClosed.md
 - [WebhookPullRequestConvertedToDraft]docs/WebhookPullRequestConvertedToDraft.md
 - [WebhookPullRequestDemilestoned]docs/WebhookPullRequestDemilestoned.md
 - [WebhookPullRequestDequeued]docs/WebhookPullRequestDequeued.md
 - [WebhookPullRequestEdited]docs/WebhookPullRequestEdited.md
 - [WebhookPullRequestEditedChanges]docs/WebhookPullRequestEditedChanges.md
 - [WebhookPullRequestEditedChangesBase]docs/WebhookPullRequestEditedChangesBase.md
 - [WebhookPullRequestEnqueued]docs/WebhookPullRequestEnqueued.md
 - [WebhookPullRequestLabeled]docs/WebhookPullRequestLabeled.md
 - [WebhookPullRequestLocked]docs/WebhookPullRequestLocked.md
 - [WebhookPullRequestMilestoned]docs/WebhookPullRequestMilestoned.md
 - [WebhookPullRequestOpened]docs/WebhookPullRequestOpened.md
 - [WebhookPullRequestReadyForReview]docs/WebhookPullRequestReadyForReview.md
 - [WebhookPullRequestReopened]docs/WebhookPullRequestReopened.md
 - [WebhookPullRequestReviewCommentCreated]docs/WebhookPullRequestReviewCommentCreated.md
 - [WebhookPullRequestReviewCommentCreatedPullRequest]docs/WebhookPullRequestReviewCommentCreatedPullRequest.md
 - [WebhookPullRequestReviewCommentCreatedPullRequestHead]docs/WebhookPullRequestReviewCommentCreatedPullRequestHead.md
 - [WebhookPullRequestReviewCommentDeleted]docs/WebhookPullRequestReviewCommentDeleted.md
 - [WebhookPullRequestReviewCommentDeletedPullRequest]docs/WebhookPullRequestReviewCommentDeletedPullRequest.md
 - [WebhookPullRequestReviewCommentDeletedPullRequestHead]docs/WebhookPullRequestReviewCommentDeletedPullRequestHead.md
 - [WebhookPullRequestReviewCommentEdited]docs/WebhookPullRequestReviewCommentEdited.md
 - [WebhookPullRequestReviewCommentEditedPullRequest]docs/WebhookPullRequestReviewCommentEditedPullRequest.md
 - [WebhookPullRequestReviewDismissed]docs/WebhookPullRequestReviewDismissed.md
 - [WebhookPullRequestReviewDismissedReview]docs/WebhookPullRequestReviewDismissedReview.md
 - [WebhookPullRequestReviewEdited]docs/WebhookPullRequestReviewEdited.md
 - [WebhookPullRequestReviewEditedChanges]docs/WebhookPullRequestReviewEditedChanges.md
 - [WebhookPullRequestReviewRequestRemoved]docs/WebhookPullRequestReviewRequestRemoved.md
 - [WebhookPullRequestReviewRequestRemovedOneOf]docs/WebhookPullRequestReviewRequestRemovedOneOf.md
 - [WebhookPullRequestReviewRequestRemovedOneOf1]docs/WebhookPullRequestReviewRequestRemovedOneOf1.md
 - [WebhookPullRequestReviewRequested]docs/WebhookPullRequestReviewRequested.md
 - [WebhookPullRequestReviewRequestedOneOf]docs/WebhookPullRequestReviewRequestedOneOf.md
 - [WebhookPullRequestReviewRequestedOneOf1]docs/WebhookPullRequestReviewRequestedOneOf1.md
 - [WebhookPullRequestReviewSubmitted]docs/WebhookPullRequestReviewSubmitted.md
 - [WebhookPullRequestReviewThreadResolved]docs/WebhookPullRequestReviewThreadResolved.md
 - [WebhookPullRequestReviewThreadResolvedThread]docs/WebhookPullRequestReviewThreadResolvedThread.md
 - [WebhookPullRequestReviewThreadUnresolved]docs/WebhookPullRequestReviewThreadUnresolved.md
 - [WebhookPullRequestReviewThreadUnresolvedThread]docs/WebhookPullRequestReviewThreadUnresolvedThread.md
 - [WebhookPullRequestSynchronize]docs/WebhookPullRequestSynchronize.md
 - [WebhookPullRequestUnassigned]docs/WebhookPullRequestUnassigned.md
 - [WebhookPullRequestUnlabeled]docs/WebhookPullRequestUnlabeled.md
 - [WebhookPullRequestUnlocked]docs/WebhookPullRequestUnlocked.md
 - [WebhookPush]docs/WebhookPush.md
 - [WebhookRegistryPackagePublished]docs/WebhookRegistryPackagePublished.md
 - [WebhookRegistryPackagePublishedRegistryPackage]docs/WebhookRegistryPackagePublishedRegistryPackage.md
 - [WebhookRegistryPackagePublishedRegistryPackageOwner]docs/WebhookRegistryPackagePublishedRegistryPackageOwner.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersion]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersion.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionContainerMetadata]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionContainerMetadata.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionNpmMetadata.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataInner]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataInner.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataInnerId]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionNugetMetadataInnerId.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionPackageFilesInner]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionPackageFilesInner.md
 - [WebhookRegistryPackagePublishedRegistryPackagePackageVersionRelease]docs/WebhookRegistryPackagePublishedRegistryPackagePackageVersionRelease.md
 - [WebhookRegistryPackagePublishedRegistryPackageRegistry]docs/WebhookRegistryPackagePublishedRegistryPackageRegistry.md
 - [WebhookRegistryPackageUpdated]docs/WebhookRegistryPackageUpdated.md
 - [WebhookRegistryPackageUpdatedRegistryPackage]docs/WebhookRegistryPackageUpdatedRegistryPackage.md
 - [WebhookRegistryPackageUpdatedRegistryPackagePackageVersion]docs/WebhookRegistryPackageUpdatedRegistryPackagePackageVersion.md
 - [WebhookRegistryPackageUpdatedRegistryPackagePackageVersionDockerMetadataInner]docs/WebhookRegistryPackageUpdatedRegistryPackagePackageVersionDockerMetadataInner.md
 - [WebhookRegistryPackageUpdatedRegistryPackagePackageVersionPackageFilesInner]docs/WebhookRegistryPackageUpdatedRegistryPackagePackageVersionPackageFilesInner.md
 - [WebhookRegistryPackageUpdatedRegistryPackagePackageVersionRelease]docs/WebhookRegistryPackageUpdatedRegistryPackagePackageVersionRelease.md
 - [WebhookReleaseCreated]docs/WebhookReleaseCreated.md
 - [WebhookReleaseDeleted]docs/WebhookReleaseDeleted.md
 - [WebhookReleaseEdited]docs/WebhookReleaseEdited.md
 - [WebhookReleaseEditedChanges]docs/WebhookReleaseEditedChanges.md
 - [WebhookReleaseEditedChangesMakeLatest]docs/WebhookReleaseEditedChangesMakeLatest.md
 - [WebhookReleasePrereleased]docs/WebhookReleasePrereleased.md
 - [WebhookReleasePublished]docs/WebhookReleasePublished.md
 - [WebhookReleaseReleased]docs/WebhookReleaseReleased.md
 - [WebhookReleaseUnpublished]docs/WebhookReleaseUnpublished.md
 - [WebhookRepositoryAdvisoryPublished]docs/WebhookRepositoryAdvisoryPublished.md
 - [WebhookRepositoryAdvisoryReported]docs/WebhookRepositoryAdvisoryReported.md
 - [WebhookRepositoryArchived]docs/WebhookRepositoryArchived.md
 - [WebhookRepositoryCreated]docs/WebhookRepositoryCreated.md
 - [WebhookRepositoryDeleted]docs/WebhookRepositoryDeleted.md
 - [WebhookRepositoryDispatchSample]docs/WebhookRepositoryDispatchSample.md
 - [WebhookRepositoryEdited]docs/WebhookRepositoryEdited.md
 - [WebhookRepositoryEditedChanges]docs/WebhookRepositoryEditedChanges.md
 - [WebhookRepositoryEditedChangesTopics]docs/WebhookRepositoryEditedChangesTopics.md
 - [WebhookRepositoryImport]docs/WebhookRepositoryImport.md
 - [WebhookRepositoryPrivatized]docs/WebhookRepositoryPrivatized.md
 - [WebhookRepositoryPublicized]docs/WebhookRepositoryPublicized.md
 - [WebhookRepositoryRenamed]docs/WebhookRepositoryRenamed.md
 - [WebhookRepositoryRenamedChanges]docs/WebhookRepositoryRenamedChanges.md
 - [WebhookRepositoryRenamedChangesRepository]docs/WebhookRepositoryRenamedChangesRepository.md
 - [WebhookRepositoryRulesetCreated]docs/WebhookRepositoryRulesetCreated.md
 - [WebhookRepositoryRulesetDeleted]docs/WebhookRepositoryRulesetDeleted.md
 - [WebhookRepositoryRulesetEdited]docs/WebhookRepositoryRulesetEdited.md
 - [WebhookRepositoryRulesetEditedChanges]docs/WebhookRepositoryRulesetEditedChanges.md
 - [WebhookRepositoryRulesetEditedChangesConditions]docs/WebhookRepositoryRulesetEditedChangesConditions.md
 - [WebhookRepositoryRulesetEditedChangesConditionsUpdatedInner]docs/WebhookRepositoryRulesetEditedChangesConditionsUpdatedInner.md
 - [WebhookRepositoryRulesetEditedChangesConditionsUpdatedInnerChanges]docs/WebhookRepositoryRulesetEditedChangesConditionsUpdatedInnerChanges.md
 - [WebhookRepositoryRulesetEditedChangesConditionsUpdatedInnerChangesInclude]docs/WebhookRepositoryRulesetEditedChangesConditionsUpdatedInnerChangesInclude.md
 - [WebhookRepositoryRulesetEditedChangesRules]docs/WebhookRepositoryRulesetEditedChangesRules.md
 - [WebhookRepositoryRulesetEditedChangesRulesUpdatedInner]docs/WebhookRepositoryRulesetEditedChangesRulesUpdatedInner.md
 - [WebhookRepositoryRulesetEditedChangesRulesUpdatedInnerChanges]docs/WebhookRepositoryRulesetEditedChangesRulesUpdatedInnerChanges.md
 - [WebhookRepositoryTransferred]docs/WebhookRepositoryTransferred.md
 - [WebhookRepositoryTransferredChanges]docs/WebhookRepositoryTransferredChanges.md
 - [WebhookRepositoryTransferredChangesOwner]docs/WebhookRepositoryTransferredChangesOwner.md
 - [WebhookRepositoryTransferredChangesOwnerFrom]docs/WebhookRepositoryTransferredChangesOwnerFrom.md
 - [WebhookRepositoryUnarchived]docs/WebhookRepositoryUnarchived.md
 - [WebhookRepositoryVulnerabilityAlertCreate]docs/WebhookRepositoryVulnerabilityAlertCreate.md
 - [WebhookRepositoryVulnerabilityAlertDismiss]docs/WebhookRepositoryVulnerabilityAlertDismiss.md
 - [WebhookRepositoryVulnerabilityAlertReopen]docs/WebhookRepositoryVulnerabilityAlertReopen.md
 - [WebhookRepositoryVulnerabilityAlertResolve]docs/WebhookRepositoryVulnerabilityAlertResolve.md
 - [WebhookRubygemsMetadata]docs/WebhookRubygemsMetadata.md
 - [WebhookRubygemsMetadataVersionInfo]docs/WebhookRubygemsMetadataVersionInfo.md
 - [WebhookSecretScanningAlertCreated]docs/WebhookSecretScanningAlertCreated.md
 - [WebhookSecretScanningAlertLocationCreated]docs/WebhookSecretScanningAlertLocationCreated.md
 - [WebhookSecretScanningAlertLocationCreatedFormEncoded]docs/WebhookSecretScanningAlertLocationCreatedFormEncoded.md
 - [WebhookSecretScanningAlertReopened]docs/WebhookSecretScanningAlertReopened.md
 - [WebhookSecretScanningAlertResolved]docs/WebhookSecretScanningAlertResolved.md
 - [WebhookSecretScanningAlertRevoked]docs/WebhookSecretScanningAlertRevoked.md
 - [WebhookSecretScanningAlertValidated]docs/WebhookSecretScanningAlertValidated.md
 - [WebhookSecurityAdvisoryPublished]docs/WebhookSecurityAdvisoryPublished.md
 - [WebhookSecurityAdvisoryUpdated]docs/WebhookSecurityAdvisoryUpdated.md
 - [WebhookSecurityAdvisoryWithdrawn]docs/WebhookSecurityAdvisoryWithdrawn.md
 - [WebhookSecurityAdvisoryWithdrawnSecurityAdvisory]docs/WebhookSecurityAdvisoryWithdrawnSecurityAdvisory.md
 - [WebhookSecurityAndAnalysis]docs/WebhookSecurityAndAnalysis.md
 - [WebhookSecurityAndAnalysisChanges]docs/WebhookSecurityAndAnalysisChanges.md
 - [WebhookSecurityAndAnalysisChangesFrom]docs/WebhookSecurityAndAnalysisChangesFrom.md
 - [WebhookSponsorshipCancelled]docs/WebhookSponsorshipCancelled.md
 - [WebhookSponsorshipCreated]docs/WebhookSponsorshipCreated.md
 - [WebhookSponsorshipEdited]docs/WebhookSponsorshipEdited.md
 - [WebhookSponsorshipEditedChanges]docs/WebhookSponsorshipEditedChanges.md
 - [WebhookSponsorshipEditedChangesPrivacyLevel]docs/WebhookSponsorshipEditedChangesPrivacyLevel.md
 - [WebhookSponsorshipPendingCancellation]docs/WebhookSponsorshipPendingCancellation.md
 - [WebhookSponsorshipPendingTierChange]docs/WebhookSponsorshipPendingTierChange.md
 - [WebhookSponsorshipTierChanged]docs/WebhookSponsorshipTierChanged.md
 - [WebhookStarCreated]docs/WebhookStarCreated.md
 - [WebhookStarDeleted]docs/WebhookStarDeleted.md
 - [WebhookStatus]docs/WebhookStatus.md
 - [WebhookStatusBranchesInner]docs/WebhookStatusBranchesInner.md
 - [WebhookStatusBranchesInnerCommit]docs/WebhookStatusBranchesInnerCommit.md
 - [WebhookStatusCommit]docs/WebhookStatusCommit.md
 - [WebhookStatusCommitCommit]docs/WebhookStatusCommitCommit.md
 - [WebhookStatusCommitCommitAuthor]docs/WebhookStatusCommitCommitAuthor.md
 - [WebhookStatusCommitCommitVerification]docs/WebhookStatusCommitCommitVerification.md
 - [WebhookStatusCommitParentsInner]docs/WebhookStatusCommitParentsInner.md
 - [WebhookTeamAdd]docs/WebhookTeamAdd.md
 - [WebhookTeamAddedToRepository]docs/WebhookTeamAddedToRepository.md
 - [WebhookTeamCreated]docs/WebhookTeamCreated.md
 - [WebhookTeamDeleted]docs/WebhookTeamDeleted.md
 - [WebhookTeamEdited]docs/WebhookTeamEdited.md
 - [WebhookTeamEditedChanges]docs/WebhookTeamEditedChanges.md
 - [WebhookTeamEditedChangesNotificationSetting]docs/WebhookTeamEditedChangesNotificationSetting.md
 - [WebhookTeamEditedChangesPrivacy]docs/WebhookTeamEditedChangesPrivacy.md
 - [WebhookTeamEditedChangesRepository]docs/WebhookTeamEditedChangesRepository.md
 - [WebhookTeamEditedChangesRepositoryPermissions]docs/WebhookTeamEditedChangesRepositoryPermissions.md
 - [WebhookTeamEditedChangesRepositoryPermissionsFrom]docs/WebhookTeamEditedChangesRepositoryPermissionsFrom.md
 - [WebhookTeamRemovedFromRepository]docs/WebhookTeamRemovedFromRepository.md
 - [WebhookWatchStarted]docs/WebhookWatchStarted.md
 - [WebhookWorkflowDispatch]docs/WebhookWorkflowDispatch.md
 - [WebhookWorkflowJobCompleted]docs/WebhookWorkflowJobCompleted.md
 - [WebhookWorkflowJobCompletedWorkflowJob]docs/WebhookWorkflowJobCompletedWorkflowJob.md
 - [WebhookWorkflowJobInProgress]docs/WebhookWorkflowJobInProgress.md
 - [WebhookWorkflowJobInProgressWorkflowJob]docs/WebhookWorkflowJobInProgressWorkflowJob.md
 - [WebhookWorkflowJobQueued]docs/WebhookWorkflowJobQueued.md
 - [WebhookWorkflowJobQueuedWorkflowJob]docs/WebhookWorkflowJobQueuedWorkflowJob.md
 - [WebhookWorkflowJobWaiting]docs/WebhookWorkflowJobWaiting.md
 - [WebhookWorkflowJobWaitingWorkflowJob]docs/WebhookWorkflowJobWaitingWorkflowJob.md
 - [WebhookWorkflowRunCompleted]docs/WebhookWorkflowRunCompleted.md
 - [WebhookWorkflowRunInProgress]docs/WebhookWorkflowRunInProgress.md
 - [WebhookWorkflowRunRequested]docs/WebhookWorkflowRunRequested.md
 - [WebhooksAlert]docs/WebhooksAlert.md
 - [WebhooksAnswer]docs/WebhooksAnswer.md
 - [WebhooksApprover]docs/WebhooksApprover.md
 - [WebhooksChanges]docs/WebhooksChanges.md
 - [WebhooksChanges8]docs/WebhooksChanges8.md
 - [WebhooksChanges8Tier]docs/WebhooksChanges8Tier.md
 - [WebhooksChangesBody]docs/WebhooksChangesBody.md
 - [WebhooksComment]docs/WebhooksComment.md
 - [WebhooksDeployKey]docs/WebhooksDeployKey.md
 - [WebhooksIssue]docs/WebhooksIssue.md
 - [WebhooksIssue2]docs/WebhooksIssue2.md
 - [WebhooksIssueComment]docs/WebhooksIssueComment.md
 - [WebhooksIssuePullRequest]docs/WebhooksIssuePullRequest.md
 - [WebhooksLabel]docs/WebhooksLabel.md
 - [WebhooksMarketplacePurchase]docs/WebhooksMarketplacePurchase.md
 - [WebhooksMarketplacePurchaseAccount]docs/WebhooksMarketplacePurchaseAccount.md
 - [WebhooksMarketplacePurchasePlan]docs/WebhooksMarketplacePurchasePlan.md
 - [WebhooksMembership]docs/WebhooksMembership.md
 - [WebhooksMilestone]docs/WebhooksMilestone.md
 - [WebhooksMilestone3]docs/WebhooksMilestone3.md
 - [WebhooksPreviousMarketplacePurchase]docs/WebhooksPreviousMarketplacePurchase.md
 - [WebhooksPreviousMarketplacePurchasePlan]docs/WebhooksPreviousMarketplacePurchasePlan.md
 - [WebhooksProject]docs/WebhooksProject.md
 - [WebhooksProjectCard]docs/WebhooksProjectCard.md
 - [WebhooksProjectChanges]docs/WebhooksProjectChanges.md
 - [WebhooksProjectChangesArchivedAt]docs/WebhooksProjectChangesArchivedAt.md
 - [WebhooksProjectColumn]docs/WebhooksProjectColumn.md
 - [WebhooksPullRequest5]docs/WebhooksPullRequest5.md
 - [WebhooksPullRequest5Base]docs/WebhooksPullRequest5Base.md
 - [WebhooksPullRequest5Links]docs/WebhooksPullRequest5Links.md
 - [WebhooksPullRequest5RequestedReviewersInner]docs/WebhooksPullRequest5RequestedReviewersInner.md
 - [WebhooksRelease]docs/WebhooksRelease.md
 - [WebhooksRelease1]docs/WebhooksRelease1.md
 - [WebhooksRepositoriesInner]docs/WebhooksRepositoriesInner.md
 - [WebhooksRepositorySelection]docs/WebhooksRepositorySelection.md
 - [WebhooksReview]docs/WebhooksReview.md
 - [WebhooksReviewComment]docs/WebhooksReviewComment.md
 - [WebhooksReviewCommentLinks]docs/WebhooksReviewCommentLinks.md
 - [WebhooksReviewLinks]docs/WebhooksReviewLinks.md
 - [WebhooksReviewersInner]docs/WebhooksReviewersInner.md
 - [WebhooksRule]docs/WebhooksRule.md
 - [WebhooksSecurityAdvisory]docs/WebhooksSecurityAdvisory.md
 - [WebhooksSecurityAdvisoryCvss]docs/WebhooksSecurityAdvisoryCvss.md
 - [WebhooksSecurityAdvisoryCwesInner]docs/WebhooksSecurityAdvisoryCwesInner.md
 - [WebhooksSecurityAdvisoryIdentifiersInner]docs/WebhooksSecurityAdvisoryIdentifiersInner.md
 - [WebhooksSecurityAdvisoryReferencesInner]docs/WebhooksSecurityAdvisoryReferencesInner.md
 - [WebhooksSecurityAdvisoryVulnerabilitiesInner]docs/WebhooksSecurityAdvisoryVulnerabilitiesInner.md
 - [WebhooksSecurityAdvisoryVulnerabilitiesInnerFirstPatchedVersion]docs/WebhooksSecurityAdvisoryVulnerabilitiesInnerFirstPatchedVersion.md
 - [WebhooksSecurityAdvisoryVulnerabilitiesInnerPackage]docs/WebhooksSecurityAdvisoryVulnerabilitiesInnerPackage.md
 - [WebhooksSponsorship]docs/WebhooksSponsorship.md
 - [WebhooksSponsorshipMaintainer]docs/WebhooksSponsorshipMaintainer.md
 - [WebhooksTeam]docs/WebhooksTeam.md
 - [WebhooksTeam1]docs/WebhooksTeam1.md
 - [WebhooksTeamParent]docs/WebhooksTeamParent.md
 - [WebhooksUser]docs/WebhooksUser.md
 - [WebhooksUserMannequin]docs/WebhooksUserMannequin.md
 - [WebhooksWorkflow]docs/WebhooksWorkflow.md
 - [WebhooksWorkflowJobRun]docs/WebhooksWorkflowJobRun.md
 - [Workflow]docs/Workflow.md
 - [WorkflowRun]docs/WorkflowRun.md
 - [WorkflowRun1]docs/WorkflowRun1.md
 - [WorkflowRun2]docs/WorkflowRun2.md
 - [WorkflowRun2PullRequestsInner]docs/WorkflowRun2PullRequestsInner.md
 - [WorkflowRunPullRequestsInner]docs/WorkflowRunPullRequestsInner.md
 - [WorkflowRunUsage]docs/WorkflowRunUsage.md
 - [WorkflowRunUsageBillable]docs/WorkflowRunUsageBillable.md
 - [WorkflowRunUsageBillableUbuntu]docs/WorkflowRunUsageBillableUbuntu.md
 - [WorkflowRunUsageBillableUbuntuJobRunsInner]docs/WorkflowRunUsageBillableUbuntuJobRunsInner.md
 - [WorkflowStep]docs/WorkflowStep.md
 - [WorkflowStep1]docs/WorkflowStep1.md
 - [WorkflowStep2]docs/WorkflowStep2.md
 - [WorkflowStep3]docs/WorkflowStep3.md
 - [WorkflowStep4]docs/WorkflowStep4.md
 - [WorkflowUsage]docs/WorkflowUsage.md
 - [WorkflowUsageBillable]docs/WorkflowUsageBillable.md
 - [WorkflowUsageBillableUbuntu]docs/WorkflowUsageBillableUbuntu.md


To get access to the crate's generated documentation, use:

```
cargo doc --open
```

## Author