plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
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
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
pub use ach_class::*;
pub use apr::*;
pub use account_access::*;
pub use account_assets::*;
pub use account_balance::*;
pub use account_base::*;
pub use account_filters_response::*;
pub use account_holder_category::*;
pub use account_identity::*;
pub use account_identity_document_upload::*;
pub use account_identity_match_score::*;
pub use account_ids_with_updated_auth::*;
pub use account_ids_with_updated_identity::*;
pub use account_product_access::*;
pub use account_subtype::*;
pub use account_type::*;
pub use account_verification_insights::*;
pub use account_verification_insights_account_number_format::*;
pub use account_verification_insights_network_status::*;
pub use account_verification_insights_previous_returns::*;
pub use accounts_balance_get_request_options::*;
pub use accounts_balance_get_request_payment_details::*;
pub use accounts_balance_get_response_payment_risk_assessment::*;
pub use accounts_get_request_options::*;
pub use accounts_get_response::*;
pub use action_state::*;
pub use activity::*;
pub use activity_type::*;
pub use address::*;
pub use address_data::*;
pub use address_data_not_required::*;
pub use address_match_score::*;
pub use address_purpose_label::*;
pub use application::*;
pub use application_get_response::*;
pub use asset::*;
pub use asset_detail::*;
pub use asset_holder::*;
pub use asset_holder_name::*;
pub use asset_owner::*;
pub use asset_owners::*;
pub use asset_report::*;
pub use asset_report_account_balance::*;
pub use asset_report_add_ons::*;
pub use asset_report_audit_copy_create_response::*;
pub use asset_report_audit_copy_remove_response::*;
pub use asset_report_create_request_options::*;
pub use asset_report_create_response::*;
pub use asset_report_filter_response::*;
pub use asset_report_freddie::*;
pub use asset_report_freddie_get_response::*;
pub use asset_report_get_request_options::*;
pub use asset_report_get_response::*;
pub use asset_report_investments::*;
pub use asset_report_item::*;
pub use asset_report_pdf_get_request_options::*;
pub use asset_report_refresh_request_options::*;
pub use asset_report_refresh_response::*;
pub use asset_report_remove_response::*;
pub use asset_report_transaction::*;
pub use asset_report_transaction_type::*;
pub use asset_report_type::*;
pub use asset_report_user::*;
pub use asset_transaction::*;
pub use asset_transaction_category_type::*;
pub use asset_transaction_description::*;
pub use asset_transaction_detail::*;
pub use asset_transaction_type::*;
pub use asset_transactions::*;
pub use asset_type::*;
pub use assets::*;
pub use assets_error_webhook::*;
pub use assets_product_ready_webhook::*;
pub use auth_default_update_webhook::*;
pub use auth_get_numbers::*;
pub use auth_get_request_options::*;
pub use auth_get_response::*;
pub use auth_metadata::*;
pub use auth_supported_methods::*;
pub use auth_update_types::*;
pub use automatically_verified_webhook::*;
pub use balance_plus_attributes::*;
pub use balance_plus_risk_level::*;
pub use bank_income_complete_result::*;
pub use bank_income_complete_webhook::*;
pub use bank_income_refresh_complete_result::*;
pub use bank_income_refresh_complete_webhook::*;
pub use bank_income_refresh_update_webhook::*;
pub use bank_initiated_return_risk::*;
pub use bank_transfer::*;
pub use bank_transfer_balance::*;
pub use bank_transfer_balance_get_response::*;
pub use bank_transfer_cancel_response::*;
pub use bank_transfer_create_response::*;
pub use bank_transfer_direction::*;
pub use bank_transfer_event::*;
pub use bank_transfer_event_list_bank_transfer_type::*;
pub use bank_transfer_event_list_direction::*;
pub use bank_transfer_event_list_response::*;
pub use bank_transfer_event_sync_response::*;
pub use bank_transfer_event_type::*;
pub use bank_transfer_failure::*;
pub use bank_transfer_get_response::*;
pub use bank_transfer_list_response::*;
pub use bank_transfer_metadata::*;
pub use bank_transfer_migrate_account_response::*;
pub use bank_transfer_network::*;
pub use bank_transfer_status::*;
pub use bank_transfer_sweep::*;
pub use bank_transfer_sweep_get_response::*;
pub use bank_transfer_sweep_list_response::*;
pub use bank_transfer_type::*;
pub use bank_transfer_user::*;
pub use bank_transfers_events_update_webhook::*;
pub use base_report::*;
pub use base_report_account::*;
pub use base_report_account_balances::*;
pub use base_report_account_insights::*;
pub use base_report_account_metadata::*;
pub use base_report_attributes::*;
pub use base_report_average_flow_insights::*;
pub use base_report_average_monthly_balances::*;
pub use base_report_historical_balance::*;
pub use base_report_item::*;
pub use base_report_longest_gap_insights::*;
pub use base_report_number_flow_insights::*;
pub use base_report_transaction::*;
pub use base_report_transaction_type::*;
pub use base_report_warning::*;
pub use base_report_warning_code::*;
pub use base_reports_error_webhook::*;
pub use base_reports_product_ready_webhook::*;
pub use beacon_account_risk_attributes::*;
pub use beacon_account_risk_evaluate_account::*;
pub use beacon_account_risk_evaluate_account_attributes::*;
pub use beacon_account_risk_evaluate_evaluation_reason::*;
pub use beacon_account_risk_evaluate_request_options::*;
pub use beacon_account_risk_evaluate_response::*;
pub use beacon_audit_trail::*;
pub use beacon_audit_trail_source::*;
pub use beacon_bank_account_insights::*;
pub use beacon_bank_accounts::*;
pub use beacon_duplicate_detected_webhook::*;
pub use beacon_duplicate_get_response::*;
pub use beacon_match_summary_analysis::*;
pub use beacon_match_summary_code::*;
pub use beacon_report::*;
pub use beacon_report_create_response::*;
pub use beacon_report_create_type::*;
pub use beacon_report_created_webhook::*;
pub use beacon_report_get_response::*;
pub use beacon_report_list_response::*;
pub use beacon_report_syndication::*;
pub use beacon_report_syndication_analysis::*;
pub use beacon_report_syndication_created_webhook::*;
pub use beacon_report_syndication_get_response::*;
pub use beacon_report_syndication_list_response::*;
pub use beacon_report_syndication_original_report::*;
pub use beacon_report_type::*;
pub use beacon_report_updated_webhook::*;
pub use beacon_syndicated_report_depository_account_match_analysis::*;
pub use beacon_user::*;
pub use beacon_user_account_insights_get_response::*;
pub use beacon_user_address::*;
pub use beacon_user_create_response::*;
pub use beacon_user_data::*;
pub use beacon_user_depository_account::*;
pub use beacon_user_get_response::*;
pub use beacon_user_history_list_response::*;
pub use beacon_user_id_number::*;
pub use beacon_user_name::*;
pub use beacon_user_name_nullable::*;
pub use beacon_user_request_address::*;
pub use beacon_user_request_address_nullable::*;
pub use beacon_user_request_data::*;
pub use beacon_user_request_depository_account::*;
pub use beacon_user_revision::*;
pub use beacon_user_status::*;
pub use beacon_user_status_updated_webhook::*;
pub use beacon_user_update_request_data::*;
pub use beacon_user_update_response::*;
pub use cashflow_attributes_version::*;
pub use categories_get_response::*;
pub use category::*;
pub use category_insight_details::*;
pub use category_insights::*;
pub use cause::*;
pub use client_provided_enhanced_transaction::*;
pub use client_provided_enriched_transaction::*;
pub use client_provided_raw_transaction::*;
pub use client_provided_transaction::*;
pub use client_provided_transaction_location::*;
pub use connected_application::*;
pub use consent_event::*;
pub use consent_event_code::*;
pub use consent_event_initiator::*;
pub use consent_event_type::*;
pub use consent_events_get_response::*;
pub use consented_account::*;
pub use consumer_dispute::*;
pub use consumer_dispute_category::*;
pub use consumer_report_permissible_purpose::*;
pub use consumer_report_user_identity::*;
pub use counterparty::*;
pub use counterparty_insights::*;
pub use counterparty_type::*;
pub use country_code::*;
pub use cra_bank_income::*;
pub use cra_bank_income_account::*;
pub use cra_bank_income_account_metadata::*;
pub use cra_bank_income_bonus_type::*;
pub use cra_bank_income_cause::*;
pub use cra_bank_income_complete_result::*;
pub use cra_bank_income_complete_webhook::*;
pub use cra_bank_income_create_response::*;
pub use cra_bank_income_employer::*;
pub use cra_bank_income_error_webhook::*;
pub use cra_bank_income_get_response::*;
pub use cra_bank_income_historical_summary::*;
pub use cra_bank_income_item::*;
pub use cra_bank_income_source::*;
pub use cra_bank_income_summary::*;
pub use cra_bank_income_transaction::*;
pub use cra_bank_income_warning::*;
pub use cra_bank_income_warning_code::*;
pub use cra_base_report_create_response::*;
pub use cra_base_report_get_response::*;
pub use cra_check_report_base_report_get_response::*;
pub use cra_check_report_create_response::*;
pub use cra_check_report_failed_webhook::*;
pub use cra_check_report_income_insights_get_response::*;
pub use cra_check_report_network_insights_get_response::*;
pub use cra_check_report_partner_insights_get_options::*;
pub use cra_check_report_partner_insights_get_response::*;
pub use cra_check_report_ready_webhook::*;
pub use cra_income_insights::*;
pub use cra_loan_application::*;
pub use cra_loan_application_decision::*;
pub use cra_loan_closed_status::*;
pub use cra_loan_opened_status::*;
pub use cra_loan_payment_history::*;
pub use cra_loan_payment_schedule::*;
pub use cra_loan_register::*;
pub use cra_loan_register_application::*;
pub use cra_loan_status::*;
pub use cra_loan_status_history_update::*;
pub use cra_loan_type::*;
pub use cra_loan_unregister::*;
pub use cra_loan_unregister_response::*;
pub use cra_loan_update::*;
pub use cra_loans_applications_register_response::*;
pub use cra_loans_register_response::*;
pub use cra_loans_update_response::*;
pub use cra_monitoring_insights_get_response::*;
pub use cra_monitoring_insights_item::*;
pub use cra_monitoring_insights_subscribe_response::*;
pub use cra_monitoring_insights_unsubscribe_response::*;
pub use cra_network_insights_item::*;
pub use cra_network_insights_report::*;
pub use cra_pdf_add_ons::*;
pub use cra_partner_insights::*;
pub use cra_partner_insights_complete_webhook::*;
pub use cra_partner_insights_error_webhook::*;
pub use cra_partner_insights_get_response::*;
pub use cra_partner_insights_item::*;
pub use cra_partner_insights_item_account::*;
pub use cra_partner_insights_item_account_metadata::*;
pub use cra_partner_insights_prism::*;
pub use cra_prediction_interval::*;
pub use credit1099::*;
pub use credit1099_filer::*;
pub use credit1099_payer::*;
pub use credit1099_recipient::*;
pub use credit_ach_class::*;
pub use credit_account_subtype::*;
pub use credit_account_subtypes::*;
pub use credit_amount_with_currency::*;
pub use credit_audit_copy_token_create_response::*;
pub use credit_audit_copy_token_remove_response::*;
pub use credit_audit_copy_token_update_response::*;
pub use credit_bank_employer::*;
pub use credit_bank_employment::*;
pub use credit_bank_employment_get_response::*;
pub use credit_bank_employment_item::*;
pub use credit_bank_employment_report::*;
pub use credit_bank_employment_warning::*;
pub use credit_bank_employment_warning_type::*;
pub use credit_bank_income::*;
pub use credit_bank_income_account::*;
pub use credit_bank_income_account_type::*;
pub use credit_bank_income_category::*;
pub use credit_bank_income_cause::*;
pub use credit_bank_income_error_type::*;
pub use credit_bank_income_get_request_options::*;
pub use credit_bank_income_get_response::*;
pub use credit_bank_income_historical_summary::*;
pub use credit_bank_income_item::*;
pub use credit_bank_income_pay_frequency::*;
pub use credit_bank_income_refresh_request_options::*;
pub use credit_bank_income_refresh_response::*;
pub use credit_bank_income_source::*;
pub use credit_bank_income_summary::*;
pub use credit_bank_income_transaction::*;
pub use credit_bank_income_warning::*;
pub use credit_bank_income_warning_code::*;
pub use credit_bank_income_warning_type::*;
pub use credit_bank_income_webhook_update_response::*;
pub use credit_bank_statement_upload_account_owner::*;
pub use credit_bank_statement_upload_account_owner_address::*;
pub use credit_bank_statement_upload_bank_account::*;
pub use credit_bank_statement_upload_bank_account_period::*;
pub use credit_bank_statement_upload_item::*;
pub use credit_bank_statement_upload_object::*;
pub use credit_bank_statement_upload_transaction::*;
pub use credit_bank_statements_uploads_get_request_options::*;
pub use credit_bank_statements_uploads_get_response::*;
pub use credit_card_liability::*;
pub use credit_category::*;
pub use credit_document_metadata::*;
pub use credit_employer_verification::*;
pub use credit_employment_get_response::*;
pub use credit_employment_item::*;
pub use credit_employment_verification::*;
pub use credit_filter::*;
pub use credit_freddie_mac_asset::*;
pub use credit_freddie_mac_asset_transaction::*;
pub use credit_freddie_mac_asset_transactions::*;
pub use credit_freddie_mac_assets::*;
pub use credit_freddie_mac_individual_name::*;
pub use credit_freddie_mac_loan::*;
pub use credit_freddie_mac_loan_identifiers::*;
pub use credit_freddie_mac_loans::*;
pub use credit_freddie_mac_parties::*;
pub use credit_freddie_mac_party::*;
pub use credit_freddie_mac_party_individual::*;
pub use credit_freddie_mac_reporting_information::*;
pub use credit_freddie_mac_reports_get_response::*;
pub use credit_freddie_mac_service::*;
pub use credit_freddie_mac_services::*;
pub use credit_freddie_mac_verification_of_asset::*;
pub use credit_freddie_mac_verification_of_asset_response::*;
pub use credit_freddie_mac_verification_of_assets_deal::*;
pub use credit_pay_stub::*;
pub use credit_pay_stub_address::*;
pub use credit_pay_stub_deductions::*;
pub use credit_pay_stub_earnings::*;
pub use credit_pay_stub_employee::*;
pub use credit_pay_stub_employer::*;
pub use credit_pay_stub_net_pay::*;
pub use credit_pay_stub_pay_basis_type::*;
pub use credit_payroll_income_get_request_options::*;
pub use credit_payroll_income_get_response::*;
pub use credit_payroll_income_parsing_config_update_response::*;
pub use credit_payroll_income_precheck_response::*;
pub use credit_payroll_income_refresh_request_options::*;
pub use credit_payroll_income_refresh_response::*;
pub use credit_payroll_income_risk_signals_get_response::*;
pub use credit_platform_ids::*;
pub use credit_relay_create_response::*;
pub use credit_relay_refresh_response::*;
pub use credit_relay_remove_response::*;
pub use credit_session::*;
pub use credit_session_bank_employment_result::*;
pub use credit_session_bank_employment_status::*;
pub use credit_session_bank_income_result::*;
pub use credit_session_bank_income_status::*;
pub use credit_session_document_income_result::*;
pub use credit_session_error::*;
pub use credit_session_item_add_result::*;
pub use credit_session_payroll_income_result::*;
pub use credit_session_results::*;
pub use credit_sessions_get_response::*;
pub use credit_w2::*;
pub use customer_initiated_return_risk::*;
pub use dashboard_user::*;
pub use dashboard_user_get_response::*;
pub use dashboard_user_list_response::*;
pub use dashboard_user_status::*;
pub use data_sources::*;
pub use date_range::*;
pub use deductions::*;
pub use deductions_breakdown::*;
pub use deductions_total::*;
pub use default_update_webhook::*;
pub use deposit_switch_address_data::*;
pub use deposit_switch_alt_create_response::*;
pub use deposit_switch_create_request_options::*;
pub use deposit_switch_create_response::*;
pub use deposit_switch_get_response::*;
pub use deposit_switch_state_update_webhook::*;
pub use deposit_switch_target_account::*;
pub use deposit_switch_target_user::*;
pub use deposit_switch_token_create_response::*;
pub use depository_account_subtype::*;
pub use depository_account_subtypes::*;
pub use depository_filter::*;
pub use detailed_originator::*;
pub use detected_account::*;
pub use distribution_breakdown::*;
pub use doc_type::*;
pub use document_analysis::*;
pub use document_authenticity_match_code::*;
pub use document_date_of_birth_match_code::*;
pub use document_metadata::*;
pub use document_name_match_code::*;
pub use document_risk_signal::*;
pub use document_risk_signal_institution_metadata::*;
pub use document_risk_signals_object::*;
pub use document_risk_summary::*;
pub use document_status::*;
pub use documentary_verification::*;
pub use documentary_verification_document::*;
pub use earnings::*;
pub use earnings_breakdown::*;
pub use earnings_breakdown_canonical_description::*;
pub use earnings_total::*;
pub use email::*;
pub use email_address_match_score::*;
pub use employee::*;
pub use employer::*;
pub use employer_verification::*;
pub use employers_search_response::*;
pub use employment_details::*;
pub use employment_source_type::*;
pub use employment_verification::*;
pub use employment_verification_get_response::*;
pub use employment_verification_status::*;
pub use enhancements::*;
pub use enrich_transaction_direction::*;
pub use enrichments::*;
pub use entity_document::*;
pub use entity_document_type::*;
pub use entity_screening_hit_analysis::*;
pub use entity_screening_hit_data::*;
pub use entity_screening_hit_documents_items::*;
pub use entity_screening_hit_emails::*;
pub use entity_screening_hit_emails_items::*;
pub use entity_screening_hit_names::*;
pub use entity_screening_hit_names_items::*;
pub use entity_screening_hit_phone_numbers::*;
pub use entity_screening_hit_urls::*;
pub use entity_screening_hit_urls_items::*;
pub use entity_screening_hits_phone_number_items::*;
pub use entity_screening_status_updated_webhook::*;
pub use entity_watchlist_code::*;
pub use entity_watchlist_program::*;
pub use entity_watchlist_screening::*;
pub use entity_watchlist_screening_hit::*;
pub use entity_watchlist_screening_review::*;
pub use entity_watchlist_screening_search_terms::*;
pub use entity_watchlist_search_terms::*;
pub use expiration_date::*;
pub use extended_recipient_metadata::*;
pub use external_payment_initiation_consent_options::*;
pub use external_payment_options::*;
pub use external_payment_refund_details::*;
pub use external_payment_schedule_base::*;
pub use external_payment_schedule_request::*;
pub use fdx_content_types::*;
pub use fdx_fi_attribute::*;
pub use fdx_hateoas_link::*;
pub use fdx_hateoas_link_action::*;
pub use fdx_notification_category::*;
pub use fdx_notification_payload::*;
pub use fdx_notification_payload_id_type::*;
pub use fdx_notification_priority::*;
pub use fdx_notification_severity::*;
pub use fdx_notification_type::*;
pub use fdx_party::*;
pub use fdx_party_registry::*;
pub use fdx_party_type::*;
pub use fdx_recipient_metadata::*;
pub use fallback_auth_microdeposit_auto_verified_webhook::*;
pub use fallback_auth_microdeposit_verification_expired_webhook::*;
pub use financial_institution_insights::*;
pub use forecasted_monthly_income::*;
pub use form1099_type::*;
pub use fraud_amount::*;
pub use generic_screening_hit_location_items::*;
pub use get_recipient_response::*;
pub use get_recipients_response::*;
pub use health_incident::*;
pub use hidden_match_summary_code::*;
pub use historical_annual_income::*;
pub use historical_balance::*;
pub use historical_update_webhook::*;
pub use holding::*;
pub use holdings_default_update_webhook::*;
pub use holdings_override::*;
pub use hosted_link_delivery_method::*;
pub use hosted_mmd_verification_webhook::*;
pub use id_number_type::*;
pub use iso_currency_code::*;
pub use identity_default_update_webhook::*;
pub use identity_document_upload::*;
pub use identity_document_upload_metadata::*;
pub use identity_document_upload_risk_insights::*;
pub use identity_document_upload_risk_signal::*;
pub use identity_document_upload_risk_summary::*;
pub use identity_documents_uploads_get_request_options::*;
pub use identity_documents_uploads_get_response::*;
pub use identity_get_request_options::*;
pub use identity_get_response::*;
pub use identity_match_request_options::*;
pub use identity_match_response::*;
pub use identity_match_user::*;
pub use identity_refresh_response::*;
pub use identity_update_types::*;
pub use identity_verification::*;
pub use identity_verification_autofill_address::*;
pub use identity_verification_autofill_create_response::*;
pub use identity_verification_autofill_status::*;
pub use identity_verification_autofill_user_data::*;
pub use identity_verification_create_request_user::*;
pub use identity_verification_create_response::*;
pub use identity_verification_document_address_response::*;
pub use identity_verification_document_name_response::*;
pub use identity_verification_get_response::*;
pub use identity_verification_list_response::*;
pub use identity_verification_request_user::*;
pub use identity_verification_request_user_name::*;
pub use identity_verification_response_user_name::*;
pub use identity_verification_retried_webhook::*;
pub use identity_verification_retry_request_steps_object::*;
pub use identity_verification_retry_response::*;
pub use identity_verification_status::*;
pub use identity_verification_status_updated_webhook::*;
pub use identity_verification_step_status::*;
pub use identity_verification_step_summary::*;
pub use identity_verification_step_updated_webhook::*;
pub use identity_verification_template_reference::*;
pub use identity_verification_user_address::*;
pub use identity_verification_user_data::*;
pub use image_quality::*;
pub use incident_update::*;
pub use income_breakdown::*;
pub use income_breakdown_type::*;
pub use income_override::*;
pub use income_sources_counts::*;
pub use income_summary_field_number::*;
pub use income_summary_field_string::*;
pub use income_verification_create_request_options::*;
pub use income_verification_create_response::*;
pub use income_verification_doc_parsing_config::*;
pub use income_verification_payroll_flow_type::*;
pub use income_verification_paystubs_get_response::*;
pub use income_verification_precheck_confidence::*;
pub use income_verification_precheck_employer::*;
pub use income_verification_precheck_employer_address::*;
pub use income_verification_precheck_military_info::*;
pub use income_verification_precheck_payroll_institution::*;
pub use income_verification_precheck_response::*;
pub use income_verification_precheck_user::*;
pub use income_verification_refresh_reconnect_needed_webhook::*;
pub use income_verification_risk_signals_status_webhook::*;
pub use income_verification_source_type::*;
pub use income_verification_status_webhook::*;
pub use income_verification_taxforms_get_response::*;
pub use individual_name::*;
pub use individual_screening_hit_names::*;
pub use individual_watchlist_code::*;
pub use individual_watchlist_program::*;
pub use inflow_model::*;
pub use initial_update_webhook::*;
pub use institution::*;
pub use institution_status::*;
pub use institution_status_alert_webhook::*;
pub use institution_supported_networks::*;
pub use institutions_get_by_id_request_options::*;
pub use institutions_get_by_id_response::*;
pub use institutions_get_request_options::*;
pub use institutions_get_response::*;
pub use institutions_search_payment_initiation_options::*;
pub use institutions_search_request_options::*;
pub use institutions_search_response::*;
pub use investment_account_subtype::*;
pub use investment_account_subtypes::*;
pub use investment_filter::*;
pub use investment_holdings_get_request_options::*;
pub use investment_transaction::*;
pub use investment_transaction_subtype::*;
pub use investment_transaction_type::*;
pub use investments_auth_data_sources::*;
pub use investments_auth_get_numbers::*;
pub use investments_auth_get_request_options::*;
pub use investments_auth_get_response::*;
pub use investments_auth_owner::*;
pub use investments_default_update_webhook::*;
pub use investments_historical_update_webhook::*;
pub use investments_holdings_get_response::*;
pub use investments_refresh_response::*;
pub use investments_transactions_get_request_options::*;
pub use investments_transactions_get_response::*;
pub use investments_transactions_override::*;
pub use issue::*;
pub use issue_resolved_webhook::*;
pub use issues_get_response::*;
pub use issues_search_response::*;
pub use issues_status::*;
pub use issues_subscribe_response::*;
pub use issuing_country::*;
pub use item::*;
pub use item_access_token_invalidate_response::*;
pub use item_activity_list_response::*;
pub use item_add_result_webhook::*;
pub use item_application_list_response::*;
pub use item_application_scopes_update_response::*;
pub use item_application_unlink_response::*;
pub use item_create_authentication::*;
pub use item_error_webhook::*;
pub use item_get_response::*;
pub use item_import_request_options::*;
pub use item_import_request_user_auth::*;
pub use item_import_response::*;
pub use item_login_repaired_webhook::*;
pub use item_product_ready_webhook::*;
pub use item_public_token_create_response::*;
pub use item_public_token_exchange_response::*;
pub use item_remove_response::*;
pub use item_status::*;
pub use item_status_investments::*;
pub use item_status_last_webhook::*;
pub use item_status_transactions::*;
pub use item_webhook_update_response::*;
pub use item_with_consent_fields::*;
pub use jwk_public_key::*;
pub use kyc_check_address_summary::*;
pub use kyc_check_date_of_birth_summary::*;
pub use kyc_check_details::*;
pub use kyc_check_details_international_address::*;
pub use kyc_check_id_number_summary::*;
pub use kyc_check_name_summary::*;
pub use kyc_check_phone_summary::*;
pub use last_data_access_times::*;
pub use liabilities_account_ids_with_updated_liabilities::*;
pub use liabilities_default_update_webhook::*;
pub use liabilities_get_request_options::*;
pub use liabilities_get_response::*;
pub use liabilities_object::*;
pub use liability_override::*;
pub use link_callback_metadata::*;
pub use link_delivery_account::*;
pub use link_delivery_callback_webhook::*;
pub use link_delivery_communication_method::*;
pub use link_delivery_create_response::*;
pub use link_delivery_delivery_method::*;
pub use link_delivery_get_response::*;
pub use link_delivery_institution::*;
pub use link_delivery_metadata::*;
pub use link_delivery_options::*;
pub use link_delivery_recipient::*;
pub use link_delivery_session_status::*;
pub use link_delivery_verification_status::*;
pub use link_delivery_webhook_callback_type::*;
pub use link_delivery_webhook_communication_method::*;
pub use link_delivery_webhook_delivery_status::*;
pub use link_event::*;
pub use link_event_metadata::*;
pub use link_event_name::*;
pub use link_events_webhook::*;
pub use link_o_auth_correlation_id_exchange_response::*;
pub use link_profile_eligibility_check_response::*;
pub use link_profile_eligibility_check_user::*;
pub use link_session_bank_income_result::*;
pub use link_session_cra_item_add_result::*;
pub use link_session_exit::*;
pub use link_session_exit_deprecated::*;
pub use link_session_exit_metadata::*;
pub use link_session_exit_metadata_institution::*;
pub use link_session_finished_webhook::*;
pub use link_session_item_add_result::*;
pub use link_session_payroll_income_result::*;
pub use link_session_results::*;
pub use link_session_success::*;
pub use link_session_success_metadata::*;
pub use link_session_success_metadata_account::*;
pub use link_session_success_metadata_institution::*;
pub use link_session_success_metadata_transfer_status::*;
pub use link_token_account_filters::*;
pub use link_token_create_card_switch::*;
pub use link_token_create_hosted_link::*;
pub use link_token_create_identity::*;
pub use link_token_create_institution_data::*;
pub use link_token_create_request_auth::*;
pub use link_token_create_request_base_report::*;
pub use link_token_create_request_cra_options::*;
pub use link_token_create_request_cra_options_base_report::*;
pub use link_token_create_request_cra_options_cashflow_insights::*;
pub use link_token_create_request_cra_options_partner_insights::*;
pub use link_token_create_request_credit_partner_insights::*;
pub use link_token_create_request_deposit_switch::*;
pub use link_token_create_request_employment::*;
pub use link_token_create_request_employment_bank_income::*;
pub use link_token_create_request_identity_verification::*;
pub use link_token_create_request_income_verification::*;
pub use link_token_create_request_income_verification_bank_income::*;
pub use link_token_create_request_income_verification_payroll_income::*;
pub use link_token_create_request_payment_configuration::*;
pub use link_token_create_request_payment_initiation::*;
pub use link_token_create_request_statements::*;
pub use link_token_create_request_transfer::*;
pub use link_token_create_request_update::*;
pub use link_token_create_request_user::*;
pub use link_token_create_request_user_stated_income_source::*;
pub use link_token_create_response::*;
pub use link_token_eu_config::*;
pub use link_token_get_metadata_response::*;
pub use link_token_get_response::*;
pub use link_token_get_sessions_response::*;
pub use link_token_investments::*;
pub use link_token_investments_auth::*;
pub use link_token_transactions::*;
pub use link_user_delivery_status_webhook::*;
pub use loan::*;
pub use loan_account_subtype::*;
pub use loan_account_subtypes::*;
pub use loan_filter::*;
pub use loan_identifier::*;
pub use loan_identifier_type::*;
pub use loan_identifiers::*;
pub use loan_payments_counts::*;
pub use loan_payments_merchant_counts::*;
pub use loans::*;
pub use location::*;
pub use match_summary::*;
pub use match_summary_code::*;
pub use merchant_insights::*;
pub use meta::*;
pub use monitoring_consumer_report_permissible_purpose::*;
pub use monitoring_income_insights::*;
pub use monitoring_income_source::*;
pub use monitoring_insights::*;
pub use monitoring_insights_item_status::*;
pub use monitoring_insights_status::*;
pub use monitoring_insights_webhook::*;
pub use monitoring_item_status_code::*;
pub use monitoring_loan_insights::*;
pub use mortgage_interest_rate::*;
pub use mortgage_liability::*;
pub use mortgage_property_address::*;
pub use multi_document_risk_signal::*;
pub use name_match_score::*;
pub use net_pay::*;
pub use network_insights_item::*;
pub use network_insights_report::*;
pub use network_insights_report_get_response::*;
pub use network_insights_schema::*;
pub use new_accounts_available_webhook::*;
pub use numbers::*;
pub use numbers_acats::*;
pub use numbers_ach::*;
pub use numbers_aton::*;
pub use numbers_bacs::*;
pub use numbers_eft::*;
pub use numbers_international::*;
pub use numbers_international_iban::*;
pub use omittable_transfer_type::*;
pub use option_contract::*;
pub use originator::*;
pub use originator_expected_transfer_frequency::*;
pub use other_account_subtype::*;
pub use other_account_subtypes::*;
pub use other_filter::*;
pub use override_account_type::*;
pub use owner::*;
pub use owner_override::*;
pub use ownership_type::*;
pub use po_box_status::*;
pub use pslf_status::*;
pub use parties::*;
pub use partner_customer_create_response::*;
pub use partner_customer_enable_response::*;
pub use partner_customer_get_response::*;
pub use partner_customer_o_auth_institutions_get_response::*;
pub use partner_customer_remove_response::*;
pub use partner_end_customer::*;
pub use partner_end_customer_address::*;
pub use partner_end_customer_assets_under_management::*;
pub use partner_end_customer_billing_contact::*;
pub use partner_end_customer_customer_support_info::*;
pub use partner_end_customer_flowdown_status::*;
pub use partner_end_customer_o_auth_institution::*;
pub use partner_end_customer_o_auth_institution_application_status::*;
pub use partner_end_customer_o_auth_institution_environments::*;
pub use partner_end_customer_o_auth_status_updated_values::*;
pub use partner_end_customer_o_auth_status_updated_webhook::*;
pub use partner_end_customer_questionnaire_status::*;
pub use partner_end_customer_status::*;
pub use partner_end_customer_technical_contact::*;
pub use partner_end_customer_with_secrets::*;
pub use party::*;
pub use party_individual::*;
pub use party_role_type::*;
pub use pay::*;
pub use pay_frequency_value::*;
pub use pay_period_details::*;
pub use pay_period_details_pay_frequency::*;
pub use pay_stub_deductions_breakdown::*;
pub use pay_stub_deductions_total::*;
pub use pay_stub_distribution_breakdown::*;
pub use pay_stub_earnings_breakdown::*;
pub use pay_stub_earnings_total::*;
pub use pay_stub_pay_period_details::*;
pub use pay_stub_taxpayer_id::*;
pub use payment_amount::*;
pub use payment_amount_currency::*;
pub use payment_amount_nullable::*;
pub use payment_amount_refunded::*;
pub use payment_amount_to_refund::*;
pub use payment_channel::*;
pub use payment_consent_max_payment_amount::*;
pub use payment_consent_periodic_alignment::*;
pub use payment_consent_periodic_amount::*;
pub use payment_consent_periodic_amount_amount::*;
pub use payment_consent_periodic_interval::*;
pub use payment_consent_valid_date_time::*;
pub use payment_initiation_address::*;
pub use payment_initiation_consent_constraints::*;
pub use payment_initiation_consent_create_response::*;
pub use payment_initiation_consent_get_response::*;
pub use payment_initiation_consent_payer_details::*;
pub use payment_initiation_consent_payer_numbers::*;
pub use payment_initiation_consent_payment_execute_response::*;
pub use payment_initiation_consent_processing_mode::*;
pub use payment_initiation_consent_revoke_response::*;
pub use payment_initiation_consent_scope::*;
pub use payment_initiation_consent_status::*;
pub use payment_initiation_consent_type::*;
pub use payment_initiation_maximum_payment_amount::*;
pub use payment_initiation_metadata::*;
pub use payment_initiation_payment::*;
pub use payment_initiation_payment_create_response::*;
pub use payment_initiation_payment_create_status::*;
pub use payment_initiation_payment_get_response::*;
pub use payment_initiation_payment_list_response::*;
pub use payment_initiation_payment_reverse_response::*;
pub use payment_initiation_payment_status::*;
pub use payment_initiation_payment_token_create_response::*;
pub use payment_initiation_recipient::*;
pub use payment_initiation_recipient_create_response::*;
pub use payment_initiation_recipient_get_response::*;
pub use payment_initiation_recipient_list_response::*;
pub use payment_initiation_standing_order_metadata::*;
pub use payment_meta::*;
pub use payment_profile_create_response::*;
pub use payment_profile_get_response::*;
pub use payment_profile_remove_response::*;
pub use payment_profile_status::*;
pub use payment_schedule_interval::*;
pub use payment_scheme::*;
pub use payment_status_update_webhook::*;
pub use payroll_income_account_data::*;
pub use payroll_income_object::*;
pub use payroll_income_rate_of_pay::*;
pub use payroll_item::*;
pub use payroll_item_status::*;
pub use payroll_risk_signals_item::*;
pub use paystub::*;
pub use paystub_address::*;
pub use paystub_details::*;
pub use paystub_employer::*;
pub use paystub_override::*;
pub use paystub_override_deductions::*;
pub use paystub_override_deductions_breakdown::*;
pub use paystub_override_deductions_total::*;
pub use paystub_override_distribution_breakdown::*;
pub use paystub_override_earnings::*;
pub use paystub_override_earnings_breakdown::*;
pub use paystub_override_earnings_total::*;
pub use paystub_override_employee::*;
pub use paystub_override_employee_address::*;
pub use paystub_override_employer::*;
pub use paystub_override_employer_address::*;
pub use paystub_override_net_pay::*;
pub use paystub_override_pay_period_details::*;
pub use paystub_override_taxpayer_id::*;
pub use paystub_pay_frequency::*;
pub use paystub_ytd_details::*;
pub use pending_disconnect_webhook::*;
pub use pending_disconnect_webhook_reason::*;
pub use pending_expiration_webhook::*;
pub use personal_finance_category::*;
pub use phone_number::*;
pub use phone_number_match_score::*;
pub use phone_type::*;
pub use physical_document_category::*;
pub use physical_document_extracted_data::*;
pub use physical_document_extracted_data_analysis::*;
pub use physical_document_images::*;
pub use plaid_error::*;
pub use plaid_error_type::*;
pub use platform_ids::*;
pub use prism_cash_score::*;
pub use prism_cash_score_metadata::*;
pub use prism_cash_score_version::*;
pub use prism_first_detect::*;
pub use prism_first_detect_version::*;
pub use prism_insights::*;
pub use prism_insights_result::*;
pub use prism_insights_version::*;
pub use prism_product::*;
pub use prism_versions::*;
pub use processor_account_get_response::*;
pub use processor_auth_get_response::*;
pub use processor_balance_get_request_options::*;
pub use processor_balance_get_response::*;
pub use processor_bank_transfer_create_response::*;
pub use processor_default_update_webhook::*;
pub use processor_historical_update_webhook::*;
pub use processor_identity_get_response::*;
pub use processor_identity_match_response::*;
pub use processor_initial_update_webhook::*;
pub use processor_liabilities_get_response::*;
pub use processor_number::*;
pub use processor_recurring_transactions_update_webhook::*;
pub use processor_signal_decision_report_response::*;
pub use processor_signal_evaluate_response::*;
pub use processor_signal_prepare_response::*;
pub use processor_signal_return_report_response::*;
pub use processor_stripe_bank_account_token_create_response::*;
pub use processor_sync_updates_available_webhook::*;
pub use processor_token_create_response::*;
pub use processor_token_permissions_get_response::*;
pub use processor_token_permissions_set_response::*;
pub use processor_token_webhook_update_response::*;
pub use processor_transactions_get_request_options::*;
pub use processor_transactions_get_response::*;
pub use processor_transactions_recurring_get_response::*;
pub use processor_transactions_refresh_response::*;
pub use processor_transactions_removed_webhook::*;
pub use processor_transactions_sync_response::*;
pub use product_access::*;
pub use product_permissions_required_auth_webhook::*;
pub use product_permissions_required_identity_webhook::*;
pub use product_status::*;
pub use product_status_breakdown::*;
pub use products::*;
pub use profile_get_response::*;
pub use profile_identity::*;
pub use profile_identity_address::*;
pub use profile_identity_name::*;
pub use profile_item::*;
pub use profile_network_status_get_network_status::*;
pub use profile_network_status_get_response::*;
pub use profile_network_status_get_user::*;
pub use program_name_sensitivity::*;
pub use proxy_type::*;
pub use recipient_bacs::*;
pub use recipient_bacs_nullable::*;
pub use recurrence::*;
pub use recurring_cancelled_webhook::*;
pub use recurring_frequency::*;
pub use recurring_insights_stream::*;
pub use recurring_new_transfer_webhook::*;
pub use recurring_transaction_frequency::*;
pub use recurring_transactions::*;
pub use recurring_transactions_update_webhook::*;
pub use recurring_transfer::*;
pub use recurring_transfer_nullable::*;
pub use recurring_transfer_skipped_webhook::*;
pub use removed_transaction::*;
pub use report_type::*;
pub use reporting_information::*;
pub use risk_check_behavior::*;
pub use risk_check_behavior_bot_detected_label::*;
pub use risk_check_behavior_fraud_ring_detected_label::*;
pub use risk_check_behavior_user_interactions_label::*;
pub use risk_check_details::*;
pub use risk_check_device::*;
pub use risk_check_email::*;
pub use risk_check_email_domain_is_custom::*;
pub use risk_check_email_domain_is_disposable::*;
pub use risk_check_email_domain_is_free_provider::*;
pub use risk_check_email_is_deliverable_status::*;
pub use risk_check_email_top_level_domain_is_suspicious::*;
pub use risk_check_identity_abuse_signals::*;
pub use risk_check_linked_service::*;
pub use risk_check_phone::*;
pub use risk_check_stolen_identity::*;
pub use risk_check_synthetic_identity::*;
pub use risk_profile::*;
pub use risk_reason::*;
pub use risk_signal_document_reference::*;
pub use risk_signal_document_status::*;
pub use risk_signal_document_type::*;
pub use risk_signal_file_type::*;
pub use role::*;
pub use role_detail::*;
pub use roles::*;
pub use ruleset::*;
pub use sms_verification::*;
pub use sms_verification_status::*;
pub use sandbox_bank_income_fire_webhook_response::*;
pub use sandbox_bank_income_webhook_fire_request_webhook_code::*;
pub use sandbox_bank_income_webhook_fire_request_webhook_fields::*;
pub use sandbox_bank_transfer_fire_webhook_response::*;
pub use sandbox_bank_transfer_simulate_response::*;
pub use sandbox_income_fire_webhook_response::*;
pub use sandbox_income_webhook_fire_request_webhook_code::*;
pub use sandbox_item_fire_webhook_response::*;
pub use sandbox_item_reset_login_response::*;
pub use sandbox_item_set_verification_status_response::*;
pub use sandbox_oauth_select_accounts_response::*;
pub use sandbox_payment_profile_reset_login_response::*;
pub use sandbox_processor_token_create_request_options::*;
pub use sandbox_processor_token_create_response::*;
pub use sandbox_public_token_create_request_income_verification_bank_income::*;
pub use sandbox_public_token_create_request_options::*;
pub use sandbox_public_token_create_request_options_income_verification::*;
pub use sandbox_public_token_create_request_options_statements::*;
pub use sandbox_public_token_create_request_options_transactions::*;
pub use sandbox_public_token_create_response::*;
pub use sandbox_transfer_fire_webhook_response::*;
pub use sandbox_transfer_ledger_deposit_simulate_response::*;
pub use sandbox_transfer_ledger_simulate_available_response::*;
pub use sandbox_transfer_ledger_withdraw_simulate_response::*;
pub use sandbox_transfer_refund_simulate_response::*;
pub use sandbox_transfer_repayment_simulate_response::*;
pub use sandbox_transfer_simulate_response::*;
pub use sandbox_transfer_sweep_simulate_response::*;
pub use sandbox_transfer_test_clock_advance_response::*;
pub use sandbox_transfer_test_clock_create_response::*;
pub use sandbox_transfer_test_clock_get_response::*;
pub use sandbox_transfer_test_clock_list_response::*;
pub use sandbox_user_reset_login_response::*;
pub use scopes::*;
pub use scopes_context::*;
pub use screening_hit_analysis::*;
pub use screening_hit_data::*;
pub use screening_hit_date_of_birth_item::*;
pub use screening_hit_documents_items::*;
pub use screening_hit_names_items::*;
pub use screening_status_updated_webhook::*;
pub use security::*;
pub use security_override::*;
pub use selfie_analysis::*;
pub use selfie_analysis_document_comparison::*;
pub use selfie_analysis_facial_analysis::*;
pub use selfie_analysis_facial_analysis_outcome::*;
pub use selfie_analysis_liveness_check::*;
pub use selfie_capture::*;
pub use selfie_check::*;
pub use selfie_check_selfie::*;
pub use selfie_check_status::*;
pub use selfie_status::*;
pub use service::*;
pub use service_product_fulfillment::*;
pub use service_product_fulfillment_detail::*;
pub use service_product_fulfillment_identifier::*;
pub use servicer_address_data::*;
pub use services::*;
pub use signal_address_data::*;
pub use signal_decision_outcome::*;
pub use signal_decision_report_response::*;
pub use signal_device::*;
pub use signal_evaluate_core_attributes::*;
pub use signal_evaluate_response::*;
pub use signal_payment_method::*;
pub use signal_person_name::*;
pub use signal_prepare_response::*;
pub use signal_return_report_response::*;
pub use signal_scores::*;
pub use signal_user::*;
pub use signal_warning::*;
pub use simulated_transfer_sweep::*;
pub use single_document_risk_signal::*;
pub use source::*;
pub use statements_account::*;
pub use statements_list_response::*;
pub use statements_refresh_complete_result::*;
pub use statements_refresh_complete_webhook::*;
pub use statements_refresh_response::*;
pub use statements_statement::*;
pub use status::*;
pub use statuses::*;
pub use strategy::*;
pub use student_loan::*;
pub use student_loan_repayment_model::*;
pub use student_loan_status::*;
pub use student_repayment_plan::*;
pub use sweep_status::*;
pub use sweep_trigger::*;
pub use sync_updates_available_webhook::*;
pub use taxform::*;
pub use taxpayer_id::*;
pub use taxpayer_identifier::*;
pub use taxpayer_identifier_type::*;
pub use taxpayer_identifiers::*;
pub use total::*;
pub use total_canonical_description::*;
pub use total_inflow_amount::*;
pub use total_inflow_amount30_d::*;
pub use total_inflow_amount60_d::*;
pub use total_inflow_amount90_d::*;
pub use total_monthly_income_insights::*;
pub use total_outflow_amount::*;
pub use total_outflow_amount30_d::*;
pub use total_outflow_amount60_d::*;
pub use total_outflow_amount90_d::*;
pub use transaction::*;
pub use transaction_base::*;
pub use transaction_code::*;
pub use transaction_counterparty::*;
pub use transaction_override::*;
pub use transaction_stream::*;
pub use transaction_stream_amount::*;
pub use transaction_stream_status::*;
pub use transactions_category_rule::*;
pub use transactions_enhance_get_response::*;
pub use transactions_enrich_request_options::*;
pub use transactions_enrich_response::*;
pub use transactions_get_request_options::*;
pub use transactions_get_response::*;
pub use transactions_recurring_get_request_options::*;
pub use transactions_recurring_get_response::*;
pub use transactions_refresh_response::*;
pub use transactions_removed_webhook::*;
pub use transactions_rule_details::*;
pub use transactions_rule_field::*;
pub use transactions_rule_type::*;
pub use transactions_rules_create_response::*;
pub use transactions_rules_list_response::*;
pub use transactions_rules_remove_response::*;
pub use transactions_sync_request_options::*;
pub use transactions_sync_response::*;
pub use transactions_update_status::*;
pub use transactions_user_insights_get_response::*;
pub use transfer::*;
pub use transfer_ach_network::*;
pub use transfer_authorization::*;
pub use transfer_authorization_cancel_response::*;
pub use transfer_authorization_create_response::*;
pub use transfer_authorization_decision::*;
pub use transfer_authorization_decision_rationale::*;
pub use transfer_authorization_decision_rationale_code::*;
pub use transfer_authorization_device::*;
pub use transfer_authorization_guarantee_decision::*;
pub use transfer_authorization_guarantee_decision_rationale::*;
pub use transfer_authorization_guarantee_decision_rationale_code::*;
pub use transfer_authorization_payment_risk::*;
pub use transfer_authorization_proposed_transfer::*;
pub use transfer_authorization_risk_level::*;
pub use transfer_authorization_user_in_request::*;
pub use transfer_balance::*;
pub use transfer_balance_get_response::*;
pub use transfer_balance_type::*;
pub use transfer_cancel_response::*;
pub use transfer_capabilities_get_rtp::*;
pub use transfer_capabilities_get_response::*;
pub use transfer_configuration_get_response::*;
pub use transfer_create_response::*;
pub use transfer_credit_funds_source::*;
pub use transfer_credit_usage_configuration::*;
pub use transfer_debit_usage_configuration::*;
pub use transfer_device::*;
pub use transfer_diligence_document_upload_response::*;
pub use transfer_diligence_status::*;
pub use transfer_diligence_submit_response::*;
pub use transfer_document_purpose::*;
pub use transfer_event::*;
pub use transfer_event_list_response::*;
pub use transfer_event_list_transfer_type::*;
pub use transfer_event_sync_response::*;
pub use transfer_event_type::*;
pub use transfer_events_update_webhook::*;
pub use transfer_expected_sweep_settlement_schedule_item::*;
pub use transfer_failure::*;
pub use transfer_funding_account::*;
pub use transfer_get_response::*;
pub use transfer_intent_authorization_decision::*;
pub use transfer_intent_create::*;
pub use transfer_intent_create_mode::*;
pub use transfer_intent_create_network::*;
pub use transfer_intent_create_response::*;
pub use transfer_intent_get::*;
pub use transfer_intent_get_failure_reason::*;
pub use transfer_intent_get_response::*;
pub use transfer_intent_status::*;
pub use transfer_ledger_balance::*;
pub use transfer_ledger_deposit_response::*;
pub use transfer_ledger_distribute_response::*;
pub use transfer_ledger_get_response::*;
pub use transfer_ledger_sweep_simulate_event_type::*;
pub use transfer_ledger_withdraw_response::*;
pub use transfer_list_response::*;
pub use transfer_metadata::*;
pub use transfer_metrics_get_authorization_usage::*;
pub use transfer_metrics_get_response::*;
pub use transfer_metrics_get_return_rates::*;
pub use transfer_metrics_get_return_rates_over_interval::*;
pub use transfer_migrate_account_response::*;
pub use transfer_network::*;
pub use transfer_originator_address::*;
pub use transfer_originator_create_response::*;
pub use transfer_originator_diligence::*;
pub use transfer_originator_funding_account_update_response::*;
pub use transfer_originator_get_response::*;
pub use transfer_originator_list_response::*;
pub use transfer_platform_originator_create_response::*;
pub use transfer_platform_person_address::*;
pub use transfer_platform_person_create_response::*;
pub use transfer_platform_person_id_number::*;
pub use transfer_platform_person_name::*;
pub use transfer_platform_requirement::*;
pub use transfer_platform_requirement_submission::*;
pub use transfer_platform_requirement_submit_response::*;
pub use transfer_platform_tos_acceptance_metadata::*;
pub use transfer_questionnaire_create_response::*;
pub use transfer_recurring_cancel_response::*;
pub use transfer_recurring_create_response::*;
pub use transfer_recurring_get_response::*;
pub use transfer_recurring_list_response::*;
pub use transfer_recurring_network::*;
pub use transfer_recurring_schedule::*;
pub use transfer_recurring_status::*;
pub use transfer_refund::*;
pub use transfer_refund_cancel_response::*;
pub use transfer_refund_create_response::*;
pub use transfer_refund_failure::*;
pub use transfer_refund_get_response::*;
pub use transfer_refund_status::*;
pub use transfer_repayment::*;
pub use transfer_repayment_list_response::*;
pub use transfer_repayment_return::*;
pub use transfer_repayment_return_list_response::*;
pub use transfer_schedule_interval_unit::*;
pub use transfer_status::*;
pub use transfer_sweep::*;
pub use transfer_sweep_get_response::*;
pub use transfer_sweep_list_response::*;
pub use transfer_sweep_status::*;
pub use transfer_test_clock::*;
pub use transfer_type::*;
pub use transfer_user_address_in_request::*;
pub use transfer_user_address_in_response::*;
pub use transfer_user_in_request::*;
pub use transfer_user_in_request_deprecated::*;
pub use transfer_user_in_response::*;
pub use transfer_wire_details::*;
pub use update_entity_screening_request_search_terms::*;
pub use update_individual_screening_request_search_terms::*;
pub use user_account_identity::*;
pub use user_account_identity_address::*;
pub use user_account_identity_name::*;
pub use user_account_item::*;
pub use user_account_revoked_webhook::*;
pub use user_account_session_get_response::*;
pub use user_address::*;
pub use user_create_response::*;
pub use user_data_overview::*;
pub use user_id_number::*;
pub use user_items_get_response::*;
pub use user_permission_revoked_webhook::*;
pub use user_remove_response::*;
pub use user_stated_income_source_category::*;
pub use user_stated_income_source_frequency::*;
pub use user_stated_income_source_pay_type::*;
pub use user_third_party_token_create_response::*;
pub use user_third_party_token_remove_response::*;
pub use user_update_response::*;
pub use validation_source::*;
pub use validation_sources::*;
pub use verification_expired_webhook::*;
pub use verification_of_asset::*;
pub use verification_of_asset_response::*;
pub use verification_status::*;
pub use verify_sms_details::*;
pub use verify_sms_details_status::*;
pub use w2::*;
pub use w2_box12::*;
pub use w2_box12_override::*;
pub use w2_override::*;
pub use w2_state_and_local_wages::*;
pub use w2_state_and_local_wages_override::*;
pub use wallet::*;
pub use wallet_balance::*;
pub use wallet_create_response::*;
pub use wallet_get_response::*;
pub use wallet_iso_currency_code::*;
pub use wallet_list_response::*;
pub use wallet_numbers::*;
pub use wallet_payment_scheme::*;
pub use wallet_status::*;
pub use wallet_transaction::*;
pub use wallet_transaction_amount::*;
pub use wallet_transaction_counterparty::*;
pub use wallet_transaction_counterparty_bacs::*;
pub use wallet_transaction_counterparty_international::*;
pub use wallet_transaction_counterparty_numbers::*;
pub use wallet_transaction_execute_response::*;
pub use wallet_transaction_failure_reason::*;
pub use wallet_transaction_get_response::*;
pub use wallet_transaction_list_request_options::*;
pub use wallet_transaction_list_response::*;
pub use wallet_transaction_relation::*;
pub use wallet_transaction_status::*;
pub use wallet_transaction_status_update_webhook::*;
pub use warning::*;
pub use watchlist_screening_audit_trail::*;
pub use watchlist_screening_document::*;
pub use watchlist_screening_document_type::*;
pub use watchlist_screening_entity_create_response::*;
pub use watchlist_screening_entity_get_response::*;
pub use watchlist_screening_entity_history_list_response::*;
pub use watchlist_screening_entity_hit_list_response::*;
pub use watchlist_screening_entity_list_response::*;
pub use watchlist_screening_entity_program_get_response::*;
pub use watchlist_screening_entity_program_list_response::*;
pub use watchlist_screening_entity_review_create_response::*;
pub use watchlist_screening_entity_review_list_response::*;
pub use watchlist_screening_entity_update_request_resettable_field::*;
pub use watchlist_screening_entity_update_request_resettable_field_list::*;
pub use watchlist_screening_entity_update_response::*;
pub use watchlist_screening_hit::*;
pub use watchlist_screening_hit_locations::*;
pub use watchlist_screening_hit_status::*;
pub use watchlist_screening_individual::*;
pub use watchlist_screening_individual_create_response::*;
pub use watchlist_screening_individual_get_response::*;
pub use watchlist_screening_individual_history_list_response::*;
pub use watchlist_screening_individual_hit_list_response::*;
pub use watchlist_screening_individual_list_response::*;
pub use watchlist_screening_individual_program_get_response::*;
pub use watchlist_screening_individual_program_list_response::*;
pub use watchlist_screening_individual_review_create_response::*;
pub use watchlist_screening_individual_review_list_response::*;
pub use watchlist_screening_individual_update_request_resettable_field::*;
pub use watchlist_screening_individual_update_request_resettable_field_list::*;
pub use watchlist_screening_individual_update_response::*;
pub use watchlist_screening_request_search_terms::*;
pub use watchlist_screening_review::*;
pub use watchlist_screening_search_terms::*;
pub use watchlist_screening_status::*;
pub use weak_alias_determination::*;
pub use webhook_environment_values::*;
pub use webhook_type::*;
pub use webhook_update_acknowledged_webhook::*;
pub use webhook_verification_key_get_response::*;
mod ach_class;
mod apr;
mod account_access;
mod account_assets;
mod account_balance;
mod account_base;
mod account_filters_response;
mod account_holder_category;
mod account_identity;
mod account_identity_document_upload;
mod account_identity_match_score;
mod account_ids_with_updated_auth;
mod account_ids_with_updated_identity;
mod account_product_access;
mod account_subtype;
mod account_type;
mod account_verification_insights;
mod account_verification_insights_account_number_format;
mod account_verification_insights_network_status;
mod account_verification_insights_previous_returns;
mod accounts_balance_get_request_options;
mod accounts_balance_get_request_payment_details;
mod accounts_balance_get_response_payment_risk_assessment;
mod accounts_get_request_options;
mod accounts_get_response;
mod action_state;
mod activity;
mod activity_type;
mod address;
mod address_data;
mod address_data_not_required;
mod address_match_score;
mod address_purpose_label;
mod application;
mod application_get_response;
mod asset;
mod asset_detail;
mod asset_holder;
mod asset_holder_name;
mod asset_owner;
mod asset_owners;
mod asset_report;
mod asset_report_account_balance;
mod asset_report_add_ons;
mod asset_report_audit_copy_create_response;
mod asset_report_audit_copy_remove_response;
mod asset_report_create_request_options;
mod asset_report_create_response;
mod asset_report_filter_response;
mod asset_report_freddie;
mod asset_report_freddie_get_response;
mod asset_report_get_request_options;
mod asset_report_get_response;
mod asset_report_investments;
mod asset_report_item;
mod asset_report_pdf_get_request_options;
mod asset_report_refresh_request_options;
mod asset_report_refresh_response;
mod asset_report_remove_response;
mod asset_report_transaction;
mod asset_report_transaction_type;
mod asset_report_type;
mod asset_report_user;
mod asset_transaction;
mod asset_transaction_category_type;
mod asset_transaction_description;
mod asset_transaction_detail;
mod asset_transaction_type;
mod asset_transactions;
mod asset_type;
mod assets;
mod assets_error_webhook;
mod assets_product_ready_webhook;
mod auth_default_update_webhook;
mod auth_get_numbers;
mod auth_get_request_options;
mod auth_get_response;
mod auth_metadata;
mod auth_supported_methods;
mod auth_update_types;
mod automatically_verified_webhook;
mod balance_plus_attributes;
mod balance_plus_risk_level;
mod bank_income_complete_result;
mod bank_income_complete_webhook;
mod bank_income_refresh_complete_result;
mod bank_income_refresh_complete_webhook;
mod bank_income_refresh_update_webhook;
mod bank_initiated_return_risk;
mod bank_transfer;
mod bank_transfer_balance;
mod bank_transfer_balance_get_response;
mod bank_transfer_cancel_response;
mod bank_transfer_create_response;
mod bank_transfer_direction;
mod bank_transfer_event;
mod bank_transfer_event_list_bank_transfer_type;
mod bank_transfer_event_list_direction;
mod bank_transfer_event_list_response;
mod bank_transfer_event_sync_response;
mod bank_transfer_event_type;
mod bank_transfer_failure;
mod bank_transfer_get_response;
mod bank_transfer_list_response;
mod bank_transfer_metadata;
mod bank_transfer_migrate_account_response;
mod bank_transfer_network;
mod bank_transfer_status;
mod bank_transfer_sweep;
mod bank_transfer_sweep_get_response;
mod bank_transfer_sweep_list_response;
mod bank_transfer_type;
mod bank_transfer_user;
mod bank_transfers_events_update_webhook;
mod base_report;
mod base_report_account;
mod base_report_account_balances;
mod base_report_account_insights;
mod base_report_account_metadata;
mod base_report_attributes;
mod base_report_average_flow_insights;
mod base_report_average_monthly_balances;
mod base_report_historical_balance;
mod base_report_item;
mod base_report_longest_gap_insights;
mod base_report_number_flow_insights;
mod base_report_transaction;
mod base_report_transaction_type;
mod base_report_warning;
mod base_report_warning_code;
mod base_reports_error_webhook;
mod base_reports_product_ready_webhook;
mod beacon_account_risk_attributes;
mod beacon_account_risk_evaluate_account;
mod beacon_account_risk_evaluate_account_attributes;
mod beacon_account_risk_evaluate_evaluation_reason;
mod beacon_account_risk_evaluate_request_options;
mod beacon_account_risk_evaluate_response;
mod beacon_audit_trail;
mod beacon_audit_trail_source;
mod beacon_bank_account_insights;
mod beacon_bank_accounts;
mod beacon_duplicate_detected_webhook;
mod beacon_duplicate_get_response;
mod beacon_match_summary_analysis;
mod beacon_match_summary_code;
mod beacon_report;
mod beacon_report_create_response;
mod beacon_report_create_type;
mod beacon_report_created_webhook;
mod beacon_report_get_response;
mod beacon_report_list_response;
mod beacon_report_syndication;
mod beacon_report_syndication_analysis;
mod beacon_report_syndication_created_webhook;
mod beacon_report_syndication_get_response;
mod beacon_report_syndication_list_response;
mod beacon_report_syndication_original_report;
mod beacon_report_type;
mod beacon_report_updated_webhook;
mod beacon_syndicated_report_depository_account_match_analysis;
mod beacon_user;
mod beacon_user_account_insights_get_response;
mod beacon_user_address;
mod beacon_user_create_response;
mod beacon_user_data;
mod beacon_user_depository_account;
mod beacon_user_get_response;
mod beacon_user_history_list_response;
mod beacon_user_id_number;
mod beacon_user_name;
mod beacon_user_name_nullable;
mod beacon_user_request_address;
mod beacon_user_request_address_nullable;
mod beacon_user_request_data;
mod beacon_user_request_depository_account;
mod beacon_user_revision;
mod beacon_user_status;
mod beacon_user_status_updated_webhook;
mod beacon_user_update_request_data;
mod beacon_user_update_response;
mod cashflow_attributes_version;
mod categories_get_response;
mod category;
mod category_insight_details;
mod category_insights;
mod cause;
mod client_provided_enhanced_transaction;
mod client_provided_enriched_transaction;
mod client_provided_raw_transaction;
mod client_provided_transaction;
mod client_provided_transaction_location;
mod connected_application;
mod consent_event;
mod consent_event_code;
mod consent_event_initiator;
mod consent_event_type;
mod consent_events_get_response;
mod consented_account;
mod consumer_dispute;
mod consumer_dispute_category;
mod consumer_report_permissible_purpose;
mod consumer_report_user_identity;
mod counterparty;
mod counterparty_insights;
mod counterparty_type;
mod country_code;
mod cra_bank_income;
mod cra_bank_income_account;
mod cra_bank_income_account_metadata;
mod cra_bank_income_bonus_type;
mod cra_bank_income_cause;
mod cra_bank_income_complete_result;
mod cra_bank_income_complete_webhook;
mod cra_bank_income_create_response;
mod cra_bank_income_employer;
mod cra_bank_income_error_webhook;
mod cra_bank_income_get_response;
mod cra_bank_income_historical_summary;
mod cra_bank_income_item;
mod cra_bank_income_source;
mod cra_bank_income_summary;
mod cra_bank_income_transaction;
mod cra_bank_income_warning;
mod cra_bank_income_warning_code;
mod cra_base_report_create_response;
mod cra_base_report_get_response;
mod cra_check_report_base_report_get_response;
mod cra_check_report_create_response;
mod cra_check_report_failed_webhook;
mod cra_check_report_income_insights_get_response;
mod cra_check_report_network_insights_get_response;
mod cra_check_report_partner_insights_get_options;
mod cra_check_report_partner_insights_get_response;
mod cra_check_report_ready_webhook;
mod cra_income_insights;
mod cra_loan_application;
mod cra_loan_application_decision;
mod cra_loan_closed_status;
mod cra_loan_opened_status;
mod cra_loan_payment_history;
mod cra_loan_payment_schedule;
mod cra_loan_register;
mod cra_loan_register_application;
mod cra_loan_status;
mod cra_loan_status_history_update;
mod cra_loan_type;
mod cra_loan_unregister;
mod cra_loan_unregister_response;
mod cra_loan_update;
mod cra_loans_applications_register_response;
mod cra_loans_register_response;
mod cra_loans_update_response;
mod cra_monitoring_insights_get_response;
mod cra_monitoring_insights_item;
mod cra_monitoring_insights_subscribe_response;
mod cra_monitoring_insights_unsubscribe_response;
mod cra_network_insights_item;
mod cra_network_insights_report;
mod cra_pdf_add_ons;
mod cra_partner_insights;
mod cra_partner_insights_complete_webhook;
mod cra_partner_insights_error_webhook;
mod cra_partner_insights_get_response;
mod cra_partner_insights_item;
mod cra_partner_insights_item_account;
mod cra_partner_insights_item_account_metadata;
mod cra_partner_insights_prism;
mod cra_prediction_interval;
mod credit1099;
mod credit1099_filer;
mod credit1099_payer;
mod credit1099_recipient;
mod credit_ach_class;
mod credit_account_subtype;
mod credit_account_subtypes;
mod credit_amount_with_currency;
mod credit_audit_copy_token_create_response;
mod credit_audit_copy_token_remove_response;
mod credit_audit_copy_token_update_response;
mod credit_bank_employer;
mod credit_bank_employment;
mod credit_bank_employment_get_response;
mod credit_bank_employment_item;
mod credit_bank_employment_report;
mod credit_bank_employment_warning;
mod credit_bank_employment_warning_type;
mod credit_bank_income;
mod credit_bank_income_account;
mod credit_bank_income_account_type;
mod credit_bank_income_category;
mod credit_bank_income_cause;
mod credit_bank_income_error_type;
mod credit_bank_income_get_request_options;
mod credit_bank_income_get_response;
mod credit_bank_income_historical_summary;
mod credit_bank_income_item;
mod credit_bank_income_pay_frequency;
mod credit_bank_income_refresh_request_options;
mod credit_bank_income_refresh_response;
mod credit_bank_income_source;
mod credit_bank_income_summary;
mod credit_bank_income_transaction;
mod credit_bank_income_warning;
mod credit_bank_income_warning_code;
mod credit_bank_income_warning_type;
mod credit_bank_income_webhook_update_response;
mod credit_bank_statement_upload_account_owner;
mod credit_bank_statement_upload_account_owner_address;
mod credit_bank_statement_upload_bank_account;
mod credit_bank_statement_upload_bank_account_period;
mod credit_bank_statement_upload_item;
mod credit_bank_statement_upload_object;
mod credit_bank_statement_upload_transaction;
mod credit_bank_statements_uploads_get_request_options;
mod credit_bank_statements_uploads_get_response;
mod credit_card_liability;
mod credit_category;
mod credit_document_metadata;
mod credit_employer_verification;
mod credit_employment_get_response;
mod credit_employment_item;
mod credit_employment_verification;
mod credit_filter;
mod credit_freddie_mac_asset;
mod credit_freddie_mac_asset_transaction;
mod credit_freddie_mac_asset_transactions;
mod credit_freddie_mac_assets;
mod credit_freddie_mac_individual_name;
mod credit_freddie_mac_loan;
mod credit_freddie_mac_loan_identifiers;
mod credit_freddie_mac_loans;
mod credit_freddie_mac_parties;
mod credit_freddie_mac_party;
mod credit_freddie_mac_party_individual;
mod credit_freddie_mac_reporting_information;
mod credit_freddie_mac_reports_get_response;
mod credit_freddie_mac_service;
mod credit_freddie_mac_services;
mod credit_freddie_mac_verification_of_asset;
mod credit_freddie_mac_verification_of_asset_response;
mod credit_freddie_mac_verification_of_assets_deal;
mod credit_pay_stub;
mod credit_pay_stub_address;
mod credit_pay_stub_deductions;
mod credit_pay_stub_earnings;
mod credit_pay_stub_employee;
mod credit_pay_stub_employer;
mod credit_pay_stub_net_pay;
mod credit_pay_stub_pay_basis_type;
mod credit_payroll_income_get_request_options;
mod credit_payroll_income_get_response;
mod credit_payroll_income_parsing_config_update_response;
mod credit_payroll_income_precheck_response;
mod credit_payroll_income_refresh_request_options;
mod credit_payroll_income_refresh_response;
mod credit_payroll_income_risk_signals_get_response;
mod credit_platform_ids;
mod credit_relay_create_response;
mod credit_relay_refresh_response;
mod credit_relay_remove_response;
mod credit_session;
mod credit_session_bank_employment_result;
mod credit_session_bank_employment_status;
mod credit_session_bank_income_result;
mod credit_session_bank_income_status;
mod credit_session_document_income_result;
mod credit_session_error;
mod credit_session_item_add_result;
mod credit_session_payroll_income_result;
mod credit_session_results;
mod credit_sessions_get_response;
mod credit_w2;
mod customer_initiated_return_risk;
mod dashboard_user;
mod dashboard_user_get_response;
mod dashboard_user_list_response;
mod dashboard_user_status;
mod data_sources;
mod date_range;
mod deductions;
mod deductions_breakdown;
mod deductions_total;
mod default_update_webhook;
mod deposit_switch_address_data;
mod deposit_switch_alt_create_response;
mod deposit_switch_create_request_options;
mod deposit_switch_create_response;
mod deposit_switch_get_response;
mod deposit_switch_state_update_webhook;
mod deposit_switch_target_account;
mod deposit_switch_target_user;
mod deposit_switch_token_create_response;
mod depository_account_subtype;
mod depository_account_subtypes;
mod depository_filter;
mod detailed_originator;
mod detected_account;
mod distribution_breakdown;
mod doc_type;
mod document_analysis;
mod document_authenticity_match_code;
mod document_date_of_birth_match_code;
mod document_metadata;
mod document_name_match_code;
mod document_risk_signal;
mod document_risk_signal_institution_metadata;
mod document_risk_signals_object;
mod document_risk_summary;
mod document_status;
mod documentary_verification;
mod documentary_verification_document;
mod earnings;
mod earnings_breakdown;
mod earnings_breakdown_canonical_description;
mod earnings_total;
mod email;
mod email_address_match_score;
mod employee;
mod employer;
mod employer_verification;
mod employers_search_response;
mod employment_details;
mod employment_source_type;
mod employment_verification;
mod employment_verification_get_response;
mod employment_verification_status;
mod enhancements;
mod enrich_transaction_direction;
mod enrichments;
mod entity_document;
mod entity_document_type;
mod entity_screening_hit_analysis;
mod entity_screening_hit_data;
mod entity_screening_hit_documents_items;
mod entity_screening_hit_emails;
mod entity_screening_hit_emails_items;
mod entity_screening_hit_names;
mod entity_screening_hit_names_items;
mod entity_screening_hit_phone_numbers;
mod entity_screening_hit_urls;
mod entity_screening_hit_urls_items;
mod entity_screening_hits_phone_number_items;
mod entity_screening_status_updated_webhook;
mod entity_watchlist_code;
mod entity_watchlist_program;
mod entity_watchlist_screening;
mod entity_watchlist_screening_hit;
mod entity_watchlist_screening_review;
mod entity_watchlist_screening_search_terms;
mod entity_watchlist_search_terms;
mod expiration_date;
mod extended_recipient_metadata;
mod external_payment_initiation_consent_options;
mod external_payment_options;
mod external_payment_refund_details;
mod external_payment_schedule_base;
mod external_payment_schedule_request;
mod fdx_content_types;
mod fdx_fi_attribute;
mod fdx_hateoas_link;
mod fdx_hateoas_link_action;
mod fdx_notification_category;
mod fdx_notification_payload;
mod fdx_notification_payload_id_type;
mod fdx_notification_priority;
mod fdx_notification_severity;
mod fdx_notification_type;
mod fdx_party;
mod fdx_party_registry;
mod fdx_party_type;
mod fdx_recipient_metadata;
mod fallback_auth_microdeposit_auto_verified_webhook;
mod fallback_auth_microdeposit_verification_expired_webhook;
mod financial_institution_insights;
mod forecasted_monthly_income;
mod form1099_type;
mod fraud_amount;
mod generic_screening_hit_location_items;
mod get_recipient_response;
mod get_recipients_response;
mod health_incident;
mod hidden_match_summary_code;
mod historical_annual_income;
mod historical_balance;
mod historical_update_webhook;
mod holding;
mod holdings_default_update_webhook;
mod holdings_override;
mod hosted_link_delivery_method;
mod hosted_mmd_verification_webhook;
mod id_number_type;
mod iso_currency_code;
mod identity_default_update_webhook;
mod identity_document_upload;
mod identity_document_upload_metadata;
mod identity_document_upload_risk_insights;
mod identity_document_upload_risk_signal;
mod identity_document_upload_risk_summary;
mod identity_documents_uploads_get_request_options;
mod identity_documents_uploads_get_response;
mod identity_get_request_options;
mod identity_get_response;
mod identity_match_request_options;
mod identity_match_response;
mod identity_match_user;
mod identity_refresh_response;
mod identity_update_types;
mod identity_verification;
mod identity_verification_autofill_address;
mod identity_verification_autofill_create_response;
mod identity_verification_autofill_status;
mod identity_verification_autofill_user_data;
mod identity_verification_create_request_user;
mod identity_verification_create_response;
mod identity_verification_document_address_response;
mod identity_verification_document_name_response;
mod identity_verification_get_response;
mod identity_verification_list_response;
mod identity_verification_request_user;
mod identity_verification_request_user_name;
mod identity_verification_response_user_name;
mod identity_verification_retried_webhook;
mod identity_verification_retry_request_steps_object;
mod identity_verification_retry_response;
mod identity_verification_status;
mod identity_verification_status_updated_webhook;
mod identity_verification_step_status;
mod identity_verification_step_summary;
mod identity_verification_step_updated_webhook;
mod identity_verification_template_reference;
mod identity_verification_user_address;
mod identity_verification_user_data;
mod image_quality;
mod incident_update;
mod income_breakdown;
mod income_breakdown_type;
mod income_override;
mod income_sources_counts;
mod income_summary_field_number;
mod income_summary_field_string;
mod income_verification_create_request_options;
mod income_verification_create_response;
mod income_verification_doc_parsing_config;
mod income_verification_payroll_flow_type;
mod income_verification_paystubs_get_response;
mod income_verification_precheck_confidence;
mod income_verification_precheck_employer;
mod income_verification_precheck_employer_address;
mod income_verification_precheck_military_info;
mod income_verification_precheck_payroll_institution;
mod income_verification_precheck_response;
mod income_verification_precheck_user;
mod income_verification_refresh_reconnect_needed_webhook;
mod income_verification_risk_signals_status_webhook;
mod income_verification_source_type;
mod income_verification_status_webhook;
mod income_verification_taxforms_get_response;
mod individual_name;
mod individual_screening_hit_names;
mod individual_watchlist_code;
mod individual_watchlist_program;
mod inflow_model;
mod initial_update_webhook;
mod institution;
mod institution_status;
mod institution_status_alert_webhook;
mod institution_supported_networks;
mod institutions_get_by_id_request_options;
mod institutions_get_by_id_response;
mod institutions_get_request_options;
mod institutions_get_response;
mod institutions_search_payment_initiation_options;
mod institutions_search_request_options;
mod institutions_search_response;
mod investment_account_subtype;
mod investment_account_subtypes;
mod investment_filter;
mod investment_holdings_get_request_options;
mod investment_transaction;
mod investment_transaction_subtype;
mod investment_transaction_type;
mod investments_auth_data_sources;
mod investments_auth_get_numbers;
mod investments_auth_get_request_options;
mod investments_auth_get_response;
mod investments_auth_owner;
mod investments_default_update_webhook;
mod investments_historical_update_webhook;
mod investments_holdings_get_response;
mod investments_refresh_response;
mod investments_transactions_get_request_options;
mod investments_transactions_get_response;
mod investments_transactions_override;
mod issue;
mod issue_resolved_webhook;
mod issues_get_response;
mod issues_search_response;
mod issues_status;
mod issues_subscribe_response;
mod issuing_country;
mod item;
mod item_access_token_invalidate_response;
mod item_activity_list_response;
mod item_add_result_webhook;
mod item_application_list_response;
mod item_application_scopes_update_response;
mod item_application_unlink_response;
mod item_create_authentication;
mod item_error_webhook;
mod item_get_response;
mod item_import_request_options;
mod item_import_request_user_auth;
mod item_import_response;
mod item_login_repaired_webhook;
mod item_product_ready_webhook;
mod item_public_token_create_response;
mod item_public_token_exchange_response;
mod item_remove_response;
mod item_status;
mod item_status_investments;
mod item_status_last_webhook;
mod item_status_transactions;
mod item_webhook_update_response;
mod item_with_consent_fields;
mod jwk_public_key;
mod kyc_check_address_summary;
mod kyc_check_date_of_birth_summary;
mod kyc_check_details;
mod kyc_check_details_international_address;
mod kyc_check_id_number_summary;
mod kyc_check_name_summary;
mod kyc_check_phone_summary;
mod last_data_access_times;
mod liabilities_account_ids_with_updated_liabilities;
mod liabilities_default_update_webhook;
mod liabilities_get_request_options;
mod liabilities_get_response;
mod liabilities_object;
mod liability_override;
mod link_callback_metadata;
mod link_delivery_account;
mod link_delivery_callback_webhook;
mod link_delivery_communication_method;
mod link_delivery_create_response;
mod link_delivery_delivery_method;
mod link_delivery_get_response;
mod link_delivery_institution;
mod link_delivery_metadata;
mod link_delivery_options;
mod link_delivery_recipient;
mod link_delivery_session_status;
mod link_delivery_verification_status;
mod link_delivery_webhook_callback_type;
mod link_delivery_webhook_communication_method;
mod link_delivery_webhook_delivery_status;
mod link_event;
mod link_event_metadata;
mod link_event_name;
mod link_events_webhook;
mod link_o_auth_correlation_id_exchange_response;
mod link_profile_eligibility_check_response;
mod link_profile_eligibility_check_user;
mod link_session_bank_income_result;
mod link_session_cra_item_add_result;
mod link_session_exit;
mod link_session_exit_deprecated;
mod link_session_exit_metadata;
mod link_session_exit_metadata_institution;
mod link_session_finished_webhook;
mod link_session_item_add_result;
mod link_session_payroll_income_result;
mod link_session_results;
mod link_session_success;
mod link_session_success_metadata;
mod link_session_success_metadata_account;
mod link_session_success_metadata_institution;
mod link_session_success_metadata_transfer_status;
mod link_token_account_filters;
mod link_token_create_card_switch;
mod link_token_create_hosted_link;
mod link_token_create_identity;
mod link_token_create_institution_data;
mod link_token_create_request_auth;
mod link_token_create_request_base_report;
mod link_token_create_request_cra_options;
mod link_token_create_request_cra_options_base_report;
mod link_token_create_request_cra_options_cashflow_insights;
mod link_token_create_request_cra_options_partner_insights;
mod link_token_create_request_credit_partner_insights;
mod link_token_create_request_deposit_switch;
mod link_token_create_request_employment;
mod link_token_create_request_employment_bank_income;
mod link_token_create_request_identity_verification;
mod link_token_create_request_income_verification;
mod link_token_create_request_income_verification_bank_income;
mod link_token_create_request_income_verification_payroll_income;
mod link_token_create_request_payment_configuration;
mod link_token_create_request_payment_initiation;
mod link_token_create_request_statements;
mod link_token_create_request_transfer;
mod link_token_create_request_update;
mod link_token_create_request_user;
mod link_token_create_request_user_stated_income_source;
mod link_token_create_response;
mod link_token_eu_config;
mod link_token_get_metadata_response;
mod link_token_get_response;
mod link_token_get_sessions_response;
mod link_token_investments;
mod link_token_investments_auth;
mod link_token_transactions;
mod link_user_delivery_status_webhook;
mod loan;
mod loan_account_subtype;
mod loan_account_subtypes;
mod loan_filter;
mod loan_identifier;
mod loan_identifier_type;
mod loan_identifiers;
mod loan_payments_counts;
mod loan_payments_merchant_counts;
mod loans;
mod location;
mod match_summary;
mod match_summary_code;
mod merchant_insights;
mod meta;
mod monitoring_consumer_report_permissible_purpose;
mod monitoring_income_insights;
mod monitoring_income_source;
mod monitoring_insights;
mod monitoring_insights_item_status;
mod monitoring_insights_status;
mod monitoring_insights_webhook;
mod monitoring_item_status_code;
mod monitoring_loan_insights;
mod mortgage_interest_rate;
mod mortgage_liability;
mod mortgage_property_address;
mod multi_document_risk_signal;
mod name_match_score;
mod net_pay;
mod network_insights_item;
mod network_insights_report;
mod network_insights_report_get_response;
mod network_insights_schema;
mod new_accounts_available_webhook;
mod numbers;
mod numbers_acats;
mod numbers_ach;
mod numbers_aton;
mod numbers_bacs;
mod numbers_eft;
mod numbers_international;
mod numbers_international_iban;
mod omittable_transfer_type;
mod option_contract;
mod originator;
mod originator_expected_transfer_frequency;
mod other_account_subtype;
mod other_account_subtypes;
mod other_filter;
mod override_account_type;
mod owner;
mod owner_override;
mod ownership_type;
mod po_box_status;
mod pslf_status;
mod parties;
mod partner_customer_create_response;
mod partner_customer_enable_response;
mod partner_customer_get_response;
mod partner_customer_o_auth_institutions_get_response;
mod partner_customer_remove_response;
mod partner_end_customer;
mod partner_end_customer_address;
mod partner_end_customer_assets_under_management;
mod partner_end_customer_billing_contact;
mod partner_end_customer_customer_support_info;
mod partner_end_customer_flowdown_status;
mod partner_end_customer_o_auth_institution;
mod partner_end_customer_o_auth_institution_application_status;
mod partner_end_customer_o_auth_institution_environments;
mod partner_end_customer_o_auth_status_updated_values;
mod partner_end_customer_o_auth_status_updated_webhook;
mod partner_end_customer_questionnaire_status;
mod partner_end_customer_status;
mod partner_end_customer_technical_contact;
mod partner_end_customer_with_secrets;
mod party;
mod party_individual;
mod party_role_type;
mod pay;
mod pay_frequency_value;
mod pay_period_details;
mod pay_period_details_pay_frequency;
mod pay_stub_deductions_breakdown;
mod pay_stub_deductions_total;
mod pay_stub_distribution_breakdown;
mod pay_stub_earnings_breakdown;
mod pay_stub_earnings_total;
mod pay_stub_pay_period_details;
mod pay_stub_taxpayer_id;
mod payment_amount;
mod payment_amount_currency;
mod payment_amount_nullable;
mod payment_amount_refunded;
mod payment_amount_to_refund;
mod payment_channel;
mod payment_consent_max_payment_amount;
mod payment_consent_periodic_alignment;
mod payment_consent_periodic_amount;
mod payment_consent_periodic_amount_amount;
mod payment_consent_periodic_interval;
mod payment_consent_valid_date_time;
mod payment_initiation_address;
mod payment_initiation_consent_constraints;
mod payment_initiation_consent_create_response;
mod payment_initiation_consent_get_response;
mod payment_initiation_consent_payer_details;
mod payment_initiation_consent_payer_numbers;
mod payment_initiation_consent_payment_execute_response;
mod payment_initiation_consent_processing_mode;
mod payment_initiation_consent_revoke_response;
mod payment_initiation_consent_scope;
mod payment_initiation_consent_status;
mod payment_initiation_consent_type;
mod payment_initiation_maximum_payment_amount;
mod payment_initiation_metadata;
mod payment_initiation_payment;
mod payment_initiation_payment_create_response;
mod payment_initiation_payment_create_status;
mod payment_initiation_payment_get_response;
mod payment_initiation_payment_list_response;
mod payment_initiation_payment_reverse_response;
mod payment_initiation_payment_status;
mod payment_initiation_payment_token_create_response;
mod payment_initiation_recipient;
mod payment_initiation_recipient_create_response;
mod payment_initiation_recipient_get_response;
mod payment_initiation_recipient_list_response;
mod payment_initiation_standing_order_metadata;
mod payment_meta;
mod payment_profile_create_response;
mod payment_profile_get_response;
mod payment_profile_remove_response;
mod payment_profile_status;
mod payment_schedule_interval;
mod payment_scheme;
mod payment_status_update_webhook;
mod payroll_income_account_data;
mod payroll_income_object;
mod payroll_income_rate_of_pay;
mod payroll_item;
mod payroll_item_status;
mod payroll_risk_signals_item;
mod paystub;
mod paystub_address;
mod paystub_details;
mod paystub_employer;
mod paystub_override;
mod paystub_override_deductions;
mod paystub_override_deductions_breakdown;
mod paystub_override_deductions_total;
mod paystub_override_distribution_breakdown;
mod paystub_override_earnings;
mod paystub_override_earnings_breakdown;
mod paystub_override_earnings_total;
mod paystub_override_employee;
mod paystub_override_employee_address;
mod paystub_override_employer;
mod paystub_override_employer_address;
mod paystub_override_net_pay;
mod paystub_override_pay_period_details;
mod paystub_override_taxpayer_id;
mod paystub_pay_frequency;
mod paystub_ytd_details;
mod pending_disconnect_webhook;
mod pending_disconnect_webhook_reason;
mod pending_expiration_webhook;
mod personal_finance_category;
mod phone_number;
mod phone_number_match_score;
mod phone_type;
mod physical_document_category;
mod physical_document_extracted_data;
mod physical_document_extracted_data_analysis;
mod physical_document_images;
mod plaid_error;
mod plaid_error_type;
mod platform_ids;
mod prism_cash_score;
mod prism_cash_score_metadata;
mod prism_cash_score_version;
mod prism_first_detect;
mod prism_first_detect_version;
mod prism_insights;
mod prism_insights_result;
mod prism_insights_version;
mod prism_product;
mod prism_versions;
mod processor_account_get_response;
mod processor_auth_get_response;
mod processor_balance_get_request_options;
mod processor_balance_get_response;
mod processor_bank_transfer_create_response;
mod processor_default_update_webhook;
mod processor_historical_update_webhook;
mod processor_identity_get_response;
mod processor_identity_match_response;
mod processor_initial_update_webhook;
mod processor_liabilities_get_response;
mod processor_number;
mod processor_recurring_transactions_update_webhook;
mod processor_signal_decision_report_response;
mod processor_signal_evaluate_response;
mod processor_signal_prepare_response;
mod processor_signal_return_report_response;
mod processor_stripe_bank_account_token_create_response;
mod processor_sync_updates_available_webhook;
mod processor_token_create_response;
mod processor_token_permissions_get_response;
mod processor_token_permissions_set_response;
mod processor_token_webhook_update_response;
mod processor_transactions_get_request_options;
mod processor_transactions_get_response;
mod processor_transactions_recurring_get_response;
mod processor_transactions_refresh_response;
mod processor_transactions_removed_webhook;
mod processor_transactions_sync_response;
mod product_access;
mod product_permissions_required_auth_webhook;
mod product_permissions_required_identity_webhook;
mod product_status;
mod product_status_breakdown;
mod products;
mod profile_get_response;
mod profile_identity;
mod profile_identity_address;
mod profile_identity_name;
mod profile_item;
mod profile_network_status_get_network_status;
mod profile_network_status_get_response;
mod profile_network_status_get_user;
mod program_name_sensitivity;
mod proxy_type;
mod recipient_bacs;
mod recipient_bacs_nullable;
mod recurrence;
mod recurring_cancelled_webhook;
mod recurring_frequency;
mod recurring_insights_stream;
mod recurring_new_transfer_webhook;
mod recurring_transaction_frequency;
mod recurring_transactions;
mod recurring_transactions_update_webhook;
mod recurring_transfer;
mod recurring_transfer_nullable;
mod recurring_transfer_skipped_webhook;
mod removed_transaction;
mod report_type;
mod reporting_information;
mod risk_check_behavior;
mod risk_check_behavior_bot_detected_label;
mod risk_check_behavior_fraud_ring_detected_label;
mod risk_check_behavior_user_interactions_label;
mod risk_check_details;
mod risk_check_device;
mod risk_check_email;
mod risk_check_email_domain_is_custom;
mod risk_check_email_domain_is_disposable;
mod risk_check_email_domain_is_free_provider;
mod risk_check_email_is_deliverable_status;
mod risk_check_email_top_level_domain_is_suspicious;
mod risk_check_identity_abuse_signals;
mod risk_check_linked_service;
mod risk_check_phone;
mod risk_check_stolen_identity;
mod risk_check_synthetic_identity;
mod risk_profile;
mod risk_reason;
mod risk_signal_document_reference;
mod risk_signal_document_status;
mod risk_signal_document_type;
mod risk_signal_file_type;
mod role;
mod role_detail;
mod roles;
mod ruleset;
mod sms_verification;
mod sms_verification_status;
mod sandbox_bank_income_fire_webhook_response;
mod sandbox_bank_income_webhook_fire_request_webhook_code;
mod sandbox_bank_income_webhook_fire_request_webhook_fields;
mod sandbox_bank_transfer_fire_webhook_response;
mod sandbox_bank_transfer_simulate_response;
mod sandbox_income_fire_webhook_response;
mod sandbox_income_webhook_fire_request_webhook_code;
mod sandbox_item_fire_webhook_response;
mod sandbox_item_reset_login_response;
mod sandbox_item_set_verification_status_response;
mod sandbox_oauth_select_accounts_response;
mod sandbox_payment_profile_reset_login_response;
mod sandbox_processor_token_create_request_options;
mod sandbox_processor_token_create_response;
mod sandbox_public_token_create_request_income_verification_bank_income;
mod sandbox_public_token_create_request_options;
mod sandbox_public_token_create_request_options_income_verification;
mod sandbox_public_token_create_request_options_statements;
mod sandbox_public_token_create_request_options_transactions;
mod sandbox_public_token_create_response;
mod sandbox_transfer_fire_webhook_response;
mod sandbox_transfer_ledger_deposit_simulate_response;
mod sandbox_transfer_ledger_simulate_available_response;
mod sandbox_transfer_ledger_withdraw_simulate_response;
mod sandbox_transfer_refund_simulate_response;
mod sandbox_transfer_repayment_simulate_response;
mod sandbox_transfer_simulate_response;
mod sandbox_transfer_sweep_simulate_response;
mod sandbox_transfer_test_clock_advance_response;
mod sandbox_transfer_test_clock_create_response;
mod sandbox_transfer_test_clock_get_response;
mod sandbox_transfer_test_clock_list_response;
mod sandbox_user_reset_login_response;
mod scopes;
mod scopes_context;
mod screening_hit_analysis;
mod screening_hit_data;
mod screening_hit_date_of_birth_item;
mod screening_hit_documents_items;
mod screening_hit_names_items;
mod screening_status_updated_webhook;
mod security;
mod security_override;
mod selfie_analysis;
mod selfie_analysis_document_comparison;
mod selfie_analysis_facial_analysis;
mod selfie_analysis_facial_analysis_outcome;
mod selfie_analysis_liveness_check;
mod selfie_capture;
mod selfie_check;
mod selfie_check_selfie;
mod selfie_check_status;
mod selfie_status;
mod service;
mod service_product_fulfillment;
mod service_product_fulfillment_detail;
mod service_product_fulfillment_identifier;
mod servicer_address_data;
mod services;
mod signal_address_data;
mod signal_decision_outcome;
mod signal_decision_report_response;
mod signal_device;
mod signal_evaluate_core_attributes;
mod signal_evaluate_response;
mod signal_payment_method;
mod signal_person_name;
mod signal_prepare_response;
mod signal_return_report_response;
mod signal_scores;
mod signal_user;
mod signal_warning;
mod simulated_transfer_sweep;
mod single_document_risk_signal;
mod source;
mod statements_account;
mod statements_list_response;
mod statements_refresh_complete_result;
mod statements_refresh_complete_webhook;
mod statements_refresh_response;
mod statements_statement;
mod status;
mod statuses;
mod strategy;
mod student_loan;
mod student_loan_repayment_model;
mod student_loan_status;
mod student_repayment_plan;
mod sweep_status;
mod sweep_trigger;
mod sync_updates_available_webhook;
mod taxform;
mod taxpayer_id;
mod taxpayer_identifier;
mod taxpayer_identifier_type;
mod taxpayer_identifiers;
mod total;
mod total_canonical_description;
mod total_inflow_amount;
mod total_inflow_amount30_d;
mod total_inflow_amount60_d;
mod total_inflow_amount90_d;
mod total_monthly_income_insights;
mod total_outflow_amount;
mod total_outflow_amount30_d;
mod total_outflow_amount60_d;
mod total_outflow_amount90_d;
mod transaction;
mod transaction_base;
mod transaction_code;
mod transaction_counterparty;
mod transaction_override;
mod transaction_stream;
mod transaction_stream_amount;
mod transaction_stream_status;
mod transactions_category_rule;
mod transactions_enhance_get_response;
mod transactions_enrich_request_options;
mod transactions_enrich_response;
mod transactions_get_request_options;
mod transactions_get_response;
mod transactions_recurring_get_request_options;
mod transactions_recurring_get_response;
mod transactions_refresh_response;
mod transactions_removed_webhook;
mod transactions_rule_details;
mod transactions_rule_field;
mod transactions_rule_type;
mod transactions_rules_create_response;
mod transactions_rules_list_response;
mod transactions_rules_remove_response;
mod transactions_sync_request_options;
mod transactions_sync_response;
mod transactions_update_status;
mod transactions_user_insights_get_response;
mod transfer;
mod transfer_ach_network;
mod transfer_authorization;
mod transfer_authorization_cancel_response;
mod transfer_authorization_create_response;
mod transfer_authorization_decision;
mod transfer_authorization_decision_rationale;
mod transfer_authorization_decision_rationale_code;
mod transfer_authorization_device;
mod transfer_authorization_guarantee_decision;
mod transfer_authorization_guarantee_decision_rationale;
mod transfer_authorization_guarantee_decision_rationale_code;
mod transfer_authorization_payment_risk;
mod transfer_authorization_proposed_transfer;
mod transfer_authorization_risk_level;
mod transfer_authorization_user_in_request;
mod transfer_balance;
mod transfer_balance_get_response;
mod transfer_balance_type;
mod transfer_cancel_response;
mod transfer_capabilities_get_rtp;
mod transfer_capabilities_get_response;
mod transfer_configuration_get_response;
mod transfer_create_response;
mod transfer_credit_funds_source;
mod transfer_credit_usage_configuration;
mod transfer_debit_usage_configuration;
mod transfer_device;
mod transfer_diligence_document_upload_response;
mod transfer_diligence_status;
mod transfer_diligence_submit_response;
mod transfer_document_purpose;
mod transfer_event;
mod transfer_event_list_response;
mod transfer_event_list_transfer_type;
mod transfer_event_sync_response;
mod transfer_event_type;
mod transfer_events_update_webhook;
mod transfer_expected_sweep_settlement_schedule_item;
mod transfer_failure;
mod transfer_funding_account;
mod transfer_get_response;
mod transfer_intent_authorization_decision;
mod transfer_intent_create;
mod transfer_intent_create_mode;
mod transfer_intent_create_network;
mod transfer_intent_create_response;
mod transfer_intent_get;
mod transfer_intent_get_failure_reason;
mod transfer_intent_get_response;
mod transfer_intent_status;
mod transfer_ledger_balance;
mod transfer_ledger_deposit_response;
mod transfer_ledger_distribute_response;
mod transfer_ledger_get_response;
mod transfer_ledger_sweep_simulate_event_type;
mod transfer_ledger_withdraw_response;
mod transfer_list_response;
mod transfer_metadata;
mod transfer_metrics_get_authorization_usage;
mod transfer_metrics_get_response;
mod transfer_metrics_get_return_rates;
mod transfer_metrics_get_return_rates_over_interval;
mod transfer_migrate_account_response;
mod transfer_network;
mod transfer_originator_address;
mod transfer_originator_create_response;
mod transfer_originator_diligence;
mod transfer_originator_funding_account_update_response;
mod transfer_originator_get_response;
mod transfer_originator_list_response;
mod transfer_platform_originator_create_response;
mod transfer_platform_person_address;
mod transfer_platform_person_create_response;
mod transfer_platform_person_id_number;
mod transfer_platform_person_name;
mod transfer_platform_requirement;
mod transfer_platform_requirement_submission;
mod transfer_platform_requirement_submit_response;
mod transfer_platform_tos_acceptance_metadata;
mod transfer_questionnaire_create_response;
mod transfer_recurring_cancel_response;
mod transfer_recurring_create_response;
mod transfer_recurring_get_response;
mod transfer_recurring_list_response;
mod transfer_recurring_network;
mod transfer_recurring_schedule;
mod transfer_recurring_status;
mod transfer_refund;
mod transfer_refund_cancel_response;
mod transfer_refund_create_response;
mod transfer_refund_failure;
mod transfer_refund_get_response;
mod transfer_refund_status;
mod transfer_repayment;
mod transfer_repayment_list_response;
mod transfer_repayment_return;
mod transfer_repayment_return_list_response;
mod transfer_schedule_interval_unit;
mod transfer_status;
mod transfer_sweep;
mod transfer_sweep_get_response;
mod transfer_sweep_list_response;
mod transfer_sweep_status;
mod transfer_test_clock;
mod transfer_type;
mod transfer_user_address_in_request;
mod transfer_user_address_in_response;
mod transfer_user_in_request;
mod transfer_user_in_request_deprecated;
mod transfer_user_in_response;
mod transfer_wire_details;
mod update_entity_screening_request_search_terms;
mod update_individual_screening_request_search_terms;
mod user_account_identity;
mod user_account_identity_address;
mod user_account_identity_name;
mod user_account_item;
mod user_account_revoked_webhook;
mod user_account_session_get_response;
mod user_address;
mod user_create_response;
mod user_data_overview;
mod user_id_number;
mod user_items_get_response;
mod user_permission_revoked_webhook;
mod user_remove_response;
mod user_stated_income_source_category;
mod user_stated_income_source_frequency;
mod user_stated_income_source_pay_type;
mod user_third_party_token_create_response;
mod user_third_party_token_remove_response;
mod user_update_response;
mod validation_source;
mod validation_sources;
mod verification_expired_webhook;
mod verification_of_asset;
mod verification_of_asset_response;
mod verification_status;
mod verify_sms_details;
mod verify_sms_details_status;
mod w2;
mod w2_box12;
mod w2_box12_override;
mod w2_override;
mod w2_state_and_local_wages;
mod w2_state_and_local_wages_override;
mod wallet;
mod wallet_balance;
mod wallet_create_response;
mod wallet_get_response;
mod wallet_iso_currency_code;
mod wallet_list_response;
mod wallet_numbers;
mod wallet_payment_scheme;
mod wallet_status;
mod wallet_transaction;
mod wallet_transaction_amount;
mod wallet_transaction_counterparty;
mod wallet_transaction_counterparty_bacs;
mod wallet_transaction_counterparty_international;
mod wallet_transaction_counterparty_numbers;
mod wallet_transaction_execute_response;
mod wallet_transaction_failure_reason;
mod wallet_transaction_get_response;
mod wallet_transaction_list_request_options;
mod wallet_transaction_list_response;
mod wallet_transaction_relation;
mod wallet_transaction_status;
mod wallet_transaction_status_update_webhook;
mod warning;
mod watchlist_screening_audit_trail;
mod watchlist_screening_document;
mod watchlist_screening_document_type;
mod watchlist_screening_entity_create_response;
mod watchlist_screening_entity_get_response;
mod watchlist_screening_entity_history_list_response;
mod watchlist_screening_entity_hit_list_response;
mod watchlist_screening_entity_list_response;
mod watchlist_screening_entity_program_get_response;
mod watchlist_screening_entity_program_list_response;
mod watchlist_screening_entity_review_create_response;
mod watchlist_screening_entity_review_list_response;
mod watchlist_screening_entity_update_request_resettable_field;
mod watchlist_screening_entity_update_request_resettable_field_list;
mod watchlist_screening_entity_update_response;
mod watchlist_screening_hit;
mod watchlist_screening_hit_locations;
mod watchlist_screening_hit_status;
mod watchlist_screening_individual;
mod watchlist_screening_individual_create_response;
mod watchlist_screening_individual_get_response;
mod watchlist_screening_individual_history_list_response;
mod watchlist_screening_individual_hit_list_response;
mod watchlist_screening_individual_list_response;
mod watchlist_screening_individual_program_get_response;
mod watchlist_screening_individual_program_list_response;
mod watchlist_screening_individual_review_create_response;
mod watchlist_screening_individual_review_list_response;
mod watchlist_screening_individual_update_request_resettable_field;
mod watchlist_screening_individual_update_request_resettable_field_list;
mod watchlist_screening_individual_update_response;
mod watchlist_screening_request_search_terms;
mod watchlist_screening_review;
mod watchlist_screening_search_terms;
mod watchlist_screening_status;
mod weak_alias_determination;
mod webhook_environment_values;
mod webhook_type;
mod webhook_update_acknowledged_webhook;
mod webhook_verification_key_get_response;