turnkey_client 0.6.1

A Rust client to interact with the Turnkey API.
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
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
#[derive(Debug)]
/// Intent object crafted by Turnkey based on the user request, used to assess the permissibility of an action.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Intent {
    #[serde(default)]
    #[serde(flatten)]
    pub inner: ::core::option::Option<intent::Inner>,
}
/// Nested message and enum types in `Intent`.
pub mod intent {
    #[derive(::serde::Serialize, ::serde::Deserialize)]
    #[derive(Clone, PartialEq)]
    #[serde(rename_all = "camelCase")]
    #[derive(Debug)]
    pub enum Inner {
        CreateOrganizationIntent(super::CreateOrganizationIntent),
        CreateAuthenticatorsIntent(super::CreateAuthenticatorsIntent),
        CreateUsersIntent(super::CreateUsersIntent),
        CreatePrivateKeysIntent(super::CreatePrivateKeysIntent),
        SignRawPayloadIntent(super::SignRawPayloadIntent),
        CreateInvitationsIntent(super::CreateInvitationsIntent),
        AcceptInvitationIntent(super::AcceptInvitationIntent),
        CreatePolicyIntent(super::CreatePolicyIntent),
        DisablePrivateKeyIntent(super::DisablePrivateKeyIntent),
        DeleteUsersIntent(super::DeleteUsersIntent),
        DeleteAuthenticatorsIntent(super::DeleteAuthenticatorsIntent),
        DeleteInvitationIntent(super::DeleteInvitationIntent),
        DeleteOrganizationIntent(super::DeleteOrganizationIntent),
        DeletePolicyIntent(super::DeletePolicyIntent),
        CreateUserTagIntent(super::CreateUserTagIntent),
        DeleteUserTagsIntent(super::DeleteUserTagsIntent),
        SignTransactionIntent(super::SignTransactionIntent),
        CreateApiKeysIntent(super::CreateApiKeysIntent),
        DeleteApiKeysIntent(super::DeleteApiKeysIntent),
        ApproveActivityIntent(super::ApproveActivityIntent),
        RejectActivityIntent(super::RejectActivityIntent),
        CreatePrivateKeyTagIntent(super::CreatePrivateKeyTagIntent),
        DeletePrivateKeyTagsIntent(super::DeletePrivateKeyTagsIntent),
        CreatePolicyIntentV2(super::CreatePolicyIntentV2),
        SetPaymentMethodIntent(super::super::billing::SetPaymentMethodIntent),
        ActivateBillingTierIntent(super::super::billing::ActivateBillingTierIntent),
        DeletePaymentMethodIntent(super::super::billing::DeletePaymentMethodIntent),
        CreatePolicyIntentV3(super::CreatePolicyIntentV3),
        CreateApiOnlyUsersIntent(super::CreateApiOnlyUsersIntent),
        UpdateRootQuorumIntent(super::UpdateRootQuorumIntent),
        UpdateUserTagIntent(super::UpdateUserTagIntent),
        UpdatePrivateKeyTagIntent(super::UpdatePrivateKeyTagIntent),
        CreateAuthenticatorsIntentV2(super::CreateAuthenticatorsIntentV2),
        AcceptInvitationIntentV2(super::AcceptInvitationIntentV2),
        CreateOrganizationIntentV2(super::CreateOrganizationIntentV2),
        CreateUsersIntentV2(super::CreateUsersIntentV2),
        CreateSubOrganizationIntent(super::CreateSubOrganizationIntent),
        CreateSubOrganizationIntentV2(super::CreateSubOrganizationIntentV2),
        UpdateAllowedOriginsIntent(super::UpdateAllowedOriginsIntent),
        CreatePrivateKeysIntentV2(super::CreatePrivateKeysIntentV2),
        UpdateUserIntent(super::UpdateUserIntent),
        UpdatePolicyIntent(super::UpdatePolicyIntent),
        SetPaymentMethodIntentV2(super::super::billing::SetPaymentMethodIntentV2),
        CreateSubOrganizationIntentV3(super::CreateSubOrganizationIntentV3),
        CreateWalletIntent(super::CreateWalletIntent),
        CreateWalletAccountsIntent(super::CreateWalletAccountsIntent),
        InitUserEmailRecoveryIntent(super::InitUserEmailRecoveryIntent),
        RecoverUserIntent(super::RecoverUserIntent),
        SetOrganizationFeatureIntent(super::SetOrganizationFeatureIntent),
        RemoveOrganizationFeatureIntent(super::RemoveOrganizationFeatureIntent),
        SignRawPayloadIntentV2(super::SignRawPayloadIntentV2),
        SignTransactionIntentV2(super::SignTransactionIntentV2),
        ExportPrivateKeyIntent(super::ExportPrivateKeyIntent),
        ExportWalletIntent(super::ExportWalletIntent),
        CreateSubOrganizationIntentV4(super::CreateSubOrganizationIntentV4),
        EmailAuthIntent(super::EmailAuthIntent),
        ExportWalletAccountIntent(super::ExportWalletAccountIntent),
        InitImportWalletIntent(super::InitImportWalletIntent),
        ImportWalletIntent(super::ImportWalletIntent),
        InitImportPrivateKeyIntent(super::InitImportPrivateKeyIntent),
        ImportPrivateKeyIntent(super::ImportPrivateKeyIntent),
        CreatePoliciesIntent(super::CreatePoliciesIntent),
        SignRawPayloadsIntent(super::SignRawPayloadsIntent),
        CreateReadOnlySessionIntent(super::CreateReadOnlySessionIntent),
        CreateOauthProvidersIntent(super::CreateOauthProvidersIntent),
        DeleteOauthProvidersIntent(super::DeleteOauthProvidersIntent),
        CreateSubOrganizationIntentV5(super::CreateSubOrganizationIntentV5),
        OauthIntent(super::OauthIntent),
        CreateApiKeysIntentV2(super::CreateApiKeysIntentV2),
        CreateReadWriteSessionIntent(super::CreateReadWriteSessionIntent),
        EmailAuthIntentV2(super::EmailAuthIntentV2),
        CreateSubOrganizationIntentV6(super::CreateSubOrganizationIntentV6),
        DeletePrivateKeysIntent(super::DeletePrivateKeysIntent),
        DeleteWalletsIntent(super::DeleteWalletsIntent),
        CreateReadWriteSessionIntentV2(super::CreateReadWriteSessionIntentV2),
        DeleteSubOrganizationIntent(super::DeleteSubOrganizationIntent),
        InitOtpAuthIntent(super::InitOtpAuthIntent),
        OtpAuthIntent(super::OtpAuthIntent),
        CreateSubOrganizationIntentV7(super::CreateSubOrganizationIntentV7),
        UpdateWalletIntent(super::UpdateWalletIntent),
        UpdatePolicyIntentV2(super::UpdatePolicyIntentV2),
        CreateUsersIntentV3(super::CreateUsersIntentV3),
        InitOtpAuthIntentV2(super::InitOtpAuthIntentV2),
        InitOtpIntent(super::InitOtpIntent),
        VerifyOtpIntent(super::VerifyOtpIntent),
        OtpLoginIntent(super::OtpLoginIntent),
        StampLoginIntent(super::StampLoginIntent),
        OauthLoginIntent(super::OauthLoginIntent),
        UpdateUserNameIntent(super::UpdateUserNameIntent),
        UpdateUserEmailIntent(super::UpdateUserEmailIntent),
        UpdateUserPhoneNumberIntent(super::UpdateUserPhoneNumberIntent),
        InitFiatOnRampIntent(super::InitFiatOnRampIntent),
        CreateSmartContractInterfaceIntent(super::CreateSmartContractInterfaceIntent),
        DeleteSmartContractInterfaceIntent(super::DeleteSmartContractInterfaceIntent),
        EnableAuthProxyIntent(super::EnableAuthProxyIntent),
        DisableAuthProxyIntent(super::DisableAuthProxyIntent),
        UpdateAuthProxyConfigIntent(super::UpdateAuthProxyConfigIntent),
        CreateOauth2CredentialIntent(super::CreateOauth2CredentialIntent),
        UpdateOauth2CredentialIntent(super::UpdateOauth2CredentialIntent),
        DeleteOauth2CredentialIntent(super::DeleteOauth2CredentialIntent),
        Oauth2AuthenticateIntent(super::Oauth2AuthenticateIntent),
        DeleteWalletAccountsIntent(super::DeleteWalletAccountsIntent),
        DeletePoliciesIntent(super::DeletePoliciesIntent),
        EthSendRawTransactionIntent(super::EthSendRawTransactionIntent),
        EthSendTransactionIntent(super::EthSendTransactionIntent),
        CreateFiatOnRampCredentialIntent(super::CreateFiatOnRampCredentialIntent),
        UpdateFiatOnRampCredentialIntent(super::UpdateFiatOnRampCredentialIntent),
        DeleteFiatOnRampCredentialIntent(super::DeleteFiatOnRampCredentialIntent),
        EmailAuthIntentV3(super::EmailAuthIntentV3),
        InitUserEmailRecoveryIntentV2(super::InitUserEmailRecoveryIntentV2),
        InitOtpIntentV2(super::InitOtpIntentV2),
        InitOtpAuthIntentV3(super::InitOtpAuthIntentV3),
        UpsertGasUsageConfigIntent(super::UpsertGasUsageConfigIntent),
        CreateTvcAppIntent(super::CreateTvcAppIntent),
        CreateTvcDeploymentIntent(super::CreateTvcDeploymentIntent),
        CreateTvcManifestApprovalsIntent(super::CreateTvcManifestApprovalsIntent),
        SolSendTransactionIntent(super::SolSendTransactionIntent),
        InitOtpIntentV3(super::InitOtpIntentV3),
        VerifyOtpIntentV2(super::VerifyOtpIntentV2),
        OtpLoginIntentV2(super::OtpLoginIntentV2),
        UpdateOrganizationNameIntent(super::UpdateOrganizationNameIntent),
        CreateSubOrganizationIntentV8(super::CreateSubOrganizationIntentV8),
        CreateOauthProvidersIntentV2(super::CreateOauthProvidersIntentV2),
        CreateUsersIntentV4(super::CreateUsersIntentV4),
        CreateWebhookEndpointIntent(super::CreateWebhookEndpointIntent),
        UpdateWebhookEndpointIntent(super::UpdateWebhookEndpointIntent),
        DeleteWebhookEndpointIntent(super::DeleteWebhookEndpointIntent),
    }
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateAuthProxyConfigIntent {
    /// @inject_tag: validate:"omitempty,dive"
    #[serde(default)]
    pub allowed_origins: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,dive"
    #[serde(default)]
    pub allowed_auth_methods: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub email_auth_template_id: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,uuid"
    #[serde(default)]
    pub otp_template_id: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization_params: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub sms_customization_params: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub wallet_kit_settings: ::core::option::Option<WalletKitSettingsParams>,
    /// @inject_tag: validate:"omitempty,numeric"
    #[serde(default)]
    pub otp_expiration_seconds: ::core::option::Option<i32>,
    /// @inject_tag: validate:"omitempty,numeric"
    #[serde(default)]
    pub verification_token_expiration_seconds: ::core::option::Option<i32>,
    /// @inject_tag: validate:"omitempty,numeric"
    #[serde(default)]
    pub session_expiration_seconds: ::core::option::Option<i32>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub otp_alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,numeric,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub verification_token_required_for_get_account_pii: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,dive"
    #[serde(default)]
    pub social_linking_client_ids: ::prost::alloc::vec::Vec<
        ::prost::alloc::string::String,
    >,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateAuthProxyConfigResult {
    /// @inject_tag: validate:"required,uuid"
    pub config_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct EnableAuthProxyIntent {}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct DisableAuthProxyIntent {}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOrganizationIntent {
    /// @inject_tag: validate:"required,tk_label_length"
    pub organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,email,tk_email"
    pub root_email: ::prost::alloc::string::String,
    #[serde(default)]
    pub root_authenticator: ::core::option::Option<AuthenticatorParams>,
    /// @inject_tag: validate:"uuid"
    #[serde(default)]
    pub root_user_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOrganizationIntentV2 {
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,email,tk_email"
    pub root_email: ::prost::alloc::string::String,
    #[serde(default)]
    pub root_authenticator: ::core::option::Option<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"uuid"
    #[serde(default)]
    pub root_user_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateAuthenticatorsIntent {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParams>,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateAuthenticatorsIntentV2 {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateApiKeysIntent {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateApiKeysIntentV2 {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUsersIntent {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub users: ::prost::alloc::vec::Vec<UserParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUsersIntentV2 {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub users: ::prost::alloc::vec::Vec<UserParamsV2>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUsersIntentV3 {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub users: ::prost::alloc::vec::Vec<UserParamsV3>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUsersIntentV4 {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub users: ::prost::alloc::vec::Vec<UserParamsV4>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserIntent {
    /// @inject_tag: validate:"uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub user_name: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,dive,uuid"
    #[serde(default)]
    pub user_tag_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,e164"
    #[serde(default)]
    pub user_phone_number: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserNameIntent {
    /// @inject_tag: validate:"uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub user_name: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserEmailIntent {
    /// @inject_tag: validate:"uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    pub user_email: ::prost::alloc::string::String,
    #[serde(default)]
    pub verification_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserPhoneNumberIntent {
    /// @inject_tag: validate:"uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,e164"
    pub user_phone_number: ::prost::alloc::string::String,
    #[serde(default)]
    pub verification_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateWalletIntent {
    /// @inject_tag: validate:"uuid"
    pub wallet_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub wallet_name: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateOrganizationNameIntent {
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub organization_name: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateInvitationsIntent {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub invitations: ::prost::alloc::vec::Vec<InvitationParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct AcceptInvitationIntent {
    /// @inject_tag: validate:"required,uuid"
    pub invitation_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub authenticator: ::core::option::Option<AuthenticatorParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct AcceptInvitationIntentV2 {
    /// @inject_tag: validate:"required,uuid"
    pub invitation_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub authenticator: ::core::option::Option<AuthenticatorParamsV2>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateApiOnlyUsersIntent {
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub api_only_users: ::prost::alloc::vec::Vec<ApiOnlyUserParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWalletIntent {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub wallet_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub accounts: ::prost::alloc::vec::Vec<WalletAccountParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub mnemonic_length: ::core::option::Option<i32>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWalletAccountsIntent {
    /// @inject_tag: validate:"required,uuid"
    pub wallet_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub accounts: ::prost::alloc::vec::Vec<WalletAccountParams>,
    #[serde(default)]
    pub persist: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeysIntent {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub private_keys: ::prost::alloc::vec::Vec<PrivateKeyParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeysIntentV2 {
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub private_keys: ::prost::alloc::vec::Vec<PrivateKeyParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignRawPayloadIntent {
    /// @inject_tag: validate:"required,uuid"
    pub private_key_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub payload: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encoding: super::super::common::v1::PayloadEncoding,
    pub hash_function: super::super::common::v1::HashFunction,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignRawPayloadIntentV2 {
    /// @inject_tag: validate:"required"
    pub sign_with: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub payload: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encoding: super::super::common::v1::PayloadEncoding,
    pub hash_function: super::super::common::v1::HashFunction,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignRawPayloadsIntent {
    /// @inject_tag: validate:"required"
    pub sign_with: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub payloads: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub encoding: super::super::common::v1::PayloadEncoding,
    pub hash_function: super::super::common::v1::HashFunction,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePolicyIntent {
    /// @inject_tag: validate:"required,tk_label_length"
    pub policy_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub selectors: ::prost::alloc::vec::Vec<Selector>,
    pub effect: super::super::common::v1::Effect,
    pub notes: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePolicyIntentV2 {
    /// @inject_tag: validate:"required,tk_label_length"
    pub policy_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub selectors: ::prost::alloc::vec::Vec<SelectorV2>,
    pub effect: super::super::common::v1::Effect,
    pub notes: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePolicyIntentV3 {
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub policy_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub effect: super::super::common::v1::Effect,
    #[serde(default)]
    pub condition: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub consensus: ::core::option::Option<::prost::alloc::string::String>,
    pub notes: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePoliciesIntent {
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub policies: ::prost::alloc::vec::Vec<CreatePolicyIntentV3>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct CreateReadOnlySessionIntent {}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateReadWriteSessionIntent {
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateReadWriteSessionIntentV2 {
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,uuid"
    #[serde(default)]
    pub user_id: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Selector {
    pub subject: ::prost::alloc::string::String,
    pub operator: super::super::common::v1::Operator,
    pub target: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SelectorV2 {
    pub subject: ::prost::alloc::string::String,
    pub operator: super::super::common::v1::Operator,
    #[serde(default)]
    pub targets: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DisablePrivateKeyIntent {
    /// @inject_tag: validate:"required,uuid"
    pub private_key_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteUsersIntent {
    /// @inject_tag: validate:"required,dive,required,uuid"
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteInvitationIntent {
    /// @inject_tag: validate:"required,uuid"
    pub invitation_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteApiKeysIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required,uuid"
    #[serde(default)]
    pub api_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteAuthenticatorsIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required,uuid"
    #[serde(default)]
    pub authenticator_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOrganizationIntent {
    /// @inject_tag: validate:"required,uuid"
    pub organization_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePolicyIntent {
    /// @inject_tag: validate:"required,uuid"
    pub policy_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUserTagIntent {
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub user_tag_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserTagIntent {
    /// @inject_tag: validate:"uuid"
    pub user_tag_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub new_user_tag_name: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub add_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub remove_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteUserTagsIntent {
    /// @inject_tag: validate:"required,dive,required,uuid"
    #[serde(default)]
    pub user_tag_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeyTagIntent {
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub private_key_tag_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePrivateKeyTagIntent {
    /// @inject_tag: validate:"uuid"
    pub private_key_tag_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub new_private_key_tag_name: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub add_private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub remove_private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePrivateKeyTagsIntent {
    /// @inject_tag: validate:"required,dive,required,uuid"
    #[serde(default)]
    pub private_key_tag_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignTransactionIntent {
    /// @inject_tag: validate:"required,uuid"
    pub private_key_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub unsigned_transaction: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub r#type: super::super::common::v1::TransactionType,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignTransactionIntentV2 {
    /// @inject_tag: validate:"required"
    pub sign_with: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub unsigned_transaction: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub r#type: super::super::common::v1::TransactionType,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SolSendTransactionIntent {
    /// @inject_tag: validate:"required"
    pub unsigned_transaction: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub sign_with: ::prost::alloc::string::String,
    /// If true, Turnkey acts as fee payer and may inject a fresh blockhash
    #[serde(default)]
    pub sponsor: ::core::option::Option<bool>,
    /// @inject_tag: validate:"required"
    pub caip2: ::prost::alloc::string::String,
    #[serde(default)]
    pub recent_blockhash: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EthSendTransactionIntent {
    /// @inject_tag: validate:"required"
    pub from: ::prost::alloc::string::String,
    /// If false or unset, constructs a standard EIP-1559 transaction. If true, constructs an EIP-712 meta-transaction for Gas Station.
    #[serde(default)]
    pub sponsor: ::core::option::Option<bool>,
    /// @inject_tag: validate:"required"
    pub caip2: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub to: ::prost::alloc::string::String,
    #[serde(default)]
    pub value: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub data: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub nonce: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub gas_limit: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub max_fee_per_gas: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub max_priority_fee_per_gas: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub gas_station_nonce: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ApproveActivityIntent {
    /// @inject_tag: validate:"required"
    pub fingerprint: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RejectActivityIntent {
    /// @inject_tag: validate:"required"
    pub fingerprint: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateRootQuorumIntent {
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub threshold: i32,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateAllowedOriginsIntent {
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub allowed_origins: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSmartContractInterfaceIntent {
    /// @inject_tag: validate:"required"
    pub smart_contract_address: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,tk_max_length=400000"
    pub smart_contract_interface: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub r#type: super::super::common::v1::SmartContractInterfaceType,
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub label: ::prost::alloc::string::String,
    pub notes: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteSmartContractInterfaceIntent {
    /// @inject_tag: validate:"required"
    pub smart_contract_interface_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntent {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub name: ::prost::alloc::string::String,
    #[serde(default)]
    pub root_authenticator: ::core::option::Option<AuthenticatorParamsV2>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV2 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParams>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV3 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParams>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub private_keys: ::prost::alloc::vec::Vec<PrivateKeyParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV4 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParams>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_recovery: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_auth: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV5 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParamsV2>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_recovery: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_auth: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV6 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParamsV3>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_recovery: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_auth: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV7 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParamsV4>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_recovery: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_auth: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_sms_auth: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_otp_email_auth: ::core::option::Option<bool>,
    #[serde(default)]
    pub verification_token: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub client_signature: ::core::option::Option<ClientSignature>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationIntentV8 {
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    pub sub_organization_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive"
    #[serde(default)]
    pub root_users: ::prost::alloc::vec::Vec<RootUserParamsV5>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub root_quorum_threshold: i32,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_recovery: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_email_auth: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_sms_auth: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub disable_otp_email_auth: ::core::option::Option<bool>,
    #[serde(default)]
    pub verification_token: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub client_signature: ::core::option::Option<ClientSignature>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePolicyIntent {
    /// @inject_tag: validate:"uuid"
    pub policy_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub policy_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_effect: Option<super::super::common::v1::Effect>,
    #[serde(default)]
    pub policy_condition: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_consensus: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_notes: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePolicyIntentV2 {
    /// @inject_tag: validate:"uuid"
    pub policy_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub policy_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_effect: Option<super::super::common::v1::Effect>,
    #[serde(default)]
    pub policy_condition: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_consensus: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub policy_notes: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RecoverUserIntent {
    #[serde(default)]
    pub authenticator: ::core::option::Option<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SetOrganizationFeatureIntent {
    pub name: super::super::common::v1::FeatureName,
    #[serde(default)]
    pub value: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct RemoveOrganizationFeatureIntent {
    pub name: super::super::common::v1::FeatureName,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportPrivateKeyIntent {
    /// @inject_tag: validate:"required,uuid"
    pub private_key_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportWalletIntent {
    /// @inject_tag: validate:"required,uuid"
    pub wallet_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub language: Option<super::super::common::v1::MnemonicLanguage>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportWalletAccountIntent {
    /// @inject_tag: validate:"required"
    pub address: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitImportWalletIntent {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitImportPrivateKeyIntent {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RootUserParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RootUserParamsV2 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RootUserParamsV3 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RootUserParamsV4 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,e164"
    #[serde(default)]
    pub user_phone_number: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RootUserParamsV5 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,e164"
    #[serde(default)]
    pub user_phone_number: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParamsV2>,
}
#[derive(Debug)]
/// Each of these customization parameters are optional; resort to defaults if any are not provided.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailCustomizationParams {
    #[serde(default)]
    pub app_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub logo_url: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub magic_link_template: ::core::option::Option<::prost::alloc::string::String>,
    ///
    /// We're electing to support user-provided dynamic template variables via JSON string.
    /// This is for a subset of customers who want to have custom email templates with Turnkey
    /// and the ability to update them on the fly.
    /// The procedure: provide a Turnkey eng the new template, and pass their desired variables through this field.
    /// These variables will get injected into their template. Since we have no control over the defined variables,
    /// we'll opt use a key-value map (JSON string) to set them. Note that we can't use protobuf maps due to serialization issues,
    /// which may produce issues with user request signature verification.
    #[serde(default)]
    pub template_variables: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub template_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// This proto message is to be used for newer email-related activities (OTP).
/// Note that app_name is no longer a parameter here, as it is required in the top-level intent for these activities.
/// All other fields remain optional and will fall back to defaults.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailCustomizationParamsV2 {
    #[serde(default)]
    pub logo_url: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub magic_link_template: ::core::option::Option<::prost::alloc::string::String>,
    ///
    /// We're electing to support user-provided dynamic template variables via JSON string.
    /// This is for a subset of customers who want to have custom email templates with Turnkey
    /// and the ability to update them on the fly.
    /// The procedure: provide a Turnkey eng the new template, and pass their desired variables through this field.
    /// These variables will get injected into their template. Since we have no control over the defined variables,
    /// we'll opt use a key-value map (JSON string) to set them. Note that we can't use protobuf maps due to serialization issues,
    /// which may produce issues with user request signature verification.
    #[serde(default)]
    pub template_variables: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub template_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// A new proto message specifically for "legacy" endpoints: Email Auth and Email Recovery.
/// Note that app_name is now a required parameter for newer versions of these activities.
/// All other fields remain optional and will fall back to defaults.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailAuthCustomizationParams {
    /// @inject_tag: validate:"tk_label_length,tk_label"
    pub app_name: ::prost::alloc::string::String,
    #[serde(default)]
    pub logo_url: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub magic_link_template: ::core::option::Option<::prost::alloc::string::String>,
    ///
    /// We're electing to support user-provided dynamic template variables via JSON string.
    /// This is for a subset of customers who want to have custom email templates with Turnkey
    /// and the ability to update them on the fly.
    /// The procedure: provide a Turnkey eng the new template, and pass their desired variables through this field.
    /// These variables will get injected into their template. Since we have no control over the defined variables,
    /// we'll opt use a key-value map (JSON string) to set them. Note that we can't use protobuf maps due to serialization issues,
    /// which may produce issues with user request signature verification.
    #[serde(default)]
    pub template_variables: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub template_id: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// Each of these customization parameters are optional; resort to defaults if any are not provided.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SmsCustomizationParams {
    #[serde(default)]
    pub template: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// The Wallet Kit pulls from these settings automatically. They can be overwritten locally by passing them into the TurnkeyProvider
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WalletKitSettingsParams {
    #[serde(default)]
    pub enabled_social_providers: ::prost::alloc::vec::Vec<
        ::prost::alloc::string::String,
    >,
    /// Map of social login providers to their OAuth client IDs.
    /// Example: { "google": "123.apps.googleusercontent.com", "apple": "com.example.app" }
    #[serde(default)]
    pub oauth_client_ids: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
    /// Global OAuth redirect URL used for social logins.
    pub oauth_redirect_url: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitUserEmailRecoveryIntent {
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitUserEmailRecoveryIntentV2 {
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailAuthCustomizationParams>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthLoginIntent {
    /// @inject_tag: validate:"required"
    pub oidc_token: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,hexadecimal"
    pub public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct StampLoginIntent {
    /// @inject_tag: validate:"omitempty,hexadecimal"
    pub public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OtpLoginIntent {
    pub verification_token: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,hexadecimal"
    pub public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
    #[serde(default)]
    pub client_signature: ::core::option::Option<ClientSignature>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OtpLoginIntentV2 {
    pub verification_token: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,hexadecimal"
    pub public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub client_signature: ::core::option::Option<ClientSignature>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpAuthIntent {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpIntent {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,numeric,max=600"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpIntentV2 {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    /// @inject_tag: validate:"tk_label_length,tk_label"
    pub app_name: ::prost::alloc::string::String,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParamsV2>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,numeric,max=600"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpIntentV3 {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    /// @inject_tag: validate:"tk_label_length,tk_label"
    pub app_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParamsV2>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,numeric,max=600"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpAuthIntentV2 {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpAuthIntentV3 {
    /// @inject_tag: validate:"required,oneof=OTP_TYPE_SMS OTP_TYPE_EMAIL"
    pub otp_type: ::prost::alloc::string::String,
    pub contact: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,min=6,max=9"
    #[serde(default)]
    pub otp_length: ::core::option::Option<i32>,
    /// @inject_tag: validate:"tk_label_length,tk_label"
    pub app_name: ::prost::alloc::string::String,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParamsV2>,
    #[serde(default)]
    pub sms_customization: ::core::option::Option<SmsCustomizationParams>,
    #[serde(default)]
    pub user_identifier: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub alphanumeric: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,numeric,max=600"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct SolanaConfig {
    #[serde(default)]
    pub rent_prefund_enabled: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpsertGasUsageConfigIntent {
    /// @inject_tag: validate:"required,numeric"
    pub org_window_limit_usd: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,numeric"
    pub sub_org_window_limit_usd: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,numeric"
    pub window_duration_minutes: ::prost::alloc::string::String,
    #[serde(default)]
    pub enabled: ::core::option::Option<bool>,
    #[serde(default)]
    pub solana_config: ::core::option::Option<SolanaConfig>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct VerifyOtpIntent {
    /// @inject_tag: validate:"required"
    pub otp_id: ::prost::alloc::string::String,
    pub otp_code: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,numeric,max=86400"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,hexadecimal"
    #[serde(default)]
    pub public_key: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct VerifyOtpIntentV2 {
    /// @inject_tag: validate:"required"
    pub otp_id: ::prost::alloc::string::String,
    pub encrypted_otp_bundle: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,numeric,max=86400"
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OtpAuthIntent {
    /// @inject_tag: validate:"required"
    pub otp_id: ::prost::alloc::string::String,
    pub otp_code: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthIntent {
    /// @inject_tag: validate:"required"
    pub oidc_token: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailAuthIntent {
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailAuthIntentV2 {
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailCustomizationParams>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailAuthIntentV3 {
    /// @inject_tag: validate:"email,tk_email"
    pub email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal"
    pub target_public_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub api_key_name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub email_customization: ::core::option::Option<EmailAuthCustomizationParams>,
    #[serde(default)]
    pub invalidate_existing: ::core::option::Option<bool>,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub send_from_email_address: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label_length,tk_label"
    #[serde(default)]
    pub send_from_email_sender_name: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub reply_to_email_address: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitFiatOnRampIntent {
    /// @inject_tag: validate:"required"
    pub onramp_provider: super::super::common::v1::FiatOnRampProvider,
    /// @inject_tag: validate:"required"
    pub wallet_address: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub network: super::super::common::v1::FiatOnRampBlockchainNetwork,
    /// @inject_tag: validate:"required"
    pub crypto_currency_code: super::super::common::v1::FiatOnRampCryptoCurrency,
    #[serde(default)]
    pub fiat_currency_code: Option<super::super::common::v1::FiatOnRampCurrency>,
    #[serde(default)]
    pub fiat_currency_amount: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub payment_method: Option<super::super::common::v1::FiatOnRampPaymentMethod>,
    #[serde(default)]
    pub country_code: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub country_subdivision_code: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub sandbox_mode: ::core::option::Option<bool>,
    #[serde(default)]
    pub url_for_signature: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ImportWalletIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub wallet_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_bundle: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub accounts: ::prost::alloc::vec::Vec<WalletAccountParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ImportPrivateKeyIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub private_key_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_bundle: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub curve: super::super::common::v1::Curve,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub address_formats: Vec<super::super::common::v1::AddressFormat>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauthProvidersIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauthProvidersIntentV2 {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,dive,required"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParamsV2>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOauthProvidersIntent {
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,required,uuid"
    #[serde(default)]
    pub provider_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePrivateKeysIntent {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletsIntent {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub wallet_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct DeleteSubOrganizationIntent {
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauth2CredentialIntent {
    /// @inject_tag: validate:"required"
    pub provider: super::super::common::v1::Oauth2Provider,
    /// @inject_tag: validate:"required"
    pub client_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_client_secret: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateOauth2CredentialIntent {
    /// @inject_tag: validate:"required"
    pub oauth2_credential_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub provider: super::super::common::v1::Oauth2Provider,
    /// @inject_tag: validate:"required"
    pub client_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_client_secret: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOauth2CredentialIntent {
    /// @inject_tag: validate:"required"
    pub oauth2_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Oauth2AuthenticateIntent {
    /// @inject_tag: validate:"required"
    pub oauth2_credential_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub auth_code: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub redirect_uri: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub code_verifier: ::prost::alloc::string::String,
    #[serde(default)]
    pub nonce: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub bearer_token_target_public_key: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletAccountsIntent {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub wallet_account_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePoliciesIntent {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub policy_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EthSendRawTransactionIntent {
    /// @inject_tag: validate:"required"
    pub signed_transaction: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub caip2: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateFiatOnRampCredentialIntent {
    /// @inject_tag: validate:"required"
    pub onramp_provider: super::super::common::v1::FiatOnRampProvider,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub project_id: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub publishable_api_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_secret_api_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub encrypted_private_api_key: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub sandbox_mode: bool,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateFiatOnRampCredentialIntent {
    /// @inject_tag: validate:"required"
    pub fiat_onramp_credential_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub onramp_provider: super::super::common::v1::FiatOnRampProvider,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub project_id: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub publishable_api_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub encrypted_secret_api_key: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub encrypted_private_api_key: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteFiatOnRampCredentialIntent {
    /// @inject_tag: validate:"required"
    pub fiat_onramp_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcAppIntent {
    /// @inject_tag: validate:"required"
    pub name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub quorum_public_key: ::prost::alloc::string::String,
    #[serde(default)]
    pub manifest_set_id: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub manifest_set_params: ::core::option::Option<TvcOperatorSetParams>,
    #[serde(default)]
    pub share_set_id: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub share_set_params: ::core::option::Option<TvcOperatorSetParams>,
    #[serde(default)]
    pub enable_egress: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct TvcOperatorSetParams {
    /// @inject_tag: validate:"required"
    pub name: ::prost::alloc::string::String,
    #[serde(default)]
    pub new_operators: ::prost::alloc::vec::Vec<TvcOperatorParams>,
    #[serde(default)]
    pub existing_operator_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub threshold: u32,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct TvcOperatorParams {
    /// @inject_tag: validate:"required"
    pub name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub public_key: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcDeploymentIntent {
    /// @inject_tag: validate:"required"
    pub app_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub qos_version: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub pivot_container_image_url: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub pivot_path: ::prost::alloc::string::String,
    #[serde(default)]
    pub pivot_args: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub expected_pivot_digest: ::prost::alloc::string::String,
    #[serde(default)]
    pub nonce: ::core::option::Option<u32>,
    #[serde(default)]
    pub pivot_container_encrypted_pull_secret: ::core::option::Option<
        ::prost::alloc::string::String,
    >,
    #[serde(default)]
    pub debug_mode: ::core::option::Option<bool>,
    pub health_check_type: super::super::common::v1::TvcHealthCheckType,
    #[serde(default)]
    pub health_check_port: u32,
    #[serde(default)]
    pub public_ingress_port: u32,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcManifestApprovalsIntent {
    /// @inject_tag: validate:"required,uuid"
    pub manifest_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    #[serde(default)]
    pub approvals: ::prost::alloc::vec::Vec<TvcManifestApproval>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct TvcManifestApproval {
    /// @inject_tag: validate:"required,uuid"
    pub operator_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub signature: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWebhookEndpointIntent {
    /// @inject_tag: validate:"required"
    pub url: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,tk_label,tk_label_length"
    pub name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,dive"
    #[serde(default)]
    pub subscriptions: ::prost::alloc::vec::Vec<WebhookSubscriptionParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateWebhookEndpointIntent {
    /// @inject_tag: validate:"required,uuid"
    pub endpoint_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub url: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,tk_label,tk_label_length"
    #[serde(default)]
    pub name: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub is_active: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWebhookEndpointIntent {
    /// @inject_tag: validate:"required,uuid"
    pub endpoint_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
/// Result of the intended action.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Result {
    #[serde(default)]
    #[serde(flatten)]
    pub inner: ::core::option::Option<result::Inner>,
}
/// Nested message and enum types in `Result`.
pub mod result {
    #[derive(::serde::Serialize, ::serde::Deserialize)]
    #[derive(Clone, PartialEq)]
    #[serde(rename_all = "camelCase")]
    #[derive(Debug)]
    pub enum Inner {
        CreateOrganizationResult(super::CreateOrganizationResult),
        CreateAuthenticatorsResult(super::CreateAuthenticatorsResult),
        CreateUsersResult(super::CreateUsersResult),
        CreatePrivateKeysResult(super::CreatePrivateKeysResult),
        CreateInvitationsResult(super::CreateInvitationsResult),
        AcceptInvitationResult(super::AcceptInvitationResult),
        SignRawPayloadResult(super::SignRawPayloadResult),
        CreatePolicyResult(super::CreatePolicyResult),
        DisablePrivateKeyResult(super::DisablePrivateKeyResult),
        DeleteUsersResult(super::DeleteUsersResult),
        DeleteAuthenticatorsResult(super::DeleteAuthenticatorsResult),
        DeleteInvitationResult(super::DeleteInvitationResult),
        DeleteOrganizationResult(super::DeleteOrganizationResult),
        DeletePolicyResult(super::DeletePolicyResult),
        CreateUserTagResult(super::CreateUserTagResult),
        DeleteUserTagsResult(super::DeleteUserTagsResult),
        SignTransactionResult(super::SignTransactionResult),
        DeleteApiKeysResult(super::DeleteApiKeysResult),
        CreateApiKeysResult(super::CreateApiKeysResult),
        CreatePrivateKeyTagResult(super::CreatePrivateKeyTagResult),
        DeletePrivateKeyTagsResult(super::DeletePrivateKeyTagsResult),
        SetPaymentMethodResult(super::super::billing::SetPaymentMethodResult),
        ActivateBillingTierResult(super::super::billing::ActivateBillingTierResult),
        DeletePaymentMethodResult(super::super::billing::DeletePaymentMethodResult),
        CreateApiOnlyUsersResult(super::CreateApiOnlyUsersResult),
        UpdateRootQuorumResult(super::UpdateRootQuorumResult),
        UpdateUserTagResult(super::UpdateUserTagResult),
        UpdatePrivateKeyTagResult(super::UpdatePrivateKeyTagResult),
        CreateSubOrganizationResult(super::CreateSubOrganizationResult),
        UpdateAllowedOriginsResult(super::UpdateAllowedOriginsResult),
        CreatePrivateKeysResultV2(super::CreatePrivateKeysResultV2),
        UpdateUserResult(super::UpdateUserResult),
        UpdatePolicyResult(super::UpdatePolicyResult),
        CreateSubOrganizationResultV3(super::CreateSubOrganizationResultV3),
        CreateWalletResult(super::CreateWalletResult),
        CreateWalletAccountsResult(super::CreateWalletAccountsResult),
        InitUserEmailRecoveryResult(super::InitUserEmailRecoveryResult),
        RecoverUserResult(super::RecoverUserResult),
        SetOrganizationFeatureResult(super::SetOrganizationFeatureResult),
        RemoveOrganizationFeatureResult(super::RemoveOrganizationFeatureResult),
        ExportPrivateKeyResult(super::ExportPrivateKeyResult),
        ExportWalletResult(super::ExportWalletResult),
        CreateSubOrganizationResultV4(super::CreateSubOrganizationResultV4),
        EmailAuthResult(super::EmailAuthResult),
        ExportWalletAccountResult(super::ExportWalletAccountResult),
        InitImportWalletResult(super::InitImportWalletResult),
        ImportWalletResult(super::ImportWalletResult),
        InitImportPrivateKeyResult(super::InitImportPrivateKeyResult),
        ImportPrivateKeyResult(super::ImportPrivateKeyResult),
        CreatePoliciesResult(super::CreatePoliciesResult),
        SignRawPayloadsResult(super::SignRawPayloadsResult),
        CreateReadOnlySessionResult(super::CreateReadOnlySessionResult),
        CreateOauthProvidersResult(super::CreateOauthProvidersResult),
        DeleteOauthProvidersResult(super::DeleteOauthProvidersResult),
        CreateSubOrganizationResultV5(super::CreateSubOrganizationResultV5),
        OauthResult(super::OauthResult),
        CreateReadWriteSessionResult(super::CreateReadWriteSessionResult),
        CreateSubOrganizationResultV6(super::CreateSubOrganizationResultV6),
        DeletePrivateKeysResult(super::DeletePrivateKeysResult),
        DeleteWalletsResult(super::DeleteWalletsResult),
        CreateReadWriteSessionResultV2(super::CreateReadWriteSessionResultV2),
        DeleteSubOrganizationResult(super::DeleteSubOrganizationResult),
        InitOtpAuthResult(super::InitOtpAuthResult),
        OtpAuthResult(super::OtpAuthResult),
        CreateSubOrganizationResultV7(super::CreateSubOrganizationResultV7),
        UpdateWalletResult(super::UpdateWalletResult),
        UpdatePolicyResultV2(super::UpdatePolicyResultV2),
        InitOtpAuthResultV2(super::InitOtpAuthResultV2),
        InitOtpResult(super::InitOtpResult),
        VerifyOtpResult(super::VerifyOtpResult),
        OtpLoginResult(super::OtpLoginResult),
        StampLoginResult(super::StampLoginResult),
        OauthLoginResult(super::OauthLoginResult),
        UpdateUserNameResult(super::UpdateUserNameResult),
        UpdateUserEmailResult(super::UpdateUserEmailResult),
        UpdateUserPhoneNumberResult(super::UpdateUserPhoneNumberResult),
        InitFiatOnRampResult(super::InitFiatOnRampResult),
        CreateSmartContractInterfaceResult(super::CreateSmartContractInterfaceResult),
        DeleteSmartContractInterfaceResult(super::DeleteSmartContractInterfaceResult),
        EnableAuthProxyResult(super::EnableAuthProxyResult),
        DisableAuthProxyResult(super::DisableAuthProxyResult),
        UpdateAuthProxyConfigResult(super::UpdateAuthProxyConfigResult),
        CreateOauth2CredentialResult(super::CreateOauth2CredentialResult),
        UpdateOauth2CredentialResult(super::UpdateOauth2CredentialResult),
        DeleteOauth2CredentialResult(super::DeleteOauth2CredentialResult),
        Oauth2AuthenticateResult(super::Oauth2AuthenticateResult),
        DeleteWalletAccountsResult(super::DeleteWalletAccountsResult),
        DeletePoliciesResult(super::DeletePoliciesResult),
        EthSendRawTransactionResult(super::EthSendRawTransactionResult),
        CreateFiatOnRampCredentialResult(super::CreateFiatOnRampCredentialResult),
        UpdateFiatOnRampCredentialResult(super::UpdateFiatOnRampCredentialResult),
        DeleteFiatOnRampCredentialResult(super::DeleteFiatOnRampCredentialResult),
        EthSendTransactionResult(super::EthSendTransactionResult),
        UpsertGasUsageConfigResult(super::UpsertGasUsageConfigResult),
        CreateTvcAppResult(super::CreateTvcAppResult),
        CreateTvcDeploymentResult(super::CreateTvcDeploymentResult),
        CreateTvcManifestApprovalsResult(super::CreateTvcManifestApprovalsResult),
        SolSendTransactionResult(super::SolSendTransactionResult),
        InitOtpResultV2(super::InitOtpResultV2),
        UpdateOrganizationNameResult(super::UpdateOrganizationNameResult),
        CreateSubOrganizationResultV8(super::CreateSubOrganizationResultV8),
        CreateOauthProvidersResultV2(super::CreateOauthProvidersResultV2),
        CreateWebhookEndpointResult(super::CreateWebhookEndpointResult),
        UpdateWebhookEndpointResult(super::UpdateWebhookEndpointResult),
        DeleteWebhookEndpointResult(super::DeleteWebhookEndpointResult),
    }
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpsertGasUsageConfigResult {
    /// @inject_tag: validate:"required,uuid4"
    pub gas_usage_config_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EnableAuthProxyResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct DisableAuthProxyResult {}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOrganizationResult {
    pub organization_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateAuthenticatorsResult {
    #[serde(default)]
    pub authenticator_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateApiKeysResult {
    #[serde(default)]
    pub api_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUsersResult {
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserNameResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserEmailResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserPhoneNumberResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateWalletResult {
    pub wallet_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateApiOnlyUsersResult {
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateInvitationsResult {
    #[serde(default)]
    pub invitation_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct AcceptInvitationResult {
    pub invitation_id: ::prost::alloc::string::String,
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeysResult {
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeysResultV2 {
    #[serde(default)]
    pub private_keys: ::prost::alloc::vec::Vec<PrivateKeyResult>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct PrivateKeyResult {
    pub private_key_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<Address>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Address {
    pub format: super::super::common::v1::AddressFormat,
    pub address: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignRawPayloadResult {
    pub r: ::prost::alloc::string::String,
    pub s: ::prost::alloc::string::String,
    pub v: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignRawPayloadsResult {
    #[serde(default)]
    pub signatures: ::prost::alloc::vec::Vec<SignRawPayloadResult>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWalletResult {
    pub wallet_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWalletAccountsResult {
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitUserEmailRecoveryResult {
    pub user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthLoginResult {
    pub session: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitFiatOnRampResult {
    pub on_ramp_url: ::prost::alloc::string::String,
    pub on_ramp_transaction_id: ::prost::alloc::string::String,
    pub on_ramp_url_signature: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct StampLoginResult {
    pub session: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OtpLoginResult {
    pub session: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpResult {
    pub otp_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpResultV2 {
    pub otp_id: ::prost::alloc::string::String,
    pub otp_encryption_target_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpAuthResult {
    pub otp_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitOtpAuthResultV2 {
    pub otp_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OtpAuthResult {
    pub user_id: ::prost::alloc::string::String,
    pub api_key_id: ::prost::alloc::string::String,
    pub credential_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct VerifyOtpResult {
    pub verification_token: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthResult {
    pub user_id: ::prost::alloc::string::String,
    pub api_key_id: ::prost::alloc::string::String,
    pub credential_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EmailAuthResult {
    pub user_id: ::prost::alloc::string::String,
    pub api_key_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePolicyResult {
    pub policy_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePoliciesResult {
    #[serde(default)]
    pub policy_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePolicyResult {
    pub policy_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePolicyResultV2 {
    pub policy_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[serde_with::serde_as]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateReadOnlySessionResult {
    pub organization_id: ::prost::alloc::string::String,
    pub organization_name: ::prost::alloc::string::String,
    pub user_id: ::prost::alloc::string::String,
    pub username: ::prost::alloc::string::String,
    pub session: ::prost::alloc::string::String,
    #[serde(default)]
    #[serde_as(as = "serde_with::DisplayFromStr")]
    pub session_expiry: u64,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateReadWriteSessionResult {
    pub organization_id: ::prost::alloc::string::String,
    pub organization_name: ::prost::alloc::string::String,
    pub user_id: ::prost::alloc::string::String,
    pub username: ::prost::alloc::string::String,
    pub api_key_id: ::prost::alloc::string::String,
    pub credential_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateReadWriteSessionResultV2 {
    pub organization_id: ::prost::alloc::string::String,
    pub organization_name: ::prost::alloc::string::String,
    pub user_id: ::prost::alloc::string::String,
    pub username: ::prost::alloc::string::String,
    pub api_key_id: ::prost::alloc::string::String,
    pub credential_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DisablePrivateKeyResult {
    pub private_key_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteUsersResult {
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteInvitationResult {
    pub invitation_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteAuthenticatorsResult {
    #[serde(default)]
    pub authenticator_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteApiKeysResult {
    #[serde(default)]
    pub api_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOrganizationResult {
    pub organization_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePolicyResult {
    pub policy_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateUserTagResult {
    pub user_tag_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateUserTagResult {
    pub user_tag_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteUserTagsResult {
    #[serde(default)]
    pub user_tag_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreatePrivateKeyTagResult {
    pub private_key_tag_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdatePrivateKeyTagResult {
    pub private_key_tag_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePrivateKeyTagsResult {
    #[serde(default)]
    pub private_key_tag_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateOrganizationNameResult {
    pub organization_id: ::prost::alloc::string::String,
    pub organization_name: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SignTransactionResult {
    pub signed_transaction: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSmartContractInterfaceResult {
    pub smart_contract_interface_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteSmartContractInterfaceResult {
    pub smart_contract_interface_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
/// TODO: this should include the new root quorum
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct UpdateRootQuorumResult {}
#[derive(Debug)]
/// TODO: this should include the new origins
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, Copy, PartialEq)]
pub struct UpdateAllowedOriginsResult {}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResult {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// Going directly to V3 to have it in parity with intent versioning
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV3 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub private_keys: ::prost::alloc::vec::Vec<PrivateKeyResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WalletResult {
    pub wallet_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
/// Going directly to V4 to have it in parity with intent versioning
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV4 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV5 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV6 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV7 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateSubOrganizationResultV8 {
    pub sub_organization_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub wallet: ::core::option::Option<WalletResult>,
    #[serde(default)]
    pub root_user_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RecoverUserResult {
    #[serde(default)]
    pub authenticator_id: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SetOrganizationFeatureResult {
    #[serde(default)]
    pub features: ::prost::alloc::vec::Vec<super::super::data::v1::Feature>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct RemoveOrganizationFeatureResult {
    #[serde(default)]
    pub features: ::prost::alloc::vec::Vec<super::super::data::v1::Feature>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportPrivateKeyResult {
    pub private_key_id: ::prost::alloc::string::String,
    pub export_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportWalletResult {
    pub wallet_id: ::prost::alloc::string::String,
    pub export_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ExportWalletAccountResult {
    pub address: ::prost::alloc::string::String,
    pub export_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitImportWalletResult {
    pub import_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ImportWalletResult {
    pub wallet_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InitImportPrivateKeyResult {
    pub import_bundle: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ImportPrivateKeyResult {
    pub private_key_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub addresses: ::prost::alloc::vec::Vec<Address>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauthProvidersResult {
    #[serde(default)]
    pub provider_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauthProvidersResultV2 {
    #[serde(default)]
    pub provider_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOauthProvidersResult {
    #[serde(default)]
    pub provider_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePrivateKeysResult {
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletsResult {
    #[serde(default)]
    pub wallet_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteSubOrganizationResult {
    pub sub_organization_uuid: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateOauth2CredentialResult {
    pub oauth2_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateOauth2CredentialResult {
    pub oauth2_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteOauth2CredentialResult {
    pub oauth2_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Oauth2AuthenticateResult {
    /// @inject_tag: validate:"required"
    pub oidc_token: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletAccountsResult {
    #[serde(default)]
    pub wallet_account_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePoliciesResult {
    #[serde(default)]
    pub policy_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcAppResult {
    pub app_id: ::prost::alloc::string::String,
    pub manifest_set_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub manifest_set_operator_ids: ::prost::alloc::vec::Vec<
        ::prost::alloc::string::String,
    >,
    #[serde(default)]
    pub manifest_set_threshold: u32,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcDeploymentResult {
    pub deployment_id: ::prost::alloc::string::String,
    pub manifest_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateTvcManifestApprovalsResult {
    #[serde(default)]
    pub approval_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EthSendRawTransactionResult {
    pub transaction_hash: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateFiatOnRampCredentialResult {
    pub fiat_on_ramp_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateFiatOnRampCredentialResult {
    pub fiat_on_ramp_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteFiatOnRampCredentialResult {
    pub fiat_on_ramp_credential_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct EthSendTransactionResult {
    pub send_transaction_status_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct SolSendTransactionResult {
    pub send_transaction_status_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WebhookEndpointData {
    pub endpoint_id: ::prost::alloc::string::String,
    pub organization_id: ::prost::alloc::string::String,
    pub url: ::prost::alloc::string::String,
    pub name: ::prost::alloc::string::String,
    #[serde(default)]
    pub is_active: bool,
    #[serde(default)]
    pub subscriptions: ::prost::alloc::vec::Vec<WebhookSubscriptionParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct CreateWebhookEndpointResult {
    pub endpoint_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub webhook_endpoint: ::core::option::Option<WebhookEndpointData>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UpdateWebhookEndpointResult {
    pub endpoint_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub webhook_endpoint: ::core::option::Option<WebhookEndpointData>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWebhookEndpointResult {
    pub endpoint_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WebhookSubscriptionParams {
    /// @inject_tag: validate:"required"
    pub event_type: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub filters_json: ::core::option::Option<::prost::alloc::string::String>,
    #[serde(default)]
    pub is_active: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthProviderParams {
    pub provider_name: ::prost::alloc::string::String,
    pub oidc_token: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OauthProviderParamsV2 {
    pub provider_name: ::prost::alloc::string::String,
    #[serde(default)]
    #[serde(flatten)]
    pub token_or_claims: ::core::option::Option<oauth_provider_params_v2::TokenOrClaims>,
}
/// Nested message and enum types in `OauthProviderParamsV2`.
pub mod oauth_provider_params_v2 {
    #[derive(::serde::Serialize, ::serde::Deserialize)]
    #[derive(Clone, PartialEq)]
    #[serde(rename_all = "camelCase")]
    #[derive(Debug)]
    pub enum TokenOrClaims {
        OidcToken(::prost::alloc::string::String),
        OidcClaims(super::OidcClaims),
    }
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct OidcClaims {
    /// @inject_tag: validate:"required"
    pub iss: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub sub: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub aud: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ApiKeyParamsV2 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub api_key_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"hexadecimal,tk_api_key"
    pub public_key: ::prost::alloc::string::String,
    pub curve_type: super::super::common::v1::ApiKeyCurve,
    #[serde(default)]
    pub expiration_seconds: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UserParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub access_type: super::super::common::v1::AccessType,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParams>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UserParamsV2 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UserParamsV3 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,e164"
    #[serde(default)]
    pub user_phone_number: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParams>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct UserParamsV4 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"omitempty,e164"
    #[serde(default)]
    pub user_phone_number: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<ApiKeyParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub authenticators: ::prost::alloc::vec::Vec<AuthenticatorParamsV2>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub oauth_providers: ::prost::alloc::vec::Vec<OauthProviderParamsV2>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct AuthenticatorParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub authenticator_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,uuid"
    pub user_id: ::prost::alloc::string::String,
    #[serde(default)]
    pub attestation: ::core::option::Option<
        super::super::webauthn::v1::PublicKeyCredentialWithAttestation,
    >,
    /// @inject_tag: validate:"required,max=256"
    pub challenge: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct AuthenticatorParamsV2 {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub authenticator_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,max=256"
    pub challenge: ::prost::alloc::string::String,
    #[serde(default)]
    pub attestation: ::core::option::Option<Attestation>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct Attestation {
    /// @inject_tag: validate:"required,max=256"
    pub credential_id: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub client_data_json: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub attestation_object: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub transports: Vec<super::super::webauthn::v1::AuthenticatorTransport>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct InvitationParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub receiver_user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required,email,tk_email"
    pub receiver_user_email: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub receiver_user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"required"
    pub access_type: super::super::common::v1::AccessType,
    /// @inject_tag: validate:"required,uuid"
    pub sender_user_id: ::prost::alloc::string::String,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ApiOnlyUserParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub user_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"omitempty,email,tk_email"
    #[serde(default)]
    pub user_email: ::core::option::Option<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub user_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub api_keys: ::prost::alloc::vec::Vec<super::api::ApiKeyParams>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct PrivateKeyParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub private_key_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub curve: super::super::common::v1::Curve,
    /// @inject_tag: validate:"dive,uuid"
    #[serde(default)]
    pub private_key_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    /// @inject_tag: validate:"dive"
    #[serde(default)]
    pub address_formats: Vec<super::super::common::v1::AddressFormat>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WalletParams {
    /// @inject_tag: validate:"required,tk_label_length,tk_label"
    pub wallet_name: ::prost::alloc::string::String,
    /// @inject_tag: validate:"dive,required"
    #[serde(default)]
    pub accounts: ::prost::alloc::vec::Vec<WalletAccountParams>,
    /// @inject_tag: validate:"omitempty"
    #[serde(default)]
    pub mnemonic_length: ::core::option::Option<i32>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct WalletAccountParams {
    /// @inject_tag: validate:"required"
    pub curve: super::super::common::v1::Curve,
    /// @inject_tag: validate:"required"
    pub path_format: super::super::common::v1::PathFormat,
    /// @inject_tag: validate:"required"
    pub path: ::prost::alloc::string::String,
    /// @inject_tag: validate:"required"
    pub address_format: super::super::common::v1::AddressFormat,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePrivateKeysParams {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub private_key_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletsParams {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub wallet_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeleteWalletAccountsParams {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub wallet_account_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
    #[serde(default)]
    pub delete_without_export: ::core::option::Option<bool>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct DeletePoliciesParams {
    /// @inject_tag: validate:"required,dive,uuid"
    #[serde(default)]
    pub policy_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Debug)]
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[serde(rename_all = "camelCase")]
#[derive(Clone, PartialEq)]
pub struct ClientSignature {
    pub public_key: ::prost::alloc::string::String,
    pub scheme: super::super::common::v1::ClientSignatureScheme,
    pub message: ::prost::alloc::string::String,
    pub signature: ::prost::alloc::string::String,
}
/// Type of Activity, such as Add User, or Sign Transaction.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum ActivityType {
    #[serde(rename = "ACTIVITY_TYPE_UNSPECIFIED")]
    Unspecified = 0,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_API_KEYS")]
    CreateApiKeys = 1,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_USERS")]
    CreateUsers = 2,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS")]
    CreatePrivateKeys = 3,
    #[serde(rename = "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD")]
    SignRawPayload = 4,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_INVITATIONS")]
    CreateInvitations = 5,
    #[serde(rename = "ACTIVITY_TYPE_ACCEPT_INVITATION")]
    AcceptInvitation = 6,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_POLICY")]
    CreatePolicy = 7,
    #[serde(rename = "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY")]
    DisablePrivateKey = 8,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_USERS")]
    DeleteUsers = 9,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_API_KEYS")]
    DeleteApiKeys = 10,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_INVITATION")]
    DeleteInvitation = 11,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_ORGANIZATION")]
    DeleteOrganization = 12,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_POLICY")]
    DeletePolicy = 13,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_USER_TAG")]
    CreateUserTag = 14,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_USER_TAGS")]
    DeleteUserTags = 15,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_ORGANIZATION")]
    CreateOrganization = 16,
    #[serde(rename = "ACTIVITY_TYPE_SIGN_TRANSACTION")]
    SignTransaction = 17,
    #[serde(rename = "ACTIVITY_TYPE_APPROVE_ACTIVITY")]
    ApproveActivity = 18,
    #[serde(rename = "ACTIVITY_TYPE_REJECT_ACTIVITY")]
    RejectActivity = 19,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_AUTHENTICATORS")]
    DeleteAuthenticators = 20,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_AUTHENTICATORS")]
    CreateAuthenticators = 21,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG")]
    CreatePrivateKeyTag = 22,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS")]
    DeletePrivateKeyTags = 23,
    #[serde(rename = "ACTIVITY_TYPE_SET_PAYMENT_METHOD")]
    SetPaymentMethod = 24,
    #[serde(rename = "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER")]
    ActivateBillingTier = 25,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD")]
    DeletePaymentMethod = 26,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_POLICY_V2")]
    CreatePolicyV2 = 27,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_POLICY_V3")]
    CreatePolicyV3 = 28,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_API_ONLY_USERS")]
    CreateApiOnlyUsers = 29,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM")]
    UpdateRootQuorum = 30,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_USER_TAG")]
    UpdateUserTag = 31,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG")]
    UpdatePrivateKeyTag = 32,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2")]
    CreateAuthenticatorsV2 = 33,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2")]
    CreateOrganizationV2 = 34,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_USERS_V2")]
    CreateUsersV2 = 35,
    #[serde(rename = "ACTIVITY_TYPE_ACCEPT_INVITATION_V2")]
    AcceptInvitationV2 = 36,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION")]
    CreateSubOrganization = 37,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2")]
    CreateSubOrganizationV2 = 38,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS")]
    UpdateAllowedOrigins = 39,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2")]
    CreatePrivateKeysV2 = 40,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_USER")]
    UpdateUser = 41,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_POLICY")]
    UpdatePolicy = 42,
    #[serde(rename = "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2")]
    SetPaymentMethodV2 = 43,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3")]
    CreateSubOrganizationV3 = 44,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_WALLET")]
    CreateWallet = 45,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS")]
    CreateWalletAccounts = 46,
    #[serde(rename = "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY")]
    InitUserEmailRecovery = 47,
    #[serde(rename = "ACTIVITY_TYPE_RECOVER_USER")]
    RecoverUser = 48,
    #[serde(rename = "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE")]
    SetOrganizationFeature = 49,
    #[serde(rename = "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE")]
    RemoveOrganizationFeature = 50,
    #[serde(rename = "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2")]
    SignRawPayloadV2 = 51,
    #[serde(rename = "ACTIVITY_TYPE_SIGN_TRANSACTION_V2")]
    SignTransactionV2 = 52,
    #[serde(rename = "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY")]
    ExportPrivateKey = 53,
    #[serde(rename = "ACTIVITY_TYPE_EXPORT_WALLET")]
    ExportWallet = 54,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4")]
    CreateSubOrganizationV4 = 55,
    #[serde(rename = "ACTIVITY_TYPE_EMAIL_AUTH")]
    EmailAuth = 56,
    #[serde(rename = "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT")]
    ExportWalletAccount = 57,
    #[serde(rename = "ACTIVITY_TYPE_INIT_IMPORT_WALLET")]
    InitImportWallet = 58,
    #[serde(rename = "ACTIVITY_TYPE_IMPORT_WALLET")]
    ImportWallet = 59,
    #[serde(rename = "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY")]
    InitImportPrivateKey = 60,
    #[serde(rename = "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY")]
    ImportPrivateKey = 61,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_POLICIES")]
    CreatePolicies = 62,
    #[serde(rename = "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS")]
    SignRawPayloads = 63,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION")]
    CreateReadOnlySession = 64,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS")]
    CreateOauthProviders = 65,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS")]
    DeleteOauthProviders = 66,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5")]
    CreateSubOrganizationV5 = 67,
    #[serde(rename = "ACTIVITY_TYPE_OAUTH")]
    Oauth = 68,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_API_KEYS_V2")]
    CreateApiKeysV2 = 69,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION")]
    CreateReadWriteSession = 70,
    #[serde(rename = "ACTIVITY_TYPE_EMAIL_AUTH_V2")]
    EmailAuthV2 = 71,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6")]
    CreateSubOrganizationV6 = 72,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS")]
    DeletePrivateKeys = 73,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_WALLETS")]
    DeleteWallets = 74,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2")]
    CreateReadWriteSessionV2 = 75,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION")]
    DeleteSubOrganization = 76,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP_AUTH")]
    InitOtpAuth = 77,
    #[serde(rename = "ACTIVITY_TYPE_OTP_AUTH")]
    OtpAuth = 78,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7")]
    CreateSubOrganizationV7 = 79,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_WALLET")]
    UpdateWallet = 80,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_POLICY_V2")]
    UpdatePolicyV2 = 81,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_USERS_V3")]
    CreateUsersV3 = 82,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP_AUTH_V2")]
    InitOtpAuthV2 = 83,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP")]
    InitOtp = 84,
    #[serde(rename = "ACTIVITY_TYPE_VERIFY_OTP")]
    VerifyOtp = 85,
    #[serde(rename = "ACTIVITY_TYPE_OTP_LOGIN")]
    OtpLogin = 86,
    #[serde(rename = "ACTIVITY_TYPE_STAMP_LOGIN")]
    StampLogin = 87,
    #[serde(rename = "ACTIVITY_TYPE_OAUTH_LOGIN")]
    OauthLogin = 88,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_USER_NAME")]
    UpdateUserName = 89,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_USER_EMAIL")]
    UpdateUserEmail = 90,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER")]
    UpdateUserPhoneNumber = 91,
    #[serde(rename = "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP")]
    InitFiatOnRamp = 92,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE")]
    CreateSmartContractInterface = 93,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE")]
    DeleteSmartContractInterface = 94,
    #[serde(rename = "ACTIVITY_TYPE_ENABLE_AUTH_PROXY")]
    EnableAuthProxy = 95,
    #[serde(rename = "ACTIVITY_TYPE_DISABLE_AUTH_PROXY")]
    DisableAuthProxy = 96,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG")]
    UpdateAuthProxyConfig = 97,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL")]
    CreateOauth2Credential = 98,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL")]
    UpdateOauth2Credential = 99,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL")]
    DeleteOauth2Credential = 100,
    #[serde(rename = "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE")]
    Oauth2Authenticate = 101,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_WALLET_ACCOUNTS")]
    DeleteWalletAccounts = 102,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_POLICIES")]
    DeletePolicies = 103,
    #[serde(rename = "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION")]
    EthSendRawTransaction = 104,
    #[serde(rename = "ACTIVITY_TYPE_ETH_SEND_TRANSACTION")]
    EthSendTransaction = 105,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL")]
    CreateFiatOnRampCredential = 106,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL")]
    UpdateFiatOnRampCredential = 107,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL")]
    DeleteFiatOnRampCredential = 108,
    #[serde(rename = "ACTIVITY_TYPE_EMAIL_AUTH_V3")]
    EmailAuthV3 = 109,
    #[serde(rename = "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2")]
    InitUserEmailRecoveryV2 = 110,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP_AUTH_V3")]
    InitOtpAuthV3 = 111,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP_V2")]
    InitOtpV2 = 112,
    #[serde(rename = "ACTIVITY_TYPE_UPSERT_GAS_USAGE_CONFIG")]
    UpsertGasUsageConfig = 113,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_TVC_APP")]
    CreateTvcApp = 114,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_TVC_DEPLOYMENT")]
    CreateTvcDeployment = 115,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_TVC_MANIFEST_APPROVALS")]
    CreateTvcManifestApprovals = 116,
    #[serde(rename = "ACTIVITY_TYPE_SOL_SEND_TRANSACTION")]
    SolSendTransaction = 117,
    #[serde(rename = "ACTIVITY_TYPE_INIT_OTP_V3")]
    InitOtpV3 = 118,
    #[serde(rename = "ACTIVITY_TYPE_VERIFY_OTP_V2")]
    VerifyOtpV2 = 119,
    #[serde(rename = "ACTIVITY_TYPE_OTP_LOGIN_V2")]
    OtpLoginV2 = 120,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_ORGANIZATION_NAME")]
    UpdateOrganizationName = 121,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V8")]
    CreateSubOrganizationV8 = 122,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS_V2")]
    CreateOauthProvidersV2 = 123,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_USERS_V4")]
    CreateUsersV4 = 124,
    #[serde(rename = "ACTIVITY_TYPE_CREATE_WEBHOOK_ENDPOINT")]
    CreateWebhookEndpoint = 125,
    #[serde(rename = "ACTIVITY_TYPE_UPDATE_WEBHOOK_ENDPOINT")]
    UpdateWebhookEndpoint = 126,
    #[serde(rename = "ACTIVITY_TYPE_DELETE_WEBHOOK_ENDPOINT")]
    DeleteWebhookEndpoint = 127,
}
impl ActivityType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Unspecified => "ACTIVITY_TYPE_UNSPECIFIED",
            Self::CreateApiKeys => "ACTIVITY_TYPE_CREATE_API_KEYS",
            Self::CreateUsers => "ACTIVITY_TYPE_CREATE_USERS",
            Self::CreatePrivateKeys => "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS",
            Self::SignRawPayload => "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD",
            Self::CreateInvitations => "ACTIVITY_TYPE_CREATE_INVITATIONS",
            Self::AcceptInvitation => "ACTIVITY_TYPE_ACCEPT_INVITATION",
            Self::CreatePolicy => "ACTIVITY_TYPE_CREATE_POLICY",
            Self::DisablePrivateKey => "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY",
            Self::DeleteUsers => "ACTIVITY_TYPE_DELETE_USERS",
            Self::DeleteApiKeys => "ACTIVITY_TYPE_DELETE_API_KEYS",
            Self::DeleteInvitation => "ACTIVITY_TYPE_DELETE_INVITATION",
            Self::DeleteOrganization => "ACTIVITY_TYPE_DELETE_ORGANIZATION",
            Self::DeletePolicy => "ACTIVITY_TYPE_DELETE_POLICY",
            Self::CreateUserTag => "ACTIVITY_TYPE_CREATE_USER_TAG",
            Self::DeleteUserTags => "ACTIVITY_TYPE_DELETE_USER_TAGS",
            Self::CreateOrganization => "ACTIVITY_TYPE_CREATE_ORGANIZATION",
            Self::SignTransaction => "ACTIVITY_TYPE_SIGN_TRANSACTION",
            Self::ApproveActivity => "ACTIVITY_TYPE_APPROVE_ACTIVITY",
            Self::RejectActivity => "ACTIVITY_TYPE_REJECT_ACTIVITY",
            Self::DeleteAuthenticators => "ACTIVITY_TYPE_DELETE_AUTHENTICATORS",
            Self::CreateAuthenticators => "ACTIVITY_TYPE_CREATE_AUTHENTICATORS",
            Self::CreatePrivateKeyTag => "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG",
            Self::DeletePrivateKeyTags => "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS",
            Self::SetPaymentMethod => "ACTIVITY_TYPE_SET_PAYMENT_METHOD",
            Self::ActivateBillingTier => "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER",
            Self::DeletePaymentMethod => "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD",
            Self::CreatePolicyV2 => "ACTIVITY_TYPE_CREATE_POLICY_V2",
            Self::CreatePolicyV3 => "ACTIVITY_TYPE_CREATE_POLICY_V3",
            Self::CreateApiOnlyUsers => "ACTIVITY_TYPE_CREATE_API_ONLY_USERS",
            Self::UpdateRootQuorum => "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM",
            Self::UpdateUserTag => "ACTIVITY_TYPE_UPDATE_USER_TAG",
            Self::UpdatePrivateKeyTag => "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG",
            Self::CreateAuthenticatorsV2 => "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2",
            Self::CreateOrganizationV2 => "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2",
            Self::CreateUsersV2 => "ACTIVITY_TYPE_CREATE_USERS_V2",
            Self::AcceptInvitationV2 => "ACTIVITY_TYPE_ACCEPT_INVITATION_V2",
            Self::CreateSubOrganization => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION",
            Self::CreateSubOrganizationV2 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2",
            Self::UpdateAllowedOrigins => "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS",
            Self::CreatePrivateKeysV2 => "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2",
            Self::UpdateUser => "ACTIVITY_TYPE_UPDATE_USER",
            Self::UpdatePolicy => "ACTIVITY_TYPE_UPDATE_POLICY",
            Self::SetPaymentMethodV2 => "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2",
            Self::CreateSubOrganizationV3 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3",
            Self::CreateWallet => "ACTIVITY_TYPE_CREATE_WALLET",
            Self::CreateWalletAccounts => "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS",
            Self::InitUserEmailRecovery => "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY",
            Self::RecoverUser => "ACTIVITY_TYPE_RECOVER_USER",
            Self::SetOrganizationFeature => "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE",
            Self::RemoveOrganizationFeature => {
                "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE"
            }
            Self::SignRawPayloadV2 => "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2",
            Self::SignTransactionV2 => "ACTIVITY_TYPE_SIGN_TRANSACTION_V2",
            Self::ExportPrivateKey => "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY",
            Self::ExportWallet => "ACTIVITY_TYPE_EXPORT_WALLET",
            Self::CreateSubOrganizationV4 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4",
            Self::EmailAuth => "ACTIVITY_TYPE_EMAIL_AUTH",
            Self::ExportWalletAccount => "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT",
            Self::InitImportWallet => "ACTIVITY_TYPE_INIT_IMPORT_WALLET",
            Self::ImportWallet => "ACTIVITY_TYPE_IMPORT_WALLET",
            Self::InitImportPrivateKey => "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY",
            Self::ImportPrivateKey => "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY",
            Self::CreatePolicies => "ACTIVITY_TYPE_CREATE_POLICIES",
            Self::SignRawPayloads => "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS",
            Self::CreateReadOnlySession => "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION",
            Self::CreateOauthProviders => "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS",
            Self::DeleteOauthProviders => "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS",
            Self::CreateSubOrganizationV5 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5",
            Self::Oauth => "ACTIVITY_TYPE_OAUTH",
            Self::CreateApiKeysV2 => "ACTIVITY_TYPE_CREATE_API_KEYS_V2",
            Self::CreateReadWriteSession => "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION",
            Self::EmailAuthV2 => "ACTIVITY_TYPE_EMAIL_AUTH_V2",
            Self::CreateSubOrganizationV6 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6",
            Self::DeletePrivateKeys => "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS",
            Self::DeleteWallets => "ACTIVITY_TYPE_DELETE_WALLETS",
            Self::CreateReadWriteSessionV2 => {
                "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2"
            }
            Self::DeleteSubOrganization => "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION",
            Self::InitOtpAuth => "ACTIVITY_TYPE_INIT_OTP_AUTH",
            Self::OtpAuth => "ACTIVITY_TYPE_OTP_AUTH",
            Self::CreateSubOrganizationV7 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7",
            Self::UpdateWallet => "ACTIVITY_TYPE_UPDATE_WALLET",
            Self::UpdatePolicyV2 => "ACTIVITY_TYPE_UPDATE_POLICY_V2",
            Self::CreateUsersV3 => "ACTIVITY_TYPE_CREATE_USERS_V3",
            Self::InitOtpAuthV2 => "ACTIVITY_TYPE_INIT_OTP_AUTH_V2",
            Self::InitOtp => "ACTIVITY_TYPE_INIT_OTP",
            Self::VerifyOtp => "ACTIVITY_TYPE_VERIFY_OTP",
            Self::OtpLogin => "ACTIVITY_TYPE_OTP_LOGIN",
            Self::StampLogin => "ACTIVITY_TYPE_STAMP_LOGIN",
            Self::OauthLogin => "ACTIVITY_TYPE_OAUTH_LOGIN",
            Self::UpdateUserName => "ACTIVITY_TYPE_UPDATE_USER_NAME",
            Self::UpdateUserEmail => "ACTIVITY_TYPE_UPDATE_USER_EMAIL",
            Self::UpdateUserPhoneNumber => "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER",
            Self::InitFiatOnRamp => "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP",
            Self::CreateSmartContractInterface => {
                "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE"
            }
            Self::DeleteSmartContractInterface => {
                "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE"
            }
            Self::EnableAuthProxy => "ACTIVITY_TYPE_ENABLE_AUTH_PROXY",
            Self::DisableAuthProxy => "ACTIVITY_TYPE_DISABLE_AUTH_PROXY",
            Self::UpdateAuthProxyConfig => "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG",
            Self::CreateOauth2Credential => "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL",
            Self::UpdateOauth2Credential => "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL",
            Self::DeleteOauth2Credential => "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL",
            Self::Oauth2Authenticate => "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE",
            Self::DeleteWalletAccounts => "ACTIVITY_TYPE_DELETE_WALLET_ACCOUNTS",
            Self::DeletePolicies => "ACTIVITY_TYPE_DELETE_POLICIES",
            Self::EthSendRawTransaction => "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION",
            Self::EthSendTransaction => "ACTIVITY_TYPE_ETH_SEND_TRANSACTION",
            Self::CreateFiatOnRampCredential => {
                "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL"
            }
            Self::UpdateFiatOnRampCredential => {
                "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL"
            }
            Self::DeleteFiatOnRampCredential => {
                "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL"
            }
            Self::EmailAuthV3 => "ACTIVITY_TYPE_EMAIL_AUTH_V3",
            Self::InitUserEmailRecoveryV2 => "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2",
            Self::InitOtpAuthV3 => "ACTIVITY_TYPE_INIT_OTP_AUTH_V3",
            Self::InitOtpV2 => "ACTIVITY_TYPE_INIT_OTP_V2",
            Self::UpsertGasUsageConfig => "ACTIVITY_TYPE_UPSERT_GAS_USAGE_CONFIG",
            Self::CreateTvcApp => "ACTIVITY_TYPE_CREATE_TVC_APP",
            Self::CreateTvcDeployment => "ACTIVITY_TYPE_CREATE_TVC_DEPLOYMENT",
            Self::CreateTvcManifestApprovals => {
                "ACTIVITY_TYPE_CREATE_TVC_MANIFEST_APPROVALS"
            }
            Self::SolSendTransaction => "ACTIVITY_TYPE_SOL_SEND_TRANSACTION",
            Self::InitOtpV3 => "ACTIVITY_TYPE_INIT_OTP_V3",
            Self::VerifyOtpV2 => "ACTIVITY_TYPE_VERIFY_OTP_V2",
            Self::OtpLoginV2 => "ACTIVITY_TYPE_OTP_LOGIN_V2",
            Self::UpdateOrganizationName => "ACTIVITY_TYPE_UPDATE_ORGANIZATION_NAME",
            Self::CreateSubOrganizationV8 => "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V8",
            Self::CreateOauthProvidersV2 => "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS_V2",
            Self::CreateUsersV4 => "ACTIVITY_TYPE_CREATE_USERS_V4",
            Self::CreateWebhookEndpoint => "ACTIVITY_TYPE_CREATE_WEBHOOK_ENDPOINT",
            Self::UpdateWebhookEndpoint => "ACTIVITY_TYPE_UPDATE_WEBHOOK_ENDPOINT",
            Self::DeleteWebhookEndpoint => "ACTIVITY_TYPE_DELETE_WEBHOOK_ENDPOINT",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "ACTIVITY_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
            "ACTIVITY_TYPE_CREATE_API_KEYS" => Some(Self::CreateApiKeys),
            "ACTIVITY_TYPE_CREATE_USERS" => Some(Self::CreateUsers),
            "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" => Some(Self::CreatePrivateKeys),
            "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" => Some(Self::SignRawPayload),
            "ACTIVITY_TYPE_CREATE_INVITATIONS" => Some(Self::CreateInvitations),
            "ACTIVITY_TYPE_ACCEPT_INVITATION" => Some(Self::AcceptInvitation),
            "ACTIVITY_TYPE_CREATE_POLICY" => Some(Self::CreatePolicy),
            "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" => Some(Self::DisablePrivateKey),
            "ACTIVITY_TYPE_DELETE_USERS" => Some(Self::DeleteUsers),
            "ACTIVITY_TYPE_DELETE_API_KEYS" => Some(Self::DeleteApiKeys),
            "ACTIVITY_TYPE_DELETE_INVITATION" => Some(Self::DeleteInvitation),
            "ACTIVITY_TYPE_DELETE_ORGANIZATION" => Some(Self::DeleteOrganization),
            "ACTIVITY_TYPE_DELETE_POLICY" => Some(Self::DeletePolicy),
            "ACTIVITY_TYPE_CREATE_USER_TAG" => Some(Self::CreateUserTag),
            "ACTIVITY_TYPE_DELETE_USER_TAGS" => Some(Self::DeleteUserTags),
            "ACTIVITY_TYPE_CREATE_ORGANIZATION" => Some(Self::CreateOrganization),
            "ACTIVITY_TYPE_SIGN_TRANSACTION" => Some(Self::SignTransaction),
            "ACTIVITY_TYPE_APPROVE_ACTIVITY" => Some(Self::ApproveActivity),
            "ACTIVITY_TYPE_REJECT_ACTIVITY" => Some(Self::RejectActivity),
            "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" => Some(Self::DeleteAuthenticators),
            "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" => Some(Self::CreateAuthenticators),
            "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" => Some(Self::CreatePrivateKeyTag),
            "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" => Some(Self::DeletePrivateKeyTags),
            "ACTIVITY_TYPE_SET_PAYMENT_METHOD" => Some(Self::SetPaymentMethod),
            "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" => Some(Self::ActivateBillingTier),
            "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" => Some(Self::DeletePaymentMethod),
            "ACTIVITY_TYPE_CREATE_POLICY_V2" => Some(Self::CreatePolicyV2),
            "ACTIVITY_TYPE_CREATE_POLICY_V3" => Some(Self::CreatePolicyV3),
            "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" => Some(Self::CreateApiOnlyUsers),
            "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" => Some(Self::UpdateRootQuorum),
            "ACTIVITY_TYPE_UPDATE_USER_TAG" => Some(Self::UpdateUserTag),
            "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" => Some(Self::UpdatePrivateKeyTag),
            "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" => {
                Some(Self::CreateAuthenticatorsV2)
            }
            "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2" => Some(Self::CreateOrganizationV2),
            "ACTIVITY_TYPE_CREATE_USERS_V2" => Some(Self::CreateUsersV2),
            "ACTIVITY_TYPE_ACCEPT_INVITATION_V2" => Some(Self::AcceptInvitationV2),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION" => Some(Self::CreateSubOrganization),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2" => {
                Some(Self::CreateSubOrganizationV2)
            }
            "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS" => Some(Self::UpdateAllowedOrigins),
            "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" => Some(Self::CreatePrivateKeysV2),
            "ACTIVITY_TYPE_UPDATE_USER" => Some(Self::UpdateUser),
            "ACTIVITY_TYPE_UPDATE_POLICY" => Some(Self::UpdatePolicy),
            "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2" => Some(Self::SetPaymentMethodV2),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3" => {
                Some(Self::CreateSubOrganizationV3)
            }
            "ACTIVITY_TYPE_CREATE_WALLET" => Some(Self::CreateWallet),
            "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" => Some(Self::CreateWalletAccounts),
            "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" => Some(Self::InitUserEmailRecovery),
            "ACTIVITY_TYPE_RECOVER_USER" => Some(Self::RecoverUser),
            "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" => {
                Some(Self::SetOrganizationFeature)
            }
            "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" => {
                Some(Self::RemoveOrganizationFeature)
            }
            "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" => Some(Self::SignRawPayloadV2),
            "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" => Some(Self::SignTransactionV2),
            "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" => Some(Self::ExportPrivateKey),
            "ACTIVITY_TYPE_EXPORT_WALLET" => Some(Self::ExportWallet),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4" => {
                Some(Self::CreateSubOrganizationV4)
            }
            "ACTIVITY_TYPE_EMAIL_AUTH" => Some(Self::EmailAuth),
            "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" => Some(Self::ExportWalletAccount),
            "ACTIVITY_TYPE_INIT_IMPORT_WALLET" => Some(Self::InitImportWallet),
            "ACTIVITY_TYPE_IMPORT_WALLET" => Some(Self::ImportWallet),
            "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" => Some(Self::InitImportPrivateKey),
            "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" => Some(Self::ImportPrivateKey),
            "ACTIVITY_TYPE_CREATE_POLICIES" => Some(Self::CreatePolicies),
            "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" => Some(Self::SignRawPayloads),
            "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" => Some(Self::CreateReadOnlySession),
            "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" => Some(Self::CreateOauthProviders),
            "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" => Some(Self::DeleteOauthProviders),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5" => {
                Some(Self::CreateSubOrganizationV5)
            }
            "ACTIVITY_TYPE_OAUTH" => Some(Self::Oauth),
            "ACTIVITY_TYPE_CREATE_API_KEYS_V2" => Some(Self::CreateApiKeysV2),
            "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION" => {
                Some(Self::CreateReadWriteSession)
            }
            "ACTIVITY_TYPE_EMAIL_AUTH_V2" => Some(Self::EmailAuthV2),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6" => {
                Some(Self::CreateSubOrganizationV6)
            }
            "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" => Some(Self::DeletePrivateKeys),
            "ACTIVITY_TYPE_DELETE_WALLETS" => Some(Self::DeleteWallets),
            "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" => {
                Some(Self::CreateReadWriteSessionV2)
            }
            "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" => Some(Self::DeleteSubOrganization),
            "ACTIVITY_TYPE_INIT_OTP_AUTH" => Some(Self::InitOtpAuth),
            "ACTIVITY_TYPE_OTP_AUTH" => Some(Self::OtpAuth),
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" => {
                Some(Self::CreateSubOrganizationV7)
            }
            "ACTIVITY_TYPE_UPDATE_WALLET" => Some(Self::UpdateWallet),
            "ACTIVITY_TYPE_UPDATE_POLICY_V2" => Some(Self::UpdatePolicyV2),
            "ACTIVITY_TYPE_CREATE_USERS_V3" => Some(Self::CreateUsersV3),
            "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" => Some(Self::InitOtpAuthV2),
            "ACTIVITY_TYPE_INIT_OTP" => Some(Self::InitOtp),
            "ACTIVITY_TYPE_VERIFY_OTP" => Some(Self::VerifyOtp),
            "ACTIVITY_TYPE_OTP_LOGIN" => Some(Self::OtpLogin),
            "ACTIVITY_TYPE_STAMP_LOGIN" => Some(Self::StampLogin),
            "ACTIVITY_TYPE_OAUTH_LOGIN" => Some(Self::OauthLogin),
            "ACTIVITY_TYPE_UPDATE_USER_NAME" => Some(Self::UpdateUserName),
            "ACTIVITY_TYPE_UPDATE_USER_EMAIL" => Some(Self::UpdateUserEmail),
            "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" => Some(Self::UpdateUserPhoneNumber),
            "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" => Some(Self::InitFiatOnRamp),
            "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" => {
                Some(Self::CreateSmartContractInterface)
            }
            "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" => {
                Some(Self::DeleteSmartContractInterface)
            }
            "ACTIVITY_TYPE_ENABLE_AUTH_PROXY" => Some(Self::EnableAuthProxy),
            "ACTIVITY_TYPE_DISABLE_AUTH_PROXY" => Some(Self::DisableAuthProxy),
            "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG" => Some(Self::UpdateAuthProxyConfig),
            "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL" => {
                Some(Self::CreateOauth2Credential)
            }
            "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL" => {
                Some(Self::UpdateOauth2Credential)
            }
            "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL" => {
                Some(Self::DeleteOauth2Credential)
            }
            "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE" => Some(Self::Oauth2Authenticate),
            "ACTIVITY_TYPE_DELETE_WALLET_ACCOUNTS" => Some(Self::DeleteWalletAccounts),
            "ACTIVITY_TYPE_DELETE_POLICIES" => Some(Self::DeletePolicies),
            "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION" => Some(Self::EthSendRawTransaction),
            "ACTIVITY_TYPE_ETH_SEND_TRANSACTION" => Some(Self::EthSendTransaction),
            "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL" => {
                Some(Self::CreateFiatOnRampCredential)
            }
            "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL" => {
                Some(Self::UpdateFiatOnRampCredential)
            }
            "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL" => {
                Some(Self::DeleteFiatOnRampCredential)
            }
            "ACTIVITY_TYPE_EMAIL_AUTH_V3" => Some(Self::EmailAuthV3),
            "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2" => {
                Some(Self::InitUserEmailRecoveryV2)
            }
            "ACTIVITY_TYPE_INIT_OTP_AUTH_V3" => Some(Self::InitOtpAuthV3),
            "ACTIVITY_TYPE_INIT_OTP_V2" => Some(Self::InitOtpV2),
            "ACTIVITY_TYPE_UPSERT_GAS_USAGE_CONFIG" => Some(Self::UpsertGasUsageConfig),
            "ACTIVITY_TYPE_CREATE_TVC_APP" => Some(Self::CreateTvcApp),
            "ACTIVITY_TYPE_CREATE_TVC_DEPLOYMENT" => Some(Self::CreateTvcDeployment),
            "ACTIVITY_TYPE_CREATE_TVC_MANIFEST_APPROVALS" => {
                Some(Self::CreateTvcManifestApprovals)
            }
            "ACTIVITY_TYPE_SOL_SEND_TRANSACTION" => Some(Self::SolSendTransaction),
            "ACTIVITY_TYPE_INIT_OTP_V3" => Some(Self::InitOtpV3),
            "ACTIVITY_TYPE_VERIFY_OTP_V2" => Some(Self::VerifyOtpV2),
            "ACTIVITY_TYPE_OTP_LOGIN_V2" => Some(Self::OtpLoginV2),
            "ACTIVITY_TYPE_UPDATE_ORGANIZATION_NAME" => {
                Some(Self::UpdateOrganizationName)
            }
            "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V8" => {
                Some(Self::CreateSubOrganizationV8)
            }
            "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS_V2" => {
                Some(Self::CreateOauthProvidersV2)
            }
            "ACTIVITY_TYPE_CREATE_USERS_V4" => Some(Self::CreateUsersV4),
            "ACTIVITY_TYPE_CREATE_WEBHOOK_ENDPOINT" => Some(Self::CreateWebhookEndpoint),
            "ACTIVITY_TYPE_UPDATE_WEBHOOK_ENDPOINT" => Some(Self::UpdateWebhookEndpoint),
            "ACTIVITY_TYPE_DELETE_WEBHOOK_ENDPOINT" => Some(Self::DeleteWebhookEndpoint),
            _ => None,
        }
    }
}
/// The current processing status of an Activity.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum ActivityStatus {
    #[serde(rename = "ACTIVITY_STATUS_UNSPECIFIED")]
    Unspecified = 0,
    #[serde(rename = "ACTIVITY_STATUS_CREATED")]
    Created = 1,
    #[serde(rename = "ACTIVITY_STATUS_PENDING")]
    Pending = 2,
    #[serde(rename = "ACTIVITY_STATUS_COMPLETED")]
    Completed = 3,
    #[serde(rename = "ACTIVITY_STATUS_FAILED")]
    Failed = 4,
    #[serde(rename = "ACTIVITY_STATUS_CONSENSUS_NEEDED")]
    ConsensusNeeded = 5,
    #[serde(rename = "ACTIVITY_STATUS_REJECTED")]
    Rejected = 6,
}
impl ActivityStatus {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Unspecified => "ACTIVITY_STATUS_UNSPECIFIED",
            Self::Created => "ACTIVITY_STATUS_CREATED",
            Self::Pending => "ACTIVITY_STATUS_PENDING",
            Self::Completed => "ACTIVITY_STATUS_COMPLETED",
            Self::Failed => "ACTIVITY_STATUS_FAILED",
            Self::ConsensusNeeded => "ACTIVITY_STATUS_CONSENSUS_NEEDED",
            Self::Rejected => "ACTIVITY_STATUS_REJECTED",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "ACTIVITY_STATUS_UNSPECIFIED" => Some(Self::Unspecified),
            "ACTIVITY_STATUS_CREATED" => Some(Self::Created),
            "ACTIVITY_STATUS_PENDING" => Some(Self::Pending),
            "ACTIVITY_STATUS_COMPLETED" => Some(Self::Completed),
            "ACTIVITY_STATUS_FAILED" => Some(Self::Failed),
            "ACTIVITY_STATUS_CONSENSUS_NEEDED" => Some(Self::ConsensusNeeded),
            "ACTIVITY_STATUS_REJECTED" => Some(Self::Rejected),
            _ => None,
        }
    }
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum UsageVariant {
    #[serde(rename = "USAGE_VARIANT_UNSPECIFIED")]
    Unspecified = 0,
    #[serde(rename = "USAGE_VARIANT_ON_RAMP_COINBASE")]
    OnRampCoinbase = 1,
    #[serde(rename = "USAGE_VARIANT_ON_RAMP_MOONPAY")]
    OnRampMoonpay = 2,
    #[serde(rename = "USAGE_VARIANT_PAYMASTER")]
    Paymaster = 3,
}
impl UsageVariant {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Unspecified => "USAGE_VARIANT_UNSPECIFIED",
            Self::OnRampCoinbase => "USAGE_VARIANT_ON_RAMP_COINBASE",
            Self::OnRampMoonpay => "USAGE_VARIANT_ON_RAMP_MOONPAY",
            Self::Paymaster => "USAGE_VARIANT_PAYMASTER",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "USAGE_VARIANT_UNSPECIFIED" => Some(Self::Unspecified),
            "USAGE_VARIANT_ON_RAMP_COINBASE" => Some(Self::OnRampCoinbase),
            "USAGE_VARIANT_ON_RAMP_MOONPAY" => Some(Self::OnRampMoonpay),
            "USAGE_VARIANT_PAYMASTER" => Some(Self::Paymaster),
            _ => None,
        }
    }
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum ActivityProtectedCategory {
    #[serde(rename = "ACTIVITY_PROTECTED_CATEGORY_UNSPECIFIED")]
    Unspecified = 0,
    #[serde(rename = "ACTIVITY_PROTECTED_CATEGORY_SIGN")]
    Sign = 2,
    #[serde(rename = "ACTIVITY_PROTECTED_CATEGORY_SMS")]
    Sms = 3,
    #[serde(rename = "ACTIVITY_PROTECTED_CATEGORY_FIAT_ON_RAMP")]
    FiatOnRamp = 4,
}
impl ActivityProtectedCategory {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Unspecified => "ACTIVITY_PROTECTED_CATEGORY_UNSPECIFIED",
            Self::Sign => "ACTIVITY_PROTECTED_CATEGORY_SIGN",
            Self::Sms => "ACTIVITY_PROTECTED_CATEGORY_SMS",
            Self::FiatOnRamp => "ACTIVITY_PROTECTED_CATEGORY_FIAT_ON_RAMP",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "ACTIVITY_PROTECTED_CATEGORY_UNSPECIFIED" => Some(Self::Unspecified),
            "ACTIVITY_PROTECTED_CATEGORY_SIGN" => Some(Self::Sign),
            "ACTIVITY_PROTECTED_CATEGORY_SMS" => Some(Self::Sms),
            "ACTIVITY_PROTECTED_CATEGORY_FIAT_ON_RAMP" => Some(Self::FiatOnRamp),
            _ => None,
        }
    }
}