rocksky 0.3.0

Async Rust SDK for the Rocksky XRPC 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
// Code generated by tools/lexgen — DO NOT EDIT.
// Source: apps/api/lexicons/**/*.json
// Regenerate via: bun run lexgen:types

#![allow(non_snake_case, non_camel_case_types, dead_code, clippy::large_enum_variant)]

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use serde_json::Value;

/// atproto blob reference shape.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct BlobRef {
    #[serde(rename = "$type", default, skip_serializing_if = "Option::is_none")]
    pub r#type: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ref_: Option<BlobCidRef>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mime_type: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub size: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct BlobCidRef {
    #[serde(rename = "$link", default, skip_serializing_if = "Option::is_none")]
    pub link: Option<String>,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorArtistViewBasic {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    #[serde(rename = "user1Rank", default, skip_serializing_if = "Option::is_none")]
    pub user1_rank: Option<i64>,
    #[serde(rename = "user2Rank", default, skip_serializing_if = "Option::is_none")]
    pub user2_rank: Option<i64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub weight: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorCompatibilityViewBasic {
    #[serde(rename = "compatibilityLevel", default, skip_serializing_if = "Option::is_none")]
    pub compatibility_level: Option<i64>,
    #[serde(rename = "compatibilityPercentage", default, skip_serializing_if = "Option::is_none")]
    pub compatibility_percentage: Option<i64>,
    #[serde(rename = "sharedArtists", default, skip_serializing_if = "Option::is_none")]
    pub shared_artists: Option<i64>,
    #[serde(rename = "topSharedArtistNames", default, skip_serializing_if = "Vec::is_empty")]
    pub top_shared_artist_names: Vec<String>,
    #[serde(rename = "topSharedDetailedArtists", default, skip_serializing_if = "Vec::is_empty")]
    pub top_shared_detailed_artists: Vec<ActorArtistViewBasic>,
    #[serde(rename = "user1ArtistCount", default, skip_serializing_if = "Option::is_none")]
    pub user1_artist_count: Option<i64>,
    #[serde(rename = "user2ArtistCount", default, skip_serializing_if = "Option::is_none")]
    pub user2_artist_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorNeighbourViewBasic {
    #[serde(rename = "userId", default, skip_serializing_if = "Option::is_none")]
    pub user_id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the actor's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The number of artists shared with the actor.
    #[serde(rename = "sharedArtistsCount", default, skip_serializing_if = "Option::is_none")]
    pub shared_artists_count: Option<i64>,
    /// The similarity score with the actor.
    #[serde(rename = "similarityScore", default, skip_serializing_if = "Option::is_none")]
    pub similarity_score: Option<i64>,
    /// The top shared artist names with the actor.
    #[serde(rename = "topSharedArtistNames", default, skip_serializing_if = "Vec::is_empty")]
    pub top_shared_artist_names: Vec<String>,
    /// The top shared artist details with the actor.
    #[serde(rename = "topSharedArtistsDetails", default, skip_serializing_if = "Vec::is_empty")]
    pub top_shared_artists_details: Vec<ArtistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorProfileViewBasic {
    /// The unique identifier of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The DID of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the actor.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the actor's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The date and time when the actor was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// The date and time when the actor was last updated.
    #[serde(rename = "updatedAt", default, skip_serializing_if = "Option::is_none")]
    pub updated_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorProfileViewDetailed {
    /// The unique identifier of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The DID of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the actor.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the actor's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The date and time when the actor was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// The date and time when the actor was last updated.
    #[serde(rename = "updatedAt", default, skip_serializing_if = "Option::is_none")]
    pub updated_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ActorTrackView {
    /// The name of the track.
    pub name: String,
    /// The primary artist name.
    pub artist: String,
    /// The album name.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// URL of the album cover image.
    #[serde(rename = "albumCoverUrl", default, skip_serializing_if = "Option::is_none")]
    pub album_cover_url: Option<String>,
    /// Track duration in milliseconds.
    #[serde(rename = "durationMs", default, skip_serializing_if = "Option::is_none")]
    pub duration_ms: Option<i64>,
    /// Music service source, e.g. 'spotify' or 'listenbrainz'.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,
    /// MusicBrainz recording ID, if available.
    #[serde(rename = "recordingMbId", default, skip_serializing_if = "Option::is_none")]
    pub recording_mb_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AddDirectoryToQueueParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    /// The directory to add to the queue
    pub directory: String,
    /// Position in the queue to insert the directory at, defaults to the end if not specified
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
    /// Whether to shuffle the added directory in the queue
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub shuffle: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AddItemsToQueueParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    pub items: Vec<String>,
    /// Position in the queue to insert the items at, defaults to the end if not specified
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
    /// Whether to shuffle the added items in the queue
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub shuffle: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AlbumRecord {
    /// The title of the album.
    pub title: String,
    /// The artist of the album.
    pub artist: String,
    /// The duration of the album in milliseconds.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// The release date of the album.
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<DateTime<Utc>>,
    /// The year the album was released.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The genre of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// The album art of the album.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<BlobRef>,
    /// The URL of the album art of the album.
    #[serde(rename = "albumArtUrl", default, skip_serializing_if = "Option::is_none")]
    pub album_art_url: Option<String>,
    /// The tags of the album.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The YouTube link of the album.
    #[serde(rename = "youtubeLink", default, skip_serializing_if = "Option::is_none")]
    pub youtube_link: Option<String>,
    /// The Spotify link of the album.
    #[serde(rename = "spotifyLink", default, skip_serializing_if = "Option::is_none")]
    pub spotify_link: Option<String>,
    /// The tidal link of the album.
    #[serde(rename = "tidalLink", default, skip_serializing_if = "Option::is_none")]
    pub tidal_link: Option<String>,
    /// The Apple Music link of the album.
    #[serde(rename = "appleMusicLink", default, skip_serializing_if = "Option::is_none")]
    pub apple_music_link: Option<String>,
    /// The date and time when the album was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AlbumViewBasic {
    /// The unique identifier of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The URI of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The title of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The URI of the album's artist.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The year the album was released.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The URL of the album art image.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The release date of the album.
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<String>,
    /// The SHA256 hash of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The number of times the album has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the album.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AlbumViewDetailed {
    /// The unique identifier of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The URI of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The title of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The URI of the album's artist.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The year the album was released.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The URL of the album art image.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The release date of the album.
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<String>,
    /// The SHA256 hash of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The number of times the album has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the album.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ApiKeyView {
    /// The unique identifier of the API key.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the API key.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// A description for the API key.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The date and time when the API key was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistListenerViewBasic {
    /// The unique identifier of the actor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The DID of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the listener.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the listener's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    #[serde(rename = "mostListenedSong", default, skip_serializing_if = "Option::is_none")]
    pub most_listened_song: Option<ArtistSongViewBasic>,
    /// The total number of plays by the listener.
    #[serde(rename = "totalPlays", default, skip_serializing_if = "Option::is_none")]
    pub total_plays: Option<i64>,
    /// The rank of the listener among all listeners of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub rank: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistMbid {
    /// The MusicBrainz Identifier (MBID) of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The name of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistRecentListenerView {
    /// The unique identifier of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The DID of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the listener.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the listener's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The timestamp of the listener's most recent scrobble of this artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<DateTime<Utc>>,
    /// The URI of the listener's most recent scrobble of this artist.
    #[serde(rename = "scrobbleUri", default, skip_serializing_if = "Option::is_none")]
    pub scrobble_uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistRecord {
    /// The name of the artist.
    pub name: String,
    /// The biography of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub bio: Option<String>,
    /// The picture of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<BlobRef>,
    /// The URL of the picture of the artist.
    #[serde(rename = "pictureUrl", default, skip_serializing_if = "Option::is_none")]
    pub picture_url: Option<String>,
    /// The tags of the artist.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The birth date of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub born: Option<DateTime<Utc>>,
    /// The death date of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub died: Option<DateTime<Utc>>,
    /// The birth place of the artist.
    #[serde(rename = "bornIn", default, skip_serializing_if = "Option::is_none")]
    pub born_in: Option<String>,
    /// The date when the artist was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistSongViewBasic {
    /// The URI of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The title of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The number of times the song has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistViewBasic {
    /// The unique identifier of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The URI of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The name of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The picture of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<String>,
    /// The SHA256 hash of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The number of times the artist has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the artist.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ArtistViewDetailed {
    /// The unique identifier of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The URI of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The name of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The picture of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<String>,
    /// The SHA256 hash of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The number of times the artist has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the artist.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ChartsScrobbleViewBasic {
    /// The date of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub date: Option<DateTime<Utc>>,
    /// The number of scrobbles on this date.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ChartsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub scrobbles: Vec<ChartsScrobbleViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CreateApikeyInput {
    /// The name of the API key.
    pub name: String,
    /// A description for the API key.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CreatePlaylistParams {
    /// The name of the playlist
    pub name: String,
    /// A brief description of the playlist
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CreateScrobbleInput {
    /// The title of the track being scrobbled
    pub title: String,
    /// The artist of the track being scrobbled
    pub artist: String,
    /// The album of the track being scrobbled
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The duration of the track in milliseconds (e.g., 240000 for 4 minutes)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// The MusicBrainz ID of the track, if available
    #[serde(rename = "mbId", default, skip_serializing_if = "Option::is_none")]
    pub mb_id: Option<String>,
    /// The International Standard Recording Code (ISRC) of the track, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    /// The URL of the album art for the track
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The track number of the track in the album
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The release date of the track, formatted as YYYY-MM-DD
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<String>,
    /// The year the track was released
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The disc number of the track in the album, if applicable
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The lyrics of the track, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub lyrics: Option<String>,
    /// The composer of the track, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub composer: Option<String>,
    /// The copyright message for the track, if available
    #[serde(rename = "copyrightMessage", default, skip_serializing_if = "Option::is_none")]
    pub copyright_message: Option<String>,
    /// The record label of the track, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
    /// The URL of the artist's picture, if available
    #[serde(rename = "artistPicture", default, skip_serializing_if = "Option::is_none")]
    pub artist_picture: Option<String>,
    /// The Spotify link for the track, if available
    #[serde(rename = "spotifyLink", default, skip_serializing_if = "Option::is_none")]
    pub spotify_link: Option<String>,
    /// The Last.fm link for the track, if available
    #[serde(rename = "lastfmLink", default, skip_serializing_if = "Option::is_none")]
    pub lastfm_link: Option<String>,
    /// The Tidal link for the track, if available
    #[serde(rename = "tidalLink", default, skip_serializing_if = "Option::is_none")]
    pub tidal_link: Option<String>,
    /// The Apple Music link for the track, if available
    #[serde(rename = "appleMusicLink", default, skip_serializing_if = "Option::is_none")]
    pub apple_music_link: Option<String>,
    /// The Youtube link for the track, if available
    #[serde(rename = "youtubeLink", default, skip_serializing_if = "Option::is_none")]
    pub youtube_link: Option<String>,
    /// The Deezer link for the track, if available
    #[serde(rename = "deezerLink", default, skip_serializing_if = "Option::is_none")]
    pub deezer_link: Option<String>,
    /// The timestamp of the scrobble in seconds since epoch (Unix timestamp)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CreateShoutInput {
    /// The content of the shout
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct CreateSongInput {
    /// The title of the song
    pub title: String,
    /// The artist of the song
    pub artist: String,
    /// The album artist of the song, if different from the main artist
    #[serde(rename = "albumArtist")]
    pub album_artist: String,
    /// The album of the song, if applicable
    pub album: String,
    /// The duration of the song in milliseconds
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// The MusicBrainz ID of the song, if available
    #[serde(rename = "mbId", default, skip_serializing_if = "Option::is_none")]
    pub mb_id: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    /// The URL of the album art for the song
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The track number of the song in the album, if applicable
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The release date of the song, formatted as YYYY-MM-DD
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<String>,
    /// The year the song was released
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The disc number of the song in the album, if applicable
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The lyrics of the song, if available
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub lyrics: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DescribeFeedGeneratorOutput {
    /// The DID of the feed generator.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// List of feed URIs generated by this feed generator.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub feeds: Vec<FeedUriView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DescribeFeedGeneratorParams {
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DislikeShoutInput {
    /// The unique identifier of the shout to dislike
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DislikeSongInput {
    /// The unique identifier of the song to dislike
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DownloadFileParams {
    /// The unique identifier of the file to download
    #[serde(rename = "fileId")]
    pub file_id: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DropboxFileListView {
    /// A list of files in the Dropbox.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub files: Vec<DropboxFileView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DropboxFileView {
    /// The unique identifier of the file.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the file.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The lowercased path of the file.
    #[serde(rename = "pathLower", default, skip_serializing_if = "Option::is_none")]
    pub path_lower: Option<String>,
    /// The display path of the file.
    #[serde(rename = "pathDisplay", default, skip_serializing_if = "Option::is_none")]
    pub path_display: Option<String>,
    /// The last modified date and time of the file on the client.
    #[serde(rename = "clientModified", default, skip_serializing_if = "Option::is_none")]
    pub client_modified: Option<DateTime<Utc>>,
    /// The last modified date and time of the file on the server.
    #[serde(rename = "serverModified", default, skip_serializing_if = "Option::is_none")]
    pub server_modified: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DropboxTemporaryLinkView {
    /// The temporary link to access the file.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub link: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedGeneratorsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub feeds: Vec<FeedGeneratorView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedGeneratorView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub creator: Option<ActorProfileViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedItemView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub scrobble: Option<ScrobbleViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendationsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub recommendations: Vec<FeedRecommendationView>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendationView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    #[serde(rename = "trackUri", default, skip_serializing_if = "Option::is_none")]
    pub track_uri: Option<String>,
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub genres: Vec<String>,
    #[serde(rename = "recommendationScore", default, skip_serializing_if = "Option::is_none")]
    pub recommendation_score: Option<i64>,
    /// neighbour | social | serendipity
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,
    #[serde(rename = "likesCount", default, skip_serializing_if = "Option::is_none")]
    pub likes_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendedAlbumsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub albums: Vec<FeedRecommendedAlbumView>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendedAlbumView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    #[serde(rename = "recommendationScore", default, skip_serializing_if = "Option::is_none")]
    pub recommendation_score: Option<i64>,
    /// known-artist | new-artist | serendipity
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendedArtistsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<FeedRecommendedArtistView>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedRecommendedArtistView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub genres: Vec<String>,
    #[serde(rename = "recommendationScore", default, skip_serializing_if = "Option::is_none")]
    pub recommendation_score: Option<i64>,
    /// neighbour | social | serendipity
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub source: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedSearchResultsView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub hits: Vec<Value>,
    #[serde(rename = "processingTimeMs", default, skip_serializing_if = "Option::is_none")]
    pub processing_time_ms: Option<i64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    #[serde(rename = "estimatedTotalHits", default, skip_serializing_if = "Option::is_none")]
    pub estimated_total_hits: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedStoriesView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub stories: Vec<FeedStoryView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedStoryView {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    #[serde(rename = "albumArtist", default, skip_serializing_if = "Option::is_none")]
    pub album_artist: Option<String>,
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(rename = "trackId", default, skip_serializing_if = "Option::is_none")]
    pub track_id: Option<String>,
    #[serde(rename = "trackUri", default, skip_serializing_if = "Option::is_none")]
    pub track_uri: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedUriView {
    /// The feed URI.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FeedView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub feed: Vec<FeedItemView>,
    /// The pagination cursor for the next set of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FollowAccountOutput {
    pub subject: ActorProfileViewBasic,
    pub followers: Vec<ActorProfileViewBasic>,
    /// A cursor value to pass to subsequent calls to get the next page of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FollowAccountParams {
    pub account: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct FollowRecord {
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    pub subject: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub via: Option<StrongRef>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GeneratorRecord {
    pub did: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<BlobRef>,
    #[serde(rename = "displayName")]
    pub display_name: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorAlbumsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub albums: Vec<AlbumViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorAlbumsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The start date to filter albums from (ISO 8601 format)
    #[serde(rename = "startDate", default, skip_serializing_if = "Option::is_none")]
    pub start_date: Option<DateTime<Utc>>,
    /// The end date to filter albums to (ISO 8601 format)
    #[serde(rename = "endDate", default, skip_serializing_if = "Option::is_none")]
    pub end_date: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorArtistsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorArtistsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The start date to filter albums from (ISO 8601 format)
    #[serde(rename = "startDate", default, skip_serializing_if = "Option::is_none")]
    pub start_date: Option<DateTime<Utc>>,
    /// The end date to filter albums to (ISO 8601 format)
    #[serde(rename = "endDate", default, skip_serializing_if = "Option::is_none")]
    pub end_date: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorCompatibilityOutput {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub compatibility: Option<ActorCompatibilityViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorCompatibilityParams {
    /// DID or handle to get compatibility for
    pub did: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorLovedSongsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorLovedSongsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorNeighboursOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub neighbours: Vec<ActorNeighbourViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorNeighboursParams {
    /// The DID or handle of the actor
    pub did: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorPlaylistsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub playlists: Vec<PlaylistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorPlaylistsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorScrobblesOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub scrobbles: Vec<ScrobbleViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorScrobblesParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorSongsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub songs: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetActorSongsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The start date to filter albums from (ISO 8601 format)
    #[serde(rename = "startDate", default, skip_serializing_if = "Option::is_none")]
    pub start_date: Option<DateTime<Utc>>,
    /// The end date to filter albums to (ISO 8601 format)
    #[serde(rename = "endDate", default, skip_serializing_if = "Option::is_none")]
    pub end_date: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumParams {
    /// The URI of the album to retrieve.
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumRecommendationsParams {
    /// DID or handle of the user to recommend for.
    pub did: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumShoutsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub shouts: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumShoutsParams {
    /// The unique identifier of the album to retrieve shouts for
    pub uri: String,
    /// The maximum number of shouts to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The number of shouts to skip before starting to collect the result set
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub albums: Vec<AlbumViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumsParams {
    /// The maximum number of albums to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The genre to filter artists by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumTracksOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetAlbumTracksParams {
    /// The URI of the album to retrieve tracks from
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetApikeysOutput {
    #[serde(rename = "apiKeys", default, skip_serializing_if = "Vec::is_empty")]
    pub api_keys: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetApikeysParams {
    /// The number of API keys to skip before starting to collect the result set.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The number of API keys to return per page.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistAlbumsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub albums: Vec<AlbumViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistAlbumsParams {
    /// The URI of the artist to retrieve albums from
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistListenersOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub listeners: Vec<ArtistListenerViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistListenersParams {
    /// The URI of the artist to retrieve listeners from
    pub uri: String,
    /// Number of items to skip before returning results
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// Maximum number of results to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistParams {
    /// The URI of the artist to retrieve details from
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistRecentListenersOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub listeners: Vec<ArtistRecentListenerView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistRecentListenersParams {
    /// The URI of the artist to retrieve recent listeners from
    pub uri: String,
    /// Number of items to skip before returning results
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// Maximum number of results to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistRecommendationsParams {
    /// DID or handle of the user to recommend for.
    pub did: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistShoutsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub shouts: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistShoutsParams {
    /// The URI of the artist to retrieve shouts for
    pub uri: String,
    /// The maximum number of shouts to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The number of shouts to skip before starting to collect the result set
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistsParams {
    /// The maximum number of artists to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The names of the artists to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub names: Option<String>,
    /// The genre to filter artists by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistTracksOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetArtistTracksParams {
    /// The URI of the artist to retrieve albums from
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The maximum number of tracks to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetCurrentlyPlayingParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    /// Handle or DID of the actor to retrieve the currently playing track for. If not provided, defaults to the current user.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub actor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedGeneratorOutput {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub view: Option<FeedGeneratorView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedGeneratorParams {
    /// AT-URI of the feed generator record.
    pub feed: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedGeneratorsParams {
    /// The maximum number of feed generators to return.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub size: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedParams {
    /// The feed URI.
    pub feed: String,
    /// The maximum number of scrobbles to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The cursor for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedSkeletonOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub scrobbles: Vec<ScrobbleViewBasic>,
    /// The pagination cursor for the next set of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFeedSkeletonParams {
    /// The feed URI.
    pub feed: String,
    /// The maximum number of scrobbles to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The pagination cursor.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFileParams {
    /// The unique identifier of the file to retrieve
    #[serde(rename = "fileId")]
    pub file_id: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFilesParams {
    /// Path to the Dropbox folder or root directory
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub at: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFollowersOutput {
    pub subject: ActorProfileViewBasic,
    pub followers: Vec<ActorProfileViewBasic>,
    /// A cursor value to pass to subsequent calls to get the next page of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
    /// The total number of followers.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFollowersParams {
    pub actor: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// If provided, filters the followers to only include those with DIDs in this list.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub dids: Vec<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFollowsOutput {
    pub subject: ActorProfileViewBasic,
    pub follows: Vec<ActorProfileViewBasic>,
    /// A cursor value to pass to subsequent calls to get the next page of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
    /// The total number of follows.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetFollowsParams {
    pub actor: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// If provided, filters the follows to only include those with DIDs in this list.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub dids: Vec<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetGlobalStatsParams {
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetKnownFollowersOutput {
    pub subject: ActorProfileViewBasic,
    pub followers: Vec<ActorProfileViewBasic>,
    /// A cursor value to pass to subsequent calls to get the next page of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetKnownFollowersParams {
    pub actor: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetMetadataParams {
    /// Path to the file or folder in Dropbox
    pub path: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetMirrorSourcesOutput {
    pub sources: Vec<MirrorSourceView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetMirrorSourcesParams {
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetPlaybackQueueParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetPlaylistParams {
    /// The URI of the playlist to retrieve.
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetPlaylistsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub playlists: Vec<PlaylistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetPlaylistsParams {
    /// The maximum number of playlists to return.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination, used to skip a number of playlists.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetProfileParams {
    /// The DID or handle of the actor
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetProfileShoutsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub shouts: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetProfileShoutsParams {
    /// The DID or handle of the actor
    pub did: String,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The maximum number of shouts to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetRecommendationsParams {
    /// DID or handle of the user to recommend for.
    pub did: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetScrobbleParams {
    /// The unique identifier of the scrobble
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetScrobblesChartParams {
    /// The DID or handle of the actor
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The URI of the artist to filter by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artisturi: Option<String>,
    /// The URI of the album to filter by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub albumuri: Option<String>,
    /// The URI of the track to filter by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub songuri: Option<String>,
    /// The genre to filter by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// Start date (ISO 8601). Defaults to 6 months ago.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub from: Option<String>,
    /// End date (ISO 8601). Defaults to today.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub to: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetScrobblesOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub scrobbles: Vec<ScrobbleViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetScrobblesParams {
    /// The DID or handle of the actor
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// If true, only return scrobbles from actors the viewer is following.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub following: Option<bool>,
    /// The maximum number of scrobbles to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetShoutRepliesOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub shouts: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetShoutRepliesParams {
    /// The URI of the shout to retrieve replies for
    pub uri: String,
    /// The maximum number of shouts to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The number of shouts to skip before starting to collect the result set
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetSongParams {
    /// The AT-URI of the song to retrieve
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The MusicBrainz ID of the song to retrieve
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song to retrieve
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    /// The Spotify track ID of the song to retrieve (resolved internally to the Spotify track URL)
    #[serde(rename = "spotifyId", default, skip_serializing_if = "Option::is_none")]
    pub spotify_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetSongRecentListenersOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub listeners: Vec<SongRecentListenerView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetSongRecentListenersParams {
    /// The URI of the song to retrieve recent listeners from
    pub uri: String,
    /// Number of items to skip before returning results
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// Maximum number of results to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetSongsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub songs: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetSongsParams {
    /// The maximum number of songs to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The genre to filter artists by
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// Filter songs by MusicBrainz ID
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// Filter songs by International Standard Recording Code (ISRC)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    /// Filter songs by Spotify track ID (resolved internally to the Spotify track URL)
    #[serde(rename = "spotifyId", default, skip_serializing_if = "Option::is_none")]
    pub spotify_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetStatsParams {
    /// The DID or handle of the user to get stats for.
    pub did: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetStoriesParams {
    /// The maximum number of stories to return.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub size: Option<i64>,
    /// The feed URI to filter stories by.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub feed: Option<String>,
    /// If true, only return stories from users the viewer follows. Requires authentication.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub following: Option<bool>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTemporaryLinkParams {
    /// Path to the file in Dropbox
    pub path: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTopArtistsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTopArtistsParams {
    /// The maximum number of artists to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The start date to filter artists from (ISO 8601 format)
    #[serde(rename = "startDate", default, skip_serializing_if = "Option::is_none")]
    pub start_date: Option<DateTime<Utc>>,
    /// The end date to filter artists to (ISO 8601 format)
    #[serde(rename = "endDate", default, skip_serializing_if = "Option::is_none")]
    pub end_date: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTopTracksOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTopTracksParams {
    /// The maximum number of tracks to return
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    /// The offset for pagination
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub offset: Option<i64>,
    /// The start date to filter tracks from (ISO 8601 format)
    #[serde(rename = "startDate", default, skip_serializing_if = "Option::is_none")]
    pub start_date: Option<DateTime<Utc>>,
    /// The end date to filter tracks to (ISO 8601 format)
    #[serde(rename = "endDate", default, skip_serializing_if = "Option::is_none")]
    pub end_date: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTrackShoutsOutput {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub shouts: Vec<Value>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetTrackShoutsParams {
    /// The URI of the track to retrieve shouts for
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetWrappedParams {
    /// The DID or handle of the user
    pub did: String,
    /// The year to get wrapped stats for (defaults to current year)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GoogledriveFileListView {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub files: Vec<GoogledriveFileView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GoogledriveFileView {
    /// The unique identifier of the file.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
}

/// indicates that a handle or DID could not be resolved
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GraphNotFoundActor {
    pub actor: String,
    #[serde(rename = "notFound")]
    pub not_found: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GraphRelationship {
    pub did: String,
    /// if the actor follows this DID, this is the AT-URI of the follow record
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub following: Option<String>,
    /// if the actor is followed by this DID, contains the AT-URI of the follow record
    #[serde(rename = "followedBy", default, skip_serializing_if = "Option::is_none")]
    pub followed_by: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct InsertDirectoryParams {
    /// The URI of the playlist to start
    pub uri: String,
    /// The directory (id) to insert into the playlist
    pub directory: String,
    /// The position in the playlist to insert the directory at, if not specified, the directory will be appended
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct InsertFilesParams {
    /// The URI of the playlist to start
    pub uri: String,
    pub files: Vec<String>,
    /// The position in the playlist to insert the files at, if not specified, files will be appended
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct LikeRecord {
    /// The date when the like was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    pub subject: StrongRef,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct LikeShoutInput {
    /// The unique identifier of the shout to like
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct LikeSongInput {
    /// The unique identifier of the song to like
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct MatchSongParams {
    /// The title of the song to retrieve
    pub title: String,
    /// The artist of the song to retrieve
    pub artist: String,
    /// Optional MusicBrainz recording ID to anchor the match
    #[serde(rename = "mbId", default, skip_serializing_if = "Option::is_none")]
    pub mb_id: Option<String>,
    /// Optional International Standard Recording Code (ISRC) to anchor the match
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct MirrorSourceView {
    /// One of: lastfm, listenbrainz, tealfm
    pub provider: String,
    /// Whether scrobbles from this source are being mirrored into Rocksky.
    pub enabled: bool,
    /// Username on the external service (Last.fm / ListenBrainz). Null for Teal.fm.
    #[serde(rename = "externalUsername", default, skip_serializing_if = "Option::is_none")]
    pub external_username: Option<String>,
    /// True when an API key is stored. Last.fm/ListenBrainz only; always false for Teal.fm.
    #[serde(rename = "hasCredentials")]
    pub has_credentials: bool,
    /// The last time the mirror process successfully polled this source.
    #[serde(rename = "lastPolledAt", default, skip_serializing_if = "Option::is_none")]
    pub last_polled_at: Option<DateTime<Utc>>,
    /// Watermark — scrobbles from the external service older than this are skipped.
    #[serde(rename = "lastScrobbleSeenAt", default, skip_serializing_if = "Option::is_none")]
    pub last_scrobble_seen_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct NextParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PauseParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlayDirectoryParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    #[serde(rename = "directoryId")]
    pub directory_id: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub shuffle: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub recurse: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlayerCurrentlyPlayingViewDetailed {
    /// The title of the currently playing track
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlayerPlaybackQueueViewDetailed {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlayFileParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    #[serde(rename = "fileId")]
    pub file_id: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlaylistItemRecord {
    pub subject: StrongRef,
    /// The date the playlist was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    pub track: SongViewBasic,
    /// The order of the item in the playlist.
    pub order: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlaylistRecord {
    /// The name of the playlist.
    pub name: String,
    /// The playlist description.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The picture of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<BlobRef>,
    /// The URL of the picture of the artist.
    #[serde(rename = "pictureUrl", default, skip_serializing_if = "Option::is_none")]
    pub picture_url: Option<String>,
    /// The date the playlist was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    /// The Spotify link of the playlist.
    #[serde(rename = "spotifyLink", default, skip_serializing_if = "Option::is_none")]
    pub spotify_link: Option<String>,
    /// The Tidal link of the playlist.
    #[serde(rename = "tidalLink", default, skip_serializing_if = "Option::is_none")]
    pub tidal_link: Option<String>,
    /// The YouTube link of the playlist.
    #[serde(rename = "youtubeLink", default, skip_serializing_if = "Option::is_none")]
    pub youtube_link: Option<String>,
    /// The Apple Music link of the playlist.
    #[serde(rename = "appleMusicLink", default, skip_serializing_if = "Option::is_none")]
    pub apple_music_link: Option<String>,
}

/// Basic view of a playlist, including its metadata
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlaylistViewBasic {
    /// The unique identifier of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The URI of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The DID of the curator of the playlist.
    #[serde(rename = "curatorDid", default, skip_serializing_if = "Option::is_none")]
    pub curator_did: Option<String>,
    /// The handle of the curator of the playlist.
    #[serde(rename = "curatorHandle", default, skip_serializing_if = "Option::is_none")]
    pub curator_handle: Option<String>,
    /// The name of the curator of the playlist.
    #[serde(rename = "curatorName", default, skip_serializing_if = "Option::is_none")]
    pub curator_name: Option<String>,
    /// The URL of the avatar image of the curator.
    #[serde(rename = "curatorAvatarUrl", default, skip_serializing_if = "Option::is_none")]
    pub curator_avatar_url: Option<String>,
    /// A description of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The URL of the cover image for the playlist.
    #[serde(rename = "coverImageUrl", default, skip_serializing_if = "Option::is_none")]
    pub cover_image_url: Option<String>,
    /// The date and time when the playlist was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// The number of tracks in the playlist.
    #[serde(rename = "trackCount", default, skip_serializing_if = "Option::is_none")]
    pub track_count: Option<i64>,
}

/// Detailed view of a playlist, including its tracks and metadata
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlaylistViewDetailed {
    /// The unique identifier of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The URI of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The DID of the curator of the playlist.
    #[serde(rename = "curatorDid", default, skip_serializing_if = "Option::is_none")]
    pub curator_did: Option<String>,
    /// The handle of the curator of the playlist.
    #[serde(rename = "curatorHandle", default, skip_serializing_if = "Option::is_none")]
    pub curator_handle: Option<String>,
    /// The name of the curator of the playlist.
    #[serde(rename = "curatorName", default, skip_serializing_if = "Option::is_none")]
    pub curator_name: Option<String>,
    /// The URL of the avatar image of the curator.
    #[serde(rename = "curatorAvatarUrl", default, skip_serializing_if = "Option::is_none")]
    pub curator_avatar_url: Option<String>,
    /// A description of the playlist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The URL of the cover image for the playlist.
    #[serde(rename = "coverImageUrl", default, skip_serializing_if = "Option::is_none")]
    pub cover_image_url: Option<String>,
    /// The date and time when the playlist was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// A list of tracks in the playlist.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tracks: Vec<SongViewBasic>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PlayParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PreviousParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ProfileRecord {
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// Free-form profile description text.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Small image to be displayed next to posts from account. AKA, 'profile picture'
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<BlobRef>,
    /// Larger horizontal image to display behind profile view.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub banner: Option<BlobRef>,
    /// Self-label values, specific to the Bluesky application, on the overall account.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub labels: Option<Value>,
    #[serde(rename = "joinedViaStarterPack", default, skip_serializing_if = "Option::is_none")]
    pub joined_via_starter_pack: Option<StrongRef>,
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PutMirrorSourceInput {
    /// One of: lastfm, listenbrainz, tealfm
    pub provider: String,
    /// Enable or disable mirroring for this provider.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,
    /// External username (Last.fm / ListenBrainz). Required when enabling those providers. Ignored for Teal.fm.
    #[serde(rename = "externalUsername", default, skip_serializing_if = "Option::is_none")]
    pub external_username: Option<String>,
    /// API key / token to be encrypted at rest. Omit to leave the existing key unchanged. Pass an empty string to clear it.
    #[serde(rename = "apiKey", default, skip_serializing_if = "Option::is_none")]
    pub api_key: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RadioRecord {
    /// The name of the radio station.
    pub name: String,
    /// The URL of the radio station.
    pub url: String,
    /// A description of the radio station.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The genre of the radio station.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// The logo of the radio station.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub logo: Option<BlobRef>,
    /// The website of the radio station.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub website: Option<String>,
    /// The date when the radio station was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RadioViewBasic {
    /// The unique identifier of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// A brief description of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The date and time when the radio was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RadioViewDetailed {
    /// The unique identifier of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// A brief description of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The website of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub website: Option<String>,
    /// The streaming URL of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
    /// The genre of the radio.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// The logo of the radio station.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub logo: Option<String>,
    /// The date and time when the radio was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RemoveApikeyParams {
    /// The ID of the API key to remove.
    pub id: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RemovePlaylistParams {
    /// The URI of the playlist to remove
    pub uri: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RemoveShoutParams {
    /// The ID of the shout to be removed
    pub id: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct RemoveTrackParams {
    /// The URI of the playlist to remove the track from
    pub uri: String,
    /// The position of the track to remove in the playlist
    pub position: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ReplyShoutInput {
    /// The unique identifier of the shout to reply to
    #[serde(rename = "shoutId")]
    pub shout_id: String,
    /// The content of the reply
    pub message: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ReportShoutInput {
    /// The unique identifier of the shout to report
    #[serde(rename = "shoutId")]
    pub shout_id: String,
    /// The reason for reporting the shout
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ScrobbleFirstScrobbleView {
    /// The handle of the user who first scrobbled this song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The avatar URL of the user who first scrobbled this song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The timestamp of the first scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ScrobbleRecord {
    /// The title of the song.
    pub title: String,
    /// The artist of the song.
    pub artist: String,
    /// The artists of the song with MusicBrainz IDs.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistMbid>,
    /// The album artist of the song.
    #[serde(rename = "albumArtist")]
    pub album_artist: String,
    /// The album of the song.
    pub album: String,
    /// The duration of the song in milliseconds.
    pub duration: i64,
    /// The track number of the song in the album.
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The disc number of the song in the album.
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The release date of the song.
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<DateTime<Utc>>,
    /// The year the song was released.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The genre of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// The tags of the song.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The composer of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub composer: Option<String>,
    /// The lyrics of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub lyrics: Option<String>,
    /// The copyright message of the song.
    #[serde(rename = "copyrightMessage", default, skip_serializing_if = "Option::is_none")]
    pub copyright_message: Option<String>,
    /// Informations about the song
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub wiki: Option<String>,
    /// The album art of the song.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<BlobRef>,
    /// The URL of the album art of the song.
    #[serde(rename = "albumArtUrl", default, skip_serializing_if = "Option::is_none")]
    pub album_art_url: Option<String>,
    /// The YouTube link of the song.
    #[serde(rename = "youtubeLink", default, skip_serializing_if = "Option::is_none")]
    pub youtube_link: Option<String>,
    /// The Spotify link of the song.
    #[serde(rename = "spotifyLink", default, skip_serializing_if = "Option::is_none")]
    pub spotify_link: Option<String>,
    /// The Tidal link of the song.
    #[serde(rename = "tidalLink", default, skip_serializing_if = "Option::is_none")]
    pub tidal_link: Option<String>,
    /// The Apple Music link of the song.
    #[serde(rename = "appleMusicLink", default, skip_serializing_if = "Option::is_none")]
    pub apple_music_link: Option<String>,
    /// The date when the song was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    /// The MusicBrainz ID of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The label of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ScrobbleViewBasic {
    /// The unique identifier of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The handle of the user who created the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub user: Option<String>,
    /// The display name of the user who created the scrobble.
    #[serde(rename = "userDisplayName", default, skip_serializing_if = "Option::is_none")]
    pub user_display_name: Option<String>,
    /// The avatar URL of the user who created the scrobble.
    #[serde(rename = "userAvatar", default, skip_serializing_if = "Option::is_none")]
    pub user_avatar: Option<String>,
    /// The title of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The URI of the artist.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The album of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The URI of the album.
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    /// The album art URL of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cover: Option<String>,
    /// The timestamp when the scrobble was created.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub date: Option<DateTime<Utc>>,
    /// The URI of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The SHA256 hash of the scrobble data.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub liked: Option<bool>,
    #[serde(rename = "likesCount", default, skip_serializing_if = "Option::is_none")]
    pub likes_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ScrobbleViewDetailed {
    /// The unique identifier of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The handle of the user who created the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub user: Option<String>,
    /// The title of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The URI of the artist.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The album of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The URI of the album.
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    /// The album art URL of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cover: Option<String>,
    /// The timestamp when the scrobble was created.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub date: Option<DateTime<Utc>>,
    /// The URI of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The SHA256 hash of the scrobble data.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub liked: Option<bool>,
    #[serde(rename = "likesCount", default, skip_serializing_if = "Option::is_none")]
    pub likes_count: Option<i64>,
    /// The number of listeners
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub listeners: Option<i64>,
    /// The number of scrobbles for this song
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub scrobbles: Option<i64>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistViewBasic>,
    /// The first scrobble of this song on Rocksky.
    #[serde(rename = "firstScrobble", default, skip_serializing_if = "Option::is_none")]
    pub first_scrobble: Option<ScrobbleFirstScrobbleView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SearchParams {
    /// The search query string
    pub query: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SeekParams {
    #[serde(rename = "playerId", default, skip_serializing_if = "Option::is_none")]
    pub player_id: Option<String>,
    /// The position in seconds to seek to
    pub position: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ShoutAuthor {
    /// The unique identifier of the author.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The decentralized identifier (DID) of the author.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the author.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the author.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the author's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ShoutRecord {
    /// The message of the shout.
    pub message: String,
    /// The date when the shout was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub parent: Option<StrongRef>,
    pub subject: StrongRef,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ShoutView {
    /// The unique identifier of the shout.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The content of the shout.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
    /// The ID of the parent shout if this is a reply, otherwise null.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub parent: Option<String>,
    /// The date and time when the shout was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// The author of the shout.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub author: Option<ShoutAuthor>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SongFirstScrobbleView {
    /// The handle of the user who first scrobbled this song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The avatar URL of the user who first scrobbled this song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The timestamp of the first scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SongRecentListenerView {
    /// The unique identifier of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The DID of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub did: Option<String>,
    /// The handle of the listener.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub handle: Option<String>,
    /// The display name of the listener.
    #[serde(rename = "displayName", default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// The URL of the listener's avatar image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub avatar: Option<String>,
    /// The timestamp of the listener's most recent scrobble of this song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<DateTime<Utc>>,
    /// The URI of the listener's most recent scrobble of this song.
    #[serde(rename = "scrobbleUri", default, skip_serializing_if = "Option::is_none")]
    pub scrobble_uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SongRecord {
    /// The title of the song.
    pub title: String,
    /// The artist of the song.
    pub artist: String,
    /// The artists of the song with MusicBrainz IDs.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistMbid>,
    /// The album artist of the song.
    #[serde(rename = "albumArtist")]
    pub album_artist: String,
    /// The album of the song.
    pub album: String,
    /// The duration of the song in milliseconds.
    pub duration: i64,
    /// The track number of the song in the album.
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The disc number of the song in the album.
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The release date of the song.
    #[serde(rename = "releaseDate", default, skip_serializing_if = "Option::is_none")]
    pub release_date: Option<DateTime<Utc>>,
    /// The year the song was released.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// The genre of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// The tags of the song.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The composer of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub composer: Option<String>,
    /// The lyrics of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub lyrics: Option<String>,
    /// The copyright message of the song.
    #[serde(rename = "copyrightMessage", default, skip_serializing_if = "Option::is_none")]
    pub copyright_message: Option<String>,
    /// Informations about the song
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub wiki: Option<String>,
    /// The album art of the song.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<BlobRef>,
    /// The URL of the album art of the song.
    #[serde(rename = "albumArtUrl", default, skip_serializing_if = "Option::is_none")]
    pub album_art_url: Option<String>,
    /// The YouTube link of the song.
    #[serde(rename = "youtubeLink", default, skip_serializing_if = "Option::is_none")]
    pub youtube_link: Option<String>,
    /// The Spotify link of the song.
    #[serde(rename = "spotifyLink", default, skip_serializing_if = "Option::is_none")]
    pub spotify_link: Option<String>,
    /// The Tidal link of the song.
    #[serde(rename = "tidalLink", default, skip_serializing_if = "Option::is_none")]
    pub tidal_link: Option<String>,
    /// The Apple Music link of the song.
    #[serde(rename = "appleMusicLink", default, skip_serializing_if = "Option::is_none")]
    pub apple_music_link: Option<String>,
    /// The date when the song was created.
    #[serde(rename = "createdAt")]
    pub created_at: DateTime<Utc>,
    /// The MusicBrainz ID of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The label of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SongViewBasic {
    /// The unique identifier of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The artist of the album the song belongs to.
    #[serde(rename = "albumArtist", default, skip_serializing_if = "Option::is_none")]
    pub album_artist: Option<String>,
    /// The URL of the album art image.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The URI of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The album of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The duration of the song in milliseconds.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// The track number of the song in the album.
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The disc number of the song in the album.
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The number of times the song has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the song.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
    /// The URI of the album the song belongs to.
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    /// The URI of the artist of the song.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The SHA256 hash of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The MusicBrainz ID of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The timestamp when the song was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SongViewDetailed {
    /// The unique identifier of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The artist of the album the song belongs to.
    #[serde(rename = "albumArtist", default, skip_serializing_if = "Option::is_none")]
    pub album_artist: Option<String>,
    /// The URL of the album art image.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The URI of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The album of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The duration of the song in milliseconds.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// The track number of the song in the album.
    #[serde(rename = "trackNumber", default, skip_serializing_if = "Option::is_none")]
    pub track_number: Option<i64>,
    /// The disc number of the song in the album.
    #[serde(rename = "discNumber", default, skip_serializing_if = "Option::is_none")]
    pub disc_number: Option<i64>,
    /// The number of times the song has been played.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
    /// The number of unique listeners who have played the song.
    #[serde(rename = "uniqueListeners", default, skip_serializing_if = "Option::is_none")]
    pub unique_listeners: Option<i64>,
    /// The URI of the album the song belongs to.
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    /// The URI of the artist of the song.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The SHA256 hash of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sha256: Option<String>,
    /// The MusicBrainz ID of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub mbid: Option<String>,
    /// The International Standard Recording Code (ISRC) of the song.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub isrc: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub tags: Vec<String>,
    /// The timestamp when the song was created.
    #[serde(rename = "createdAt", default, skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub artists: Vec<ArtistViewBasic>,
    /// The first scrobble of this song on Rocksky.
    #[serde(rename = "firstScrobble", default, skip_serializing_if = "Option::is_none")]
    pub first_scrobble: Option<SongFirstScrobbleView>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct SpotifyTrackView {
    /// The unique identifier of the Spotify track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The name of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The name of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub album: Option<String>,
    /// The duration of the track in milliseconds.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<i64>,
    /// A URL to a preview of the track.
    #[serde(rename = "previewUrl", default, skip_serializing_if = "Option::is_none")]
    pub preview_url: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StartPlaylistParams {
    /// The URI of the playlist to start
    pub uri: String,
    /// Whether to shuffle the playlist when starting it
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub shuffle: Option<bool>,
    /// The position in the playlist to start from, if not specified, starts from the beginning
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub position: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsGlobalStatsView {
    /// Total scrobbles across all users on Rocksky.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub scrobbles: Option<i64>,
    /// Total number of users on Rocksky.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub users: Option<i64>,
    /// Total number of artists known to Rocksky.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artists: Option<i64>,
    /// Total number of albums known to Rocksky.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub albums: Option<i64>,
    /// Total number of tracks known to Rocksky.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tracks: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsView {
    /// The total number of scrobbles.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub scrobbles: Option<i64>,
    /// The total number of unique artists scrobbled.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artists: Option<i64>,
    /// The total number of tracks marked as loved.
    #[serde(rename = "lovedTracks", default, skip_serializing_if = "Option::is_none")]
    pub loved_tracks: Option<i64>,
    /// The total number of unique albums scrobbled.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub albums: Option<i64>,
    /// The total number of unique tracks scrobbled.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tracks: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedAlbum {
    /// The unique identifier of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The album art URL.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The AT-URI of the album.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// Number of plays in the wrapped period.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedArtist {
    /// The unique identifier of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The picture URL of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub picture: Option<String>,
    /// The AT-URI of the artist.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// Number of plays in the wrapped period.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedDayCount {
    /// The date (YYYY-MM-DD).
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub date: Option<String>,
    /// Number of scrobbles on this day.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedGenreCount {
    /// The genre name.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub genre: Option<String>,
    /// Number of scrobbles for this genre.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedMilestone {
    /// The title of the track.
    #[serde(rename = "trackTitle", default, skip_serializing_if = "Option::is_none")]
    pub track_title: Option<String>,
    /// The name of the artist.
    #[serde(rename = "artistName", default, skip_serializing_if = "Option::is_none")]
    pub artist_name: Option<String>,
    /// The timestamp of the scrobble.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<DateTime<Utc>>,
    /// AT-URI of the track record, used to build a clickable link to the song page.
    #[serde(rename = "trackUri", default, skip_serializing_if = "Option::is_none")]
    pub track_uri: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedMonthCount {
    /// Month number (1-12).
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub month: Option<i64>,
    /// Number of scrobbles in this month.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedTrack {
    /// The unique identifier of the track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The title of the track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// The artist of the track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artist: Option<String>,
    /// The album art URL.
    #[serde(rename = "albumArt", default, skip_serializing_if = "Option::is_none")]
    pub album_art: Option<String>,
    /// The AT-URI of the track.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub uri: Option<String>,
    /// The AT-URI of the artist.
    #[serde(rename = "artistUri", default, skip_serializing_if = "Option::is_none")]
    pub artist_uri: Option<String>,
    /// The AT-URI of the album.
    #[serde(rename = "albumUri", default, skip_serializing_if = "Option::is_none")]
    pub album_uri: Option<String>,
    /// Number of plays in the wrapped period.
    #[serde(rename = "playCount", default, skip_serializing_if = "Option::is_none")]
    pub play_count: Option<i64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatsWrappedView {
    /// The year of the wrapped stats.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub year: Option<i64>,
    /// Total scrobbles in the year.
    #[serde(rename = "totalScrobbles", default, skip_serializing_if = "Option::is_none")]
    pub total_scrobbles: Option<i64>,
    /// Total listening time in minutes.
    #[serde(rename = "totalListeningTimeMinutes", default, skip_serializing_if = "Option::is_none")]
    pub total_listening_time_minutes: Option<i64>,
    /// Top 5 artists by play count.
    #[serde(rename = "topArtists", default, skip_serializing_if = "Vec::is_empty")]
    pub top_artists: Vec<StatsWrappedArtist>,
    /// Top 5 tracks by play count.
    #[serde(rename = "topTracks", default, skip_serializing_if = "Vec::is_empty")]
    pub top_tracks: Vec<StatsWrappedTrack>,
    /// Top 5 albums by play count.
    #[serde(rename = "topAlbums", default, skip_serializing_if = "Vec::is_empty")]
    pub top_albums: Vec<StatsWrappedAlbum>,
    /// Top genres by play count.
    #[serde(rename = "topGenres", default, skip_serializing_if = "Vec::is_empty")]
    pub top_genres: Vec<StatsWrappedGenreCount>,
    /// Scrobble counts per month.
    #[serde(rename = "scrobblesPerMonth", default, skip_serializing_if = "Vec::is_empty")]
    pub scrobbles_per_month: Vec<StatsWrappedMonthCount>,
    /// The most active day of the year.
    #[serde(rename = "mostActiveDay", default, skip_serializing_if = "Option::is_none")]
    pub most_active_day: Option<StatsWrappedDayCount>,
    /// The most active hour of the day (0-23).
    #[serde(rename = "mostActiveHour", default, skip_serializing_if = "Option::is_none")]
    pub most_active_hour: Option<i64>,
    /// Number of artists heard for the first time this year.
    #[serde(rename = "newArtistsCount", default, skip_serializing_if = "Option::is_none")]
    pub new_artists_count: Option<i64>,
    /// Longest consecutive days streak.
    #[serde(rename = "longestStreak", default, skip_serializing_if = "Option::is_none")]
    pub longest_streak: Option<i64>,
    /// The first scrobble of the year.
    #[serde(rename = "firstScrobble", default, skip_serializing_if = "Option::is_none")]
    pub first_scrobble: Option<StatsWrappedMilestone>,
    /// The last scrobble of the year.
    #[serde(rename = "lastScrobble", default, skip_serializing_if = "Option::is_none")]
    pub last_scrobble: Option<StatsWrappedMilestone>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StatusRecord {
    /// The track currently being played.
    pub track: ActorTrackView,
    /// When the track started playing.
    #[serde(rename = "startedAt")]
    pub started_at: DateTime<Utc>,
    /// When the status expires. Defaults to startedAt plus track duration plus idle time.
    #[serde(rename = "expiresAt", default, skip_serializing_if = "Option::is_none")]
    pub expires_at: Option<DateTime<Utc>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StrongRef {
    pub uri: String,
    pub cid: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct UnfollowAccountOutput {
    pub subject: ActorProfileViewBasic,
    pub followers: Vec<ActorProfileViewBasic>,
    /// A cursor value to pass to subsequent calls to get the next page of results.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct UnfollowAccountParams {
    pub account: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct UpdateApikeyInput {
    /// The ID of the API key to update.
    pub id: String,
    /// The new name of the API key.
    pub name: String,
    /// A new description for the API key.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}