ocpp-types 0.3.0

Strongly typed OCPP 1.6J, 2.0.1, and 2.1 message types for Rust. no_std, no alloc, embedded-friendly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
// @generated by ocpp-codegen from schemas/. Do not edit by hand -- run
// `scripts/generate.sh` to regenerate; manual changes will be overwritten.

/// This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CustomData {
    #[cfg_attr(feature = "serde", serde(rename = "vendorId"))]
    pub vendor_id: heapless::String<255usize>,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CustomData {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Contains a case insensitive identifier to use for the authorization and the type of authorization to support multiple forms of identifiers.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct AdditionalInfo<CustomDataType = crate::NoCustomData> {
    /// This field specifies the additional IdToken.
    #[cfg_attr(feature = "serde", serde(rename = "additionalIdToken"))]
    pub additional_id_token: heapless::String<36usize>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// This defines the type of the additionalIdToken. This is a custom type, so the implementation needs to be agreed upon by all involved parties.
    pub r#type: heapless::String<50usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for AdditionalInfo<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Enumeration of possible idToken types.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum IdTokenEnum {
    Central,
    #[cfg_attr(feature = "serde", serde(rename = "eMAID"))]
    EMAID,
    ISO14443,
    ISO15693,
    KeyCode,
    Local,
    MacAddress,
    NoAuthorization,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for IdTokenEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Contains a case insensitive identifier to use for the authorization and the type of authorization to support multiple forms of identifiers.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct IdToken<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "additionalInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub additional_info: Option<alloc::vec::Vec<AdditionalInfo<CustomDataType>>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// IdToken is case insensitive. Might hold the hidden id of an RFID tag, but can for example also contain a UUID.
    #[cfg_attr(feature = "serde", serde(rename = "idToken"))]
    pub id_token: heapless::String<36usize>,
    pub r#type: IdTokenEnum,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for IdToken<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.additional_info {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("additionalInfo"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| error.in_index(index).in_field("additionalInfo"))?;
            }
        }
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Contains a case insensitive identifier to use for the authorization and the type of authorization to support multiple forms of identifiers.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct IdToken<
    CustomDataType = crate::NoCustomData,
    const ID_TOKEN_ADDITIONAL_INFO_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "additionalInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub additional_info: Option<
        heapless::Vec<AdditionalInfo<CustomDataType>, ID_TOKEN_ADDITIONAL_INFO_CAP>,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// IdToken is case insensitive. Might hold the hidden id of an RFID tag, but can for example also contain a UUID.
    #[cfg_attr(feature = "serde", serde(rename = "idToken"))]
    pub id_token: heapless::String<36usize>,
    pub r#type: IdTokenEnum,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<CustomDataType, const ID_TOKEN_ADDITIONAL_INFO_CAP: usize> crate::validate::Validate
for IdToken<CustomDataType, ID_TOKEN_ADDITIONAL_INFO_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.additional_info {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("additionalInfo"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| error.in_index(index).in_field("additionalInfo"))?;
            }
        }
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        Ok(())
    }
}
/// Used algorithms for the hashes provided.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum HashAlgorithmEnum {
    SHA256,
    SHA384,
    SHA512,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for HashAlgorithmEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct OCSPRequestData<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "hashAlgorithm"))]
    pub hash_algorithm: HashAlgorithmEnum,
    /// Hashed value of the issuers public key
    #[cfg_attr(feature = "serde", serde(rename = "issuerKeyHash"))]
    pub issuer_key_hash: heapless::String<128usize>,
    /// Hashed value of the Issuer DN (Distinguished Name).
    #[cfg_attr(feature = "serde", serde(rename = "issuerNameHash"))]
    pub issuer_name_hash: heapless::String<128usize>,
    /// This contains the responder URL (Case insensitive).
    #[cfg_attr(feature = "serde", serde(rename = "responderURL"))]
    pub responder_u_r_l: heapless::String<512usize>,
    /// The serial number of the certificate.
    #[cfg_attr(feature = "serde", serde(rename = "serialNumber"))]
    pub serial_number: heapless::String<40usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for OCSPRequestData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.hash_algorithm)
            .map_err(|error| error.in_field("hashAlgorithm"))?;
        Ok(())
    }
}
/// Certificate status information.
/// - if all certificates are valid: return 'Accepted'.
/// - if one of the certificates was revoked, return 'CertificateRevoked'.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AuthorizeCertificateStatusEnum {
    Accepted,
    SignatureError,
    CertificateExpired,
    CertificateRevoked,
    NoCertificateAvailable,
    CertChainError,
    ContractCancelled,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for AuthorizeCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Message_ Content. Format. Message_ Format_ Code
/// urn:x-enexis:ecdm:uid:1:570848
/// Format of the message.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MessageFormatEnum {
    ASCII,
    HTML,
    URI,
    UTF8,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MessageFormatEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Message_ Content
/// urn:x-enexis:ecdm:uid:2:234490
/// Contains message details, for a message to be displayed on a Charging Station.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MessageContent<CustomDataType = crate::NoCustomData> {
    /// Message_ Content. Content. Message
    /// urn:x-enexis:ecdm:uid:1:570852
    /// Message contents.
    pub content: heapless::String<512usize>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub format: MessageFormatEnum,
    /// Message_ Content. Language. Language_ Code
    /// urn:x-enexis:ecdm:uid:1:570849
    /// Message language identifier. Contains a language code as defined in &lt;&lt;ref-RFC5646,\[RFC5646\]&gt;&gt;.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub language: Option<heapless::String<8usize>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for MessageContent<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.format)
            .map_err(|error| error.in_field("format"))?;
        Ok(())
    }
}
/// ID_ Token. Status. Authorization_ Status
/// urn:x-oca:ocpp:uid:1:569372
/// Current status of the ID Token.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AuthorizationStatusEnum {
    Accepted,
    Blocked,
    ConcurrentTx,
    Expired,
    Invalid,
    NoCredit,
    NotAllowedTypeEVSE,
    NotAtThisLocation,
    NotAtThisTime,
    Unknown,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for AuthorizationStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// ID_ Token
/// urn:x-oca:ocpp:uid:2:233247
/// Contains status information about an identifier.
/// It is advised to not stop charging for a token that expires during charging, as ExpiryDate is only used for caching purposes. If ExpiryDate is not given, the status has no end date.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct IdTokenInfo<CustomDataType = crate::NoCustomData> {
    /// ID_ Token. Expiry. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569373
    /// Date and Time after which the token must be considered invalid.
    #[cfg_attr(feature = "serde", serde(rename = "cacheExpiryDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cache_expiry_date_time: Option<crate::OcppTimestamp>,
    /// Priority from a business point of view. Default priority is 0, The range is from -9 to 9. Higher values indicate a higher priority. The chargingPriority in &lt;&lt;transactioneventresponse,TransactionEventResponse&gt;&gt; overrules this one.
    #[cfg_attr(feature = "serde", serde(rename = "chargingPriority"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_priority: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Only used when the IdToken is only valid for one or more specific EVSEs, not for the entire Charging Station.
    #[cfg_attr(feature = "serde", serde(rename = "evseId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub evse_id: Option<alloc::vec::Vec<i64>>,
    #[cfg_attr(feature = "serde", serde(rename = "groupIdToken"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub group_id_token: Option<IdToken<CustomDataType>>,
    /// ID_ Token. Language1. Language_ Code
    /// urn:x-oca:ocpp:uid:1:569374
    /// Preferred user interface language of identifier user. Contains a language code as defined in &lt;&lt;ref-RFC5646,\[RFC5646\]&gt;&gt;.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub language1: Option<heapless::String<8usize>>,
    /// ID_ Token. Language2. Language_ Code
    /// urn:x-oca:ocpp:uid:1:569375
    /// Second preferred user interface language of identifier user. Don’t use when language1 is omitted, has to be different from language1. Contains a language code as defined in &lt;&lt;ref-RFC5646,\[RFC5646\]&gt;&gt;.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub language2: Option<heapless::String<8usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "personalMessage"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub personal_message: Option<MessageContent<CustomDataType>>,
    pub status: AuthorizationStatusEnum,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for IdTokenInfo<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.evse_id {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("evseId"))?;
        }
        if let Some(value) = &self.group_id_token {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("groupIdToken"))?;
        }
        if let Some(value) = &self.personal_message {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("personalMessage"))?;
        }
        crate::validate::Validate::validate(&self.status)
            .map_err(|error| error.in_field("status"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// ID_ Token
/// urn:x-oca:ocpp:uid:2:233247
/// Contains status information about an identifier.
/// It is advised to not stop charging for a token that expires during charging, as ExpiryDate is only used for caching purposes. If ExpiryDate is not given, the status has no end date.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct IdTokenInfo<
    CustomDataType = crate::NoCustomData,
    const ID_TOKEN_INFO_EVSE_ID_CAP: usize = 8usize,
    const ID_TOKEN_ADDITIONAL_INFO_CAP: usize = 8usize,
> {
    /// ID_ Token. Expiry. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569373
    /// Date and Time after which the token must be considered invalid.
    #[cfg_attr(feature = "serde", serde(rename = "cacheExpiryDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cache_expiry_date_time: Option<crate::OcppTimestamp>,
    /// Priority from a business point of view. Default priority is 0, The range is from -9 to 9. Higher values indicate a higher priority. The chargingPriority in &lt;&lt;transactioneventresponse,TransactionEventResponse&gt;&gt; overrules this one.
    #[cfg_attr(feature = "serde", serde(rename = "chargingPriority"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_priority: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Only used when the IdToken is only valid for one or more specific EVSEs, not for the entire Charging Station.
    #[cfg_attr(feature = "serde", serde(rename = "evseId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub evse_id: Option<heapless::Vec<i64, ID_TOKEN_INFO_EVSE_ID_CAP>>,
    #[cfg_attr(feature = "serde", serde(rename = "groupIdToken"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub group_id_token: Option<IdToken<CustomDataType, ID_TOKEN_ADDITIONAL_INFO_CAP>>,
    /// ID_ Token. Language1. Language_ Code
    /// urn:x-oca:ocpp:uid:1:569374
    /// Preferred user interface language of identifier user. Contains a language code as defined in &lt;&lt;ref-RFC5646,\[RFC5646\]&gt;&gt;.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub language1: Option<heapless::String<8usize>>,
    /// ID_ Token. Language2. Language_ Code
    /// urn:x-oca:ocpp:uid:1:569375
    /// Second preferred user interface language of identifier user. Don’t use when language1 is omitted, has to be different from language1. Contains a language code as defined in &lt;&lt;ref-RFC5646,\[RFC5646\]&gt;&gt;.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub language2: Option<heapless::String<8usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "personalMessage"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub personal_message: Option<MessageContent<CustomDataType>>,
    pub status: AuthorizationStatusEnum,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const ID_TOKEN_INFO_EVSE_ID_CAP: usize,
    const ID_TOKEN_ADDITIONAL_INFO_CAP: usize,
> crate::validate::Validate
for IdTokenInfo<
    CustomDataType,
    ID_TOKEN_INFO_EVSE_ID_CAP,
    ID_TOKEN_ADDITIONAL_INFO_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.evse_id {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("evseId"))?;
        }
        if let Some(value) = &self.group_id_token {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("groupIdToken"))?;
        }
        if let Some(value) = &self.personal_message {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("personalMessage"))?;
        }
        crate::validate::Validate::validate(&self.status)
            .map_err(|error| error.in_field("status"))?;
        Ok(())
    }
}
/// Wireless_ Communication_ Module
/// urn:x-oca:ocpp:uid:2:233306
/// Defines parameters required for initiating and maintaining wireless communication with other devices.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Modem<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Wireless_ Communication_ Module. ICCID. CI20_ Text
    /// urn:x-oca:ocpp:uid:1:569327
    /// This contains the ICCID of the modem’s SIM card.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub iccid: Option<heapless::String<20usize>>,
    /// Wireless_ Communication_ Module. IMSI. CI20_ Text
    /// urn:x-oca:ocpp:uid:1:569328
    /// This contains the IMSI of the modem’s SIM card.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub imsi: Option<heapless::String<20usize>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for Modem<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charge_ Point
/// urn:x-oca:ocpp:uid:2:233122
/// The physical system where an Electrical Vehicle (EV) can be charged.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingStation<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// This contains the firmware version of the Charging Station.
    #[cfg_attr(feature = "serde", serde(rename = "firmwareVersion"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub firmware_version: Option<heapless::String<50usize>>,
    /// Device. Model. CI20_ Text
    /// urn:x-oca:ocpp:uid:1:569325
    /// Defines the model of the device.
    pub model: heapless::String<20usize>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub modem: Option<Modem<CustomDataType>>,
    /// Device. Serial_ Number. Serial_ Number
    /// urn:x-oca:ocpp:uid:1:569324
    /// Vendor-specific device identifier.
    #[cfg_attr(feature = "serde", serde(rename = "serialNumber"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub serial_number: Option<heapless::String<25usize>>,
    /// Identifies the vendor (not necessarily in a unique manner).
    #[cfg_attr(feature = "serde", serde(rename = "vendorName"))]
    pub vendor_name: heapless::String<50usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ChargingStation<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.modem {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("modem"))?;
        }
        Ok(())
    }
}
/// This contains the reason for sending this message to the CSMS.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum BootReasonEnum {
    ApplicationReset,
    FirmwareUpdate,
    LocalReset,
    PowerUp,
    RemoteReset,
    ScheduledReset,
    Triggered,
    Unknown,
    Watchdog,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for BootReasonEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains whether the Charging Station has been registered
/// within the CSMS.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum RegistrationStatusEnum {
    Accepted,
    Pending,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for RegistrationStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Element providing more information about the status.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct StatusInfo<CustomDataType = crate::NoCustomData> {
    /// Additional text to provide detailed information.
    #[cfg_attr(feature = "serde", serde(rename = "additionalInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub additional_info: Option<heapless::String<512usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// A predefined code for the reason why the status is returned in this response. The string is case-insensitive.
    #[cfg_attr(feature = "serde", serde(rename = "reasonCode"))]
    pub reason_code: heapless::String<20usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for StatusInfo<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates the success or failure of the canceling of a reservation by CSMS.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CancelReservationStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CancelReservationStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Indicates the type of the signed certificate that is returned. When omitted the certificate is used for both the 15118 connection (if implemented) and the Charging Station to CSMS connection. This field is required when a typeOfCertificate was included in the &lt;&lt;signcertificaterequest,SignCertificateRequest&gt;&gt; that requested this certificate to be signed AND both the 15118 connection and the Charging Station connection are implemented.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CertificateSigningUseEnum {
    ChargingStationCertificate,
    V2GCertificate,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CertificateSigningUseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Returns whether certificate signing has been accepted, otherwise rejected.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CertificateSignedStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CertificateSignedStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// EVSE
/// urn:x-oca:ocpp:uid:2:233123
/// Electric Vehicle Supply Equipment
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct EVSE<CustomDataType = crate::NoCustomData> {
    /// An id to designate a specific connector (on an EVSE) by connector index number.
    #[cfg_attr(feature = "serde", serde(rename = "connectorId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub connector_id: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// EVSE Identifier. This contains a number (&gt; 0) designating an EVSE of the Charging Station.
    pub id: i64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for EVSE<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the type of availability change that the Charging Station should perform.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum OperationalStatusEnum {
    Inoperative,
    Operative,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for OperationalStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station is able to perform the availability change.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChangeAvailabilityStatusEnum {
    Accepted,
    Rejected,
    Scheduled,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChangeAvailabilityStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Accepted if the Charging Station has executed the request, otherwise rejected.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ClearCacheStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ClearCacheStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Profile. Charging_ Profile_ Purpose. Charging_ Profile_ Purpose_ Code
/// urn:x-oca:ocpp:uid:1:569231
/// Specifies to purpose of the charging profiles that will be cleared, if they meet the other criteria in the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingProfilePurposeEnum {
    ChargingStationExternalConstraints,
    ChargingStationMaxProfile,
    TxDefaultProfile,
    TxProfile,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingProfilePurposeEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Profile
/// urn:x-oca:ocpp:uid:2:233255
/// A ChargingProfile consists of a ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ClearChargingProfile<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfilePurpose"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_profile_purpose: Option<ChargingProfilePurposeEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// Specifies the id of the EVSE for which to clear charging profiles. An evseId of zero (0) specifies the charging profile for the overall Charging Station. Absence of this parameter means the clearing applies to all charging profiles that match the other criteria in the request.
    #[cfg_attr(feature = "serde", serde(rename = "evseId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub evse_id: Option<i64>,
    /// Charging_ Profile. Stack_ Level. Counter
    /// urn:x-oca:ocpp:uid:1:569230
    /// Specifies the stackLevel for which charging profiles will be cleared, if they meet the other criteria in the request.
    #[cfg_attr(feature = "serde", serde(rename = "stackLevel"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub stack_level: Option<i64>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ClearChargingProfile<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.charging_profile_purpose {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("chargingProfilePurpose"))?;
        }
        Ok(())
    }
}
/// Indicates if the Charging Station was able to execute the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ClearChargingProfileStatusEnum {
    Accepted,
    Unknown,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ClearChargingProfileStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Returns whether the Charging Station has been able to remove the message.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ClearMessageStatusEnum {
    Accepted,
    Unknown,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ClearMessageStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Result of the clear request for this monitor, identified by its Id.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ClearMonitoringStatusEnum {
    Accepted,
    Rejected,
    NotFound,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ClearMonitoringStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ClearMonitoringResult<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Id of the monitor of which a clear was requested.
    pub id: i64,
    pub status: ClearMonitoringStatusEnum,
    #[cfg_attr(feature = "serde", serde(rename = "statusInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub status_info: Option<StatusInfo<CustomDataType>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate
for ClearMonitoringResult<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.status)
            .map_err(|error| error.in_field("status"))?;
        if let Some(value) = &self.status_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("statusInfo"))?;
        }
        Ok(())
    }
}
/// Source of the charging limit.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingLimitSourceEnum {
    EMS,
    Other,
    SO,
    CSO,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingLimitSourceEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CertificateHashData<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "hashAlgorithm"))]
    pub hash_algorithm: HashAlgorithmEnum,
    /// Hashed value of the issuers public key
    #[cfg_attr(feature = "serde", serde(rename = "issuerKeyHash"))]
    pub issuer_key_hash: heapless::String<128usize>,
    /// Hashed value of the Issuer DN (Distinguished Name).
    #[cfg_attr(feature = "serde", serde(rename = "issuerNameHash"))]
    pub issuer_name_hash: heapless::String<128usize>,
    /// The serial number of the certificate.
    #[cfg_attr(feature = "serde", serde(rename = "serialNumber"))]
    pub serial_number: heapless::String<40usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for CertificateHashData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.hash_algorithm)
            .map_err(|error| error.in_field("hashAlgorithm"))?;
        Ok(())
    }
}
/// Indicates whether the request was accepted.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CustomerInformationStatusEnum {
    Accepted,
    Rejected,
    Invalid,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CustomerInformationStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates the success or failure of the data transfer.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DataTransferStatusEnum {
    Accepted,
    Rejected,
    UnknownMessageId,
    UnknownVendorId,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for DataTransferStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging Station indicates if it can process the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DeleteCertificateStatusEnum {
    Accepted,
    Failed,
    NotFound,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for DeleteCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the progress status of the firmware installation.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum FirmwareStatusEnum {
    Downloaded,
    DownloadFailed,
    Downloading,
    DownloadScheduled,
    DownloadPaused,
    Idle,
    InstallationFailed,
    Installing,
    Installed,
    InstallRebooting,
    InstallScheduled,
    InstallVerificationFailed,
    InvalidSignature,
    SignatureVerified,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for FirmwareStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Defines whether certificate needs to be installed or updated.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CertificateActionEnum {
    Install,
    Update,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CertificateActionEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Indicates whether the message was processed properly.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Iso15118EVCertificateStatusEnum {
    Accepted,
    Failed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for Iso15118EVCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This field specifies the report base.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ReportBaseEnum {
    ConfigurationInventory,
    FullInventory,
    SummaryInventory,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ReportBaseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station is able to accept this request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GenericDeviceModelStatusEnum {
    Accepted,
    Rejected,
    NotSupported,
    EmptyResultSet,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GenericDeviceModelStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the charging station was able to retrieve the OCSP certificate status.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetCertificateStatusEnum {
    Accepted,
    Failed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Charging_ Profile
/// urn:x-oca:ocpp:uid:2:233255
/// A ChargingProfile consists of ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingProfileCriterion<CustomDataType = crate::NoCustomData> {
    /// For which charging limit sources, charging profiles SHALL be reported. If omitted, the Charging Station SHALL not filter on chargingLimitSource.
    #[cfg_attr(feature = "serde", serde(rename = "chargingLimitSource"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_limit_source: Option<heapless::Vec<ChargingLimitSourceEnum, 4usize>>,
    /// List of all the chargingProfileIds requested. Any ChargingProfile that matches one of these profiles will be reported. If omitted, the Charging Station SHALL not filter on chargingProfileId. This field SHALL NOT contain more ids than set in &lt;&lt;configkey-charging-profile-entries,ChargingProfileEntries.maxLimit&gt;&gt;
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfileId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_profile_id: Option<alloc::vec::Vec<i64>>,
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfilePurpose"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_profile_purpose: Option<ChargingProfilePurposeEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Profile. Stack_ Level. Counter
    /// urn:x-oca:ocpp:uid:1:569230
    /// Value determining level in hierarchy stack of profiles. Higher values have precedence over lower values. Lowest level is 0.
    #[cfg_attr(feature = "serde", serde(rename = "stackLevel"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub stack_level: Option<i64>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate
for ChargingProfileCriterion<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.charging_limit_source {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("chargingLimitSource"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| {
                        error.in_index(index).in_field("chargingLimitSource")
                    })?;
            }
        }
        if let Some(value) = &self.charging_profile_id {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("chargingProfileId"))?;
        }
        if let Some(value) = &self.charging_profile_purpose {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("chargingProfilePurpose"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Charging_ Profile
/// urn:x-oca:ocpp:uid:2:233255
/// A ChargingProfile consists of ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingProfileCriterion<
    CustomDataType = crate::NoCustomData,
    const CHARGING_PROFILE_CRITERION_CHARGING_PROFILE_ID_CAP: usize = 8usize,
> {
    /// For which charging limit sources, charging profiles SHALL be reported. If omitted, the Charging Station SHALL not filter on chargingLimitSource.
    #[cfg_attr(feature = "serde", serde(rename = "chargingLimitSource"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_limit_source: Option<heapless::Vec<ChargingLimitSourceEnum, 4usize>>,
    /// List of all the chargingProfileIds requested. Any ChargingProfile that matches one of these profiles will be reported. If omitted, the Charging Station SHALL not filter on chargingProfileId. This field SHALL NOT contain more ids than set in &lt;&lt;configkey-charging-profile-entries,ChargingProfileEntries.maxLimit&gt;&gt;
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfileId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_profile_id: Option<
        heapless::Vec<i64, CHARGING_PROFILE_CRITERION_CHARGING_PROFILE_ID_CAP>,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfilePurpose"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_profile_purpose: Option<ChargingProfilePurposeEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Profile. Stack_ Level. Counter
    /// urn:x-oca:ocpp:uid:1:569230
    /// Value determining level in hierarchy stack of profiles. Higher values have precedence over lower values. Lowest level is 0.
    #[cfg_attr(feature = "serde", serde(rename = "stackLevel"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub stack_level: Option<i64>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const CHARGING_PROFILE_CRITERION_CHARGING_PROFILE_ID_CAP: usize,
> crate::validate::Validate
for ChargingProfileCriterion<
    CustomDataType,
    CHARGING_PROFILE_CRITERION_CHARGING_PROFILE_ID_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.charging_limit_source {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("chargingLimitSource"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| {
                        error.in_index(index).in_field("chargingLimitSource")
                    })?;
            }
        }
        if let Some(value) = &self.charging_profile_id {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("chargingProfileId"))?;
        }
        if let Some(value) = &self.charging_profile_purpose {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("chargingProfilePurpose"))?;
        }
        Ok(())
    }
}
/// This indicates whether the Charging Station is able to process this request and will send &lt;&lt;reportchargingprofilesrequest, ReportChargingProfilesRequest&gt;&gt; messages.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetChargingProfileStatusEnum {
    Accepted,
    NoProfiles,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetChargingProfileStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Can be used to force a power or current profile.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingRateUnitEnum {
    W,
    A,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingRateUnitEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Schedule_ Period
/// urn:x-oca:ocpp:uid:2:233257
/// Charging schedule period structure defines a time period in a charging schedule.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingSchedulePeriod<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Schedule_ Period. Limit. Measure
    /// urn:x-oca:ocpp:uid:1:569241
    /// Charging rate limit during the schedule period, in the applicable chargingRateUnit, for example in Amperes (A) or Watts (W). Accepts at most one digit fraction (e.g. 8.1).
    pub limit: f64,
    /// Charging_ Schedule_ Period. Number_ Phases. Counter
    /// urn:x-oca:ocpp:uid:1:569242
    /// The number of phases that can be used for charging. If a number of phases is needed, numberPhases=3 will be assumed unless another number is given.
    #[cfg_attr(feature = "serde", serde(rename = "numberPhases"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub number_phases: Option<i64>,
    /// Values: 1..3, Used if numberPhases=1 and if the EVSE is capable of switching the phase connected to the EV, i.e. ACPhaseSwitchingSupported is defined and true. It’s not allowed unless both conditions above are true. If both conditions are true, and phaseToUse is omitted, the Charging Station / EVSE will make the selection on its own.
    #[cfg_attr(feature = "serde", serde(rename = "phaseToUse"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub phase_to_use: Option<i64>,
    /// Charging_ Schedule_ Period. Start_ Period. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569240
    /// Start of the period, in seconds from the start of schedule. The value of StartPeriod also defines the stop time of the previous period.
    #[cfg_attr(feature = "serde", serde(rename = "startPeriod"))]
    pub start_period: i64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate
for ChargingSchedulePeriod<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Composite_ Schedule
/// urn:x-oca:ocpp:uid:2:233362
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CompositeSchedule<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingRateUnit"))]
    pub charging_rate_unit: ChargingRateUnitEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedulePeriod"))]
    pub charging_schedule_period: alloc::vec::Vec<
        ChargingSchedulePeriod<CustomDataType>,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Duration of the schedule in seconds.
    pub duration: i64,
    /// The ID of the EVSE for which the
    /// schedule is requested. When evseid=0, the
    /// Charging Station calculated the expected
    /// consumption for the grid connection.
    #[cfg_attr(feature = "serde", serde(rename = "evseId"))]
    pub evse_id: i64,
    /// Composite_ Schedule. Start. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569456
    /// Date and time at which the schedule becomes active. All time measurements within the schedule are relative to this timestamp.
    #[cfg_attr(feature = "serde", serde(rename = "scheduleStart"))]
    pub schedule_start: crate::OcppTimestamp,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for CompositeSchedule<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_rate_unit)
            .map_err(|error| error.in_field("chargingRateUnit"))?;
        crate::validate::check_min_items(self.charging_schedule_period.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        for (index, item) in self.charging_schedule_period.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| {
                    error.in_index(index).in_field("chargingSchedulePeriod")
                })?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Composite_ Schedule
/// urn:x-oca:ocpp:uid:2:233362
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CompositeSchedule<
    CustomDataType = crate::NoCustomData,
    const COMPOSITE_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingRateUnit"))]
    pub charging_rate_unit: ChargingRateUnitEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedulePeriod"))]
    pub charging_schedule_period: heapless::Vec<
        ChargingSchedulePeriod<CustomDataType>,
        COMPOSITE_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Duration of the schedule in seconds.
    pub duration: i64,
    /// The ID of the EVSE for which the
    /// schedule is requested. When evseid=0, the
    /// Charging Station calculated the expected
    /// consumption for the grid connection.
    #[cfg_attr(feature = "serde", serde(rename = "evseId"))]
    pub evse_id: i64,
    /// Composite_ Schedule. Start. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569456
    /// Date and time at which the schedule becomes active. All time measurements within the schedule are relative to this timestamp.
    #[cfg_attr(feature = "serde", serde(rename = "scheduleStart"))]
    pub schedule_start: crate::OcppTimestamp,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const COMPOSITE_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize,
> crate::validate::Validate
for CompositeSchedule<CustomDataType, COMPOSITE_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_rate_unit)
            .map_err(|error| error.in_field("chargingRateUnit"))?;
        crate::validate::check_min_items(self.charging_schedule_period.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        for (index, item) in self.charging_schedule_period.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| {
                    error.in_index(index).in_field("chargingSchedulePeriod")
                })?;
        }
        Ok(())
    }
}
/// The Charging Station will indicate if it was
/// able to process the request
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GenericStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GenericStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// If provided the Charging Station shall return Display Messages with the given priority only.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MessagePriorityEnum {
    AlwaysFront,
    InFront,
    NormalCycle,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MessagePriorityEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// If provided the Charging Station shall return Display Messages with the given state only.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MessageStateEnum {
    Charging,
    Faulted,
    Idle,
    Unavailable,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MessageStateEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Indicates if the Charging Station has Display Messages that match the request criteria in the &lt;&lt;getdisplaymessagesrequest,GetDisplayMessagesRequest&gt;&gt;
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetDisplayMessagesStatusEnum {
    Accepted,
    Unknown,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetDisplayMessagesStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetCertificateIdUseEnum {
    V2GRootCertificate,
    MORootCertificate,
    CSMSRootCertificate,
    V2GCertificateChain,
    ManufacturerRootCertificate,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetCertificateIdUseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CertificateHashDataChain<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "certificateHashData"))]
    pub certificate_hash_data: CertificateHashData<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "certificateType"))]
    pub certificate_type: GetCertificateIdUseEnum,
    #[cfg_attr(feature = "serde", serde(rename = "childCertificateHashData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub child_certificate_hash_data: Option<
        heapless::Vec<CertificateHashData<CustomDataType>, 4usize>,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate
for CertificateHashDataChain<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.certificate_hash_data)
            .map_err(|error| error.in_field("certificateHashData"))?;
        crate::validate::Validate::validate(&self.certificate_type)
            .map_err(|error| error.in_field("certificateType"))?;
        if let Some(value) = &self.child_certificate_hash_data {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("childCertificateHashData"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| {
                        error.in_index(index).in_field("childCertificateHashData")
                    })?;
            }
        }
        Ok(())
    }
}
/// Charging Station indicates if it can process the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetInstalledCertificateStatusEnum {
    Accepted,
    NotFound,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetInstalledCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Log
/// urn:x-enexis:ecdm:uid:2:233373
/// Generic class for the configuration of logging entries.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct LogParameters<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Log. Latest_ Timestamp. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569482
    /// This contains the date and time of the latest logging information to include in the diagnostics.
    #[cfg_attr(feature = "serde", serde(rename = "latestTimestamp"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub latest_timestamp: Option<crate::OcppTimestamp>,
    /// Log. Oldest_ Timestamp. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569477
    /// This contains the date and time of the oldest logging information to include in the diagnostics.
    #[cfg_attr(feature = "serde", serde(rename = "oldestTimestamp"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub oldest_timestamp: Option<crate::OcppTimestamp>,
    /// Log. Remote_ Location. URI
    /// urn:x-enexis:ecdm:uid:1:569484
    /// The URL of the location at the remote system where the log should be stored.
    #[cfg_attr(feature = "serde", serde(rename = "remoteLocation"))]
    pub remote_location: heapless::String<512usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for LogParameters<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the type of log file that the Charging Station
/// should send.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum LogEnum {
    DiagnosticsLog,
    SecurityLog,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for LogEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This field indicates whether the Charging Station was able to accept the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum LogStatusEnum {
    Accepted,
    Rejected,
    AcceptedCanceled,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for LogStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// A physical or logical component
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Component<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub evse: Option<EVSE<CustomDataType>>,
    /// Name of instance in case the component exists as multiple instances. Case Insensitive. strongly advised to use Camel Case.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub instance: Option<heapless::String<50usize>>,
    /// Name of the component. Name should be taken from the list of standardized component names whenever possible. Case Insensitive. strongly advised to use Camel Case.
    pub name: heapless::String<50usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for Component<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.evse {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("evse"))?;
        }
        Ok(())
    }
}
/// Reference key to a component-variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Variable<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Name of instance in case the variable exists as multiple instances. Case Insensitive. strongly advised to use Camel Case.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub instance: Option<heapless::String<50usize>>,
    /// Name of the variable. Name should be taken from the list of standardized variable names whenever possible. Case Insensitive. strongly advised to use Camel Case.
    pub name: heapless::String<50usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for Variable<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Class to report components, variables and variable attributes and characteristics.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ComponentVariable<CustomDataType = crate::NoCustomData> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub variable: Option<Variable<CustomDataType>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ComponentVariable<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        if let Some(value) = &self.variable {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("variable"))?;
        }
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MonitoringCriterionEnum {
    ThresholdMonitoring,
    DeltaMonitoring,
    PeriodicMonitoring,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MonitoringCriterionEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ComponentCriterionEnum {
    Active,
    Available,
    Enabled,
    Problem,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ComponentCriterionEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Attribute type for which value is requested. When absent, default Actual is assumed.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AttributeEnum {
    Actual,
    Target,
    MinSet,
    MaxSet,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for AttributeEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Class to hold parameters for GetVariables request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct GetVariableData<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for GetVariableData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// Result status of getting the variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GetVariableStatusEnum {
    Accepted,
    Rejected,
    UnknownComponent,
    UnknownVariable,
    NotSupportedAttributeType,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for GetVariableStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Class to hold results of GetVariables request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct GetVariableResult<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatus"))]
    pub attribute_status: GetVariableStatusEnum,
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatusInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_status_info: Option<StatusInfo<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    /// Value of requested attribute type of component-variable. This field can only be empty when the given status is NOT accepted.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "attributeValue"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_value: Option<alloc::string::String>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for GetVariableResult<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.attribute_status)
            .map_err(|error| error.in_field("attributeStatus"))?;
        if let Some(value) = &self.attribute_status_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeStatusInfo"))?;
        }
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        if let Some(value) = &self.attribute_value {
            crate::validate::check_max_length(value, 2500usize)
                .map_err(|error| error.in_field("attributeValue"))?;
        }
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Class to hold results of GetVariables request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct GetVariableResult<
    CustomDataType = crate::NoCustomData,
    const GET_VARIABLE_RESULT_ATTRIBUTE_VALUE_CAP: usize = 1024usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatus"))]
    pub attribute_status: GetVariableStatusEnum,
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatusInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_status_info: Option<StatusInfo<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    /// Value of requested attribute type of component-variable. This field can only be empty when the given status is NOT accepted.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "attributeValue"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_value: Option<
        heapless::String<GET_VARIABLE_RESULT_ATTRIBUTE_VALUE_CAP>,
    >,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const GET_VARIABLE_RESULT_ATTRIBUTE_VALUE_CAP: usize,
> crate::validate::Validate
for GetVariableResult<CustomDataType, GET_VARIABLE_RESULT_ATTRIBUTE_VALUE_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.attribute_status)
            .map_err(|error| error.in_field("attributeStatus"))?;
        if let Some(value) = &self.attribute_status_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeStatusInfo"))?;
        }
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        if let Some(value) = &self.attribute_value {
            crate::validate::check_max_length(value, 2500usize)
                .map_err(|error| error.in_field("attributeValue"))?;
        }
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// Indicates the certificate type that is sent.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum InstallCertificateUseEnum {
    V2GRootCertificate,
    MORootCertificate,
    CSMSRootCertificate,
    ManufacturerRootCertificate,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for InstallCertificateUseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging Station indicates if installation was successful.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum InstallCertificateStatusEnum {
    Accepted,
    Rejected,
    Failed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for InstallCertificateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the status of the log upload.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UploadLogStatusEnum {
    BadMessage,
    Idle,
    NotSupportedOperation,
    PermissionDenied,
    Uploaded,
    UploadFailure,
    Uploading,
    AcceptedCanceled,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for UploadLogStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Sampled_ Value. Context. Reading_ Context_ Code
/// urn:x-oca:ocpp:uid:1:569261
/// Type of detail value: start, end or sample. Default = "Sample.Periodic"
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ReadingContextEnum {
    #[cfg_attr(feature = "serde", serde(rename = "Interruption.Begin"))]
    InterruptionBegin,
    #[cfg_attr(feature = "serde", serde(rename = "Interruption.End"))]
    InterruptionEnd,
    Other,
    #[cfg_attr(feature = "serde", serde(rename = "Sample.Clock"))]
    SampleClock,
    #[cfg_attr(feature = "serde", serde(rename = "Sample.Periodic"))]
    SamplePeriodic,
    #[cfg_attr(feature = "serde", serde(rename = "Transaction.Begin"))]
    TransactionBegin,
    #[cfg_attr(feature = "serde", serde(rename = "Transaction.End"))]
    TransactionEnd,
    Trigger,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ReadingContextEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Sampled_ Value. Location. Location_ Code
/// urn:x-oca:ocpp:uid:1:569265
/// Indicates where the measured value has been sampled. Default =  "Outlet"
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum LocationEnum {
    Body,
    Cable,
    EV,
    Inlet,
    Outlet,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for LocationEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Sampled_ Value. Measurand. Measurand_ Code
/// urn:x-oca:ocpp:uid:1:569263
/// Type of measurement. Default = "Energy.Active.Import.Register"
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MeasurandEnum {
    #[cfg_attr(feature = "serde", serde(rename = "Current.Export"))]
    CurrentExport,
    #[cfg_attr(feature = "serde", serde(rename = "Current.Import"))]
    CurrentImport,
    #[cfg_attr(feature = "serde", serde(rename = "Current.Offered"))]
    CurrentOffered,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Active.Export.Register"))]
    EnergyActiveExportRegister,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Active.Import.Register"))]
    EnergyActiveImportRegister,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Reactive.Export.Register"))]
    EnergyReactiveExportRegister,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Reactive.Import.Register"))]
    EnergyReactiveImportRegister,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Active.Export.Interval"))]
    EnergyActiveExportInterval,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Active.Import.Interval"))]
    EnergyActiveImportInterval,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Active.Net"))]
    EnergyActiveNet,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Reactive.Export.Interval"))]
    EnergyReactiveExportInterval,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Reactive.Import.Interval"))]
    EnergyReactiveImportInterval,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Reactive.Net"))]
    EnergyReactiveNet,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Apparent.Net"))]
    EnergyApparentNet,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Apparent.Import"))]
    EnergyApparentImport,
    #[cfg_attr(feature = "serde", serde(rename = "Energy.Apparent.Export"))]
    EnergyApparentExport,
    Frequency,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Active.Export"))]
    PowerActiveExport,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Active.Import"))]
    PowerActiveImport,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Factor"))]
    PowerFactor,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Offered"))]
    PowerOffered,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Reactive.Export"))]
    PowerReactiveExport,
    #[cfg_attr(feature = "serde", serde(rename = "Power.Reactive.Import"))]
    PowerReactiveImport,
    SoC,
    Voltage,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MeasurandEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Sampled_ Value. Phase. Phase_ Code
/// urn:x-oca:ocpp:uid:1:569264
/// Indicates how the measured value is to be interpreted. For instance between L1 and neutral (L1-N) Please note that not all values of phase are applicable to all Measurands. When phase is absent, the measured value is interpreted as an overall value.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum PhaseEnum {
    L1,
    L2,
    L3,
    N,
    #[cfg_attr(feature = "serde", serde(rename = "L1-N"))]
    L1N,
    #[cfg_attr(feature = "serde", serde(rename = "L2-N"))]
    L2N,
    #[cfg_attr(feature = "serde", serde(rename = "L3-N"))]
    L3N,
    #[cfg_attr(feature = "serde", serde(rename = "L1-L2"))]
    L1L2,
    #[cfg_attr(feature = "serde", serde(rename = "L2-L3"))]
    L2L3,
    #[cfg_attr(feature = "serde", serde(rename = "L3-L1"))]
    L3L1,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for PhaseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Represent a signed version of the meter value.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SignedMeterValue<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Method used to encode the meter values before applying the digital signature algorithm.
    #[cfg_attr(feature = "serde", serde(rename = "encodingMethod"))]
    pub encoding_method: heapless::String<50usize>,
    /// Base64 encoded, sending depends on configuration variable _PublicKeyWithSignedMeterValue_.
    #[cfg_attr(feature = "serde", serde(rename = "publicKey"))]
    pub public_key: alloc::string::String,
    /// Base64 encoded, contains the signed data which might contain more then just the meter value. It can contain information like timestamps, reference to a customer etc.
    #[cfg_attr(feature = "serde", serde(rename = "signedMeterData"))]
    pub signed_meter_data: alloc::string::String,
    /// Method used to create the digital signature.
    #[cfg_attr(feature = "serde", serde(rename = "signingMethod"))]
    pub signing_method: heapless::String<50usize>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for SignedMeterValue<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_max_length(&self.public_key, 2500usize)
            .map_err(|error| error.in_field("publicKey"))?;
        crate::validate::check_max_length(&self.signed_meter_data, 2500usize)
            .map_err(|error| error.in_field("signedMeterData"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Represent a signed version of the meter value.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SignedMeterValue<
    CustomDataType = crate::NoCustomData,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize = 1024usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize = 1024usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Method used to encode the meter values before applying the digital signature algorithm.
    #[cfg_attr(feature = "serde", serde(rename = "encodingMethod"))]
    pub encoding_method: heapless::String<50usize>,
    /// Base64 encoded, sending depends on configuration variable _PublicKeyWithSignedMeterValue_.
    #[cfg_attr(feature = "serde", serde(rename = "publicKey"))]
    pub public_key: heapless::String<SIGNED_METER_VALUE_PUBLIC_KEY_CAP>,
    /// Base64 encoded, contains the signed data which might contain more then just the meter value. It can contain information like timestamps, reference to a customer etc.
    #[cfg_attr(feature = "serde", serde(rename = "signedMeterData"))]
    pub signed_meter_data: heapless::String<SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP>,
    /// Method used to create the digital signature.
    #[cfg_attr(feature = "serde", serde(rename = "signingMethod"))]
    pub signing_method: heapless::String<50usize>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize,
> crate::validate::Validate
for SignedMeterValue<
    CustomDataType,
    SIGNED_METER_VALUE_PUBLIC_KEY_CAP,
    SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_max_length(&self.public_key, 2500usize)
            .map_err(|error| error.in_field("publicKey"))?;
        crate::validate::check_max_length(&self.signed_meter_data, 2500usize)
            .map_err(|error| error.in_field("signedMeterData"))?;
        Ok(())
    }
}
/// Represents a UnitOfMeasure with a multiplier
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct UnitOfMeasure<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Multiplier, this value represents the exponent to base 10. I.e. multiplier 3 means 10 raised to the 3rd power. Default is 0.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub multiplier: Option<i64>,
    /// Unit of the value. Default = "Wh" if the (default) measurand is an "Energy" type.
    /// This field SHALL use a value from the list Standardized Units of Measurements in Part 2 Appendices.
    /// If an applicable unit is available in that list, otherwise a "custom" unit might be used.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub unit: Option<heapless::String<20usize>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for UnitOfMeasure<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Sampled_ Value
/// urn:x-oca:ocpp:uid:2:233266
/// Single sampled value in MeterValues. Each value can be accompanied by optional fields.
///
/// To save on mobile data usage, default values of all of the optional fields are such that. The value without any additional fields will be interpreted, as a register reading of active import energy in Wh (Watt-hour) units.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SampledValue<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub context: Option<ReadingContextEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub location: Option<LocationEnum>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub measurand: Option<MeasurandEnum>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub phase: Option<PhaseEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "signedMeterValue"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signed_meter_value: Option<SignedMeterValue<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "unitOfMeasure"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub unit_of_measure: Option<UnitOfMeasure<CustomDataType>>,
    /// Sampled_ Value. Value. Measure
    /// urn:x-oca:ocpp:uid:1:569260
    /// Indicates the measured value.
    pub value: f64,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for SampledValue<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.context {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("context"))?;
        }
        if let Some(value) = &self.location {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("location"))?;
        }
        if let Some(value) = &self.measurand {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("measurand"))?;
        }
        if let Some(value) = &self.phase {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("phase"))?;
        }
        if let Some(value) = &self.signed_meter_value {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("signedMeterValue"))?;
        }
        if let Some(value) = &self.unit_of_measure {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("unitOfMeasure"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Sampled_ Value
/// urn:x-oca:ocpp:uid:2:233266
/// Single sampled value in MeterValues. Each value can be accompanied by optional fields.
///
/// To save on mobile data usage, default values of all of the optional fields are such that. The value without any additional fields will be interpreted, as a register reading of active import energy in Wh (Watt-hour) units.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SampledValue<
    CustomDataType = crate::NoCustomData,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize = 1024usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize = 1024usize,
> {
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub context: Option<ReadingContextEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub location: Option<LocationEnum>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub measurand: Option<MeasurandEnum>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub phase: Option<PhaseEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "signedMeterValue"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signed_meter_value: Option<
        SignedMeterValue<
            CustomDataType,
            SIGNED_METER_VALUE_PUBLIC_KEY_CAP,
            SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP,
        >,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "unitOfMeasure"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub unit_of_measure: Option<UnitOfMeasure<CustomDataType>>,
    /// Sampled_ Value. Value. Measure
    /// urn:x-oca:ocpp:uid:1:569260
    /// Indicates the measured value.
    pub value: f64,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize,
> crate::validate::Validate
for SampledValue<
    CustomDataType,
    SIGNED_METER_VALUE_PUBLIC_KEY_CAP,
    SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.context {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("context"))?;
        }
        if let Some(value) = &self.location {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("location"))?;
        }
        if let Some(value) = &self.measurand {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("measurand"))?;
        }
        if let Some(value) = &self.phase {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("phase"))?;
        }
        if let Some(value) = &self.signed_meter_value {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("signedMeterValue"))?;
        }
        if let Some(value) = &self.unit_of_measure {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("unitOfMeasure"))?;
        }
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Meter_ Value
/// urn:x-oca:ocpp:uid:2:233265
/// Collection of one or more sampled values in MeterValuesRequest and TransactionEvent. All sampled values in a MeterValue are sampled at the same point in time.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MeterValue<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "sampledValue"))]
    pub sampled_value: alloc::vec::Vec<SampledValue<CustomDataType>>,
    /// Meter_ Value. Timestamp. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569259
    /// Timestamp for measured value(s).
    pub timestamp: crate::OcppTimestamp,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for MeterValue<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_min_items(self.sampled_value.len(), 1usize)
            .map_err(|error| error.in_field("sampledValue"))?;
        for (index, item) in self.sampled_value.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("sampledValue"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Meter_ Value
/// urn:x-oca:ocpp:uid:2:233265
/// Collection of one or more sampled values in MeterValuesRequest and TransactionEvent. All sampled values in a MeterValue are sampled at the same point in time.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MeterValue<
    CustomDataType = crate::NoCustomData,
    const METER_VALUE_SAMPLED_VALUE_CAP: usize = 8usize,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize = 1024usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize = 1024usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "sampledValue"))]
    pub sampled_value: heapless::Vec<
        SampledValue<
            CustomDataType,
            SIGNED_METER_VALUE_PUBLIC_KEY_CAP,
            SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP,
        >,
        METER_VALUE_SAMPLED_VALUE_CAP,
    >,
    /// Meter_ Value. Timestamp. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569259
    /// Timestamp for measured value(s).
    pub timestamp: crate::OcppTimestamp,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const METER_VALUE_SAMPLED_VALUE_CAP: usize,
    const SIGNED_METER_VALUE_PUBLIC_KEY_CAP: usize,
    const SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP: usize,
> crate::validate::Validate
for MeterValue<
    CustomDataType,
    METER_VALUE_SAMPLED_VALUE_CAP,
    SIGNED_METER_VALUE_PUBLIC_KEY_CAP,
    SIGNED_METER_VALUE_SIGNED_METER_DATA_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_min_items(self.sampled_value.len(), 1usize)
            .map_err(|error| error.in_field("sampledValue"))?;
        for (index, item) in self.sampled_value.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("sampledValue"))?;
        }
        Ok(())
    }
}
/// Charging_ Limit
/// urn:x-enexis:ecdm:uid:2:234489
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingLimit<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingLimitSource"))]
    pub charging_limit_source: ChargingLimitSourceEnum,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Limit. Is_ Grid_ Critical. Indicator
    /// urn:x-enexis:ecdm:uid:1:570847
    /// Indicates whether the charging limit is critical for the grid.
    #[cfg_attr(feature = "serde", serde(rename = "isGridCritical"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub is_grid_critical: Option<bool>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ChargingLimit<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_limit_source)
            .map_err(|error| error.in_field("chargingLimitSource"))?;
        Ok(())
    }
}
/// Cost. Cost_ Kind. Cost_ Kind_ Code
/// urn:x-oca:ocpp:uid:1:569243
/// The kind of cost referred to in the message element amount
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CostKindEnum {
    CarbonDioxideEmission,
    RelativePricePercentage,
    RenewableGenerationPercentage,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for CostKindEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Cost
/// urn:x-oca:ocpp:uid:2:233258
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Cost<CustomDataType = crate::NoCustomData> {
    /// Cost. Amount. Amount
    /// urn:x-oca:ocpp:uid:1:569244
    /// The estimated or actual cost per kWh
    pub amount: i64,
    /// Cost. Amount_ Multiplier. Integer
    /// urn:x-oca:ocpp:uid:1:569245
    /// Values: -3..3, The amountMultiplier defines the exponent to base 10 (dec). The final value is determined by: amount * 10 ^ amountMultiplier
    #[cfg_attr(feature = "serde", serde(rename = "amountMultiplier"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub amount_multiplier: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "costKind"))]
    pub cost_kind: CostKindEnum,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for Cost<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.cost_kind)
            .map_err(|error| error.in_field("costKind"))?;
        Ok(())
    }
}
/// Consumption_ Cost
/// urn:x-oca:ocpp:uid:2:233259
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ConsumptionCost<CustomDataType = crate::NoCustomData> {
    pub cost: heapless::Vec<Cost<CustomDataType>, 3usize>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Consumption_ Cost. Start_ Value. Numeric
    /// urn:x-oca:ocpp:uid:1:569246
    /// The lowest level of consumption that defines the starting point of this consumption block. The block interval extends to the start of the next interval.
    #[cfg_attr(feature = "serde", serde(rename = "startValue"))]
    pub start_value: f64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ConsumptionCost<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_min_items(self.cost.len(), 1usize)
            .map_err(|error| error.in_field("cost"))?;
        for (index, item) in self.cost.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("cost"))?;
        }
        Ok(())
    }
}
/// Relative_ Timer_ Interval
/// urn:x-oca:ocpp:uid:2:233270
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct RelativeTimeInterval<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Relative_ Timer_ Interval. Duration. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569280
    /// Duration of the interval, in seconds.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub duration: Option<i64>,
    /// Relative_ Timer_ Interval. Start. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569279
    /// Start of the interval, in seconds from NOW.
    pub start: i64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for RelativeTimeInterval<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Sales_ Tariff_ Entry
/// urn:x-oca:ocpp:uid:2:233271
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SalesTariffEntry<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "consumptionCost"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub consumption_cost: Option<heapless::Vec<ConsumptionCost<CustomDataType>, 3usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Sales_ Tariff_ Entry. E_ Price_ Level. Unsigned_ Integer
    /// urn:x-oca:ocpp:uid:1:569281
    /// Defines the price level of this SalesTariffEntry (referring to NumEPriceLevels). Small values for the EPriceLevel represent a cheaper TariffEntry. Large values for the EPriceLevel represent a more expensive TariffEntry.
    #[cfg_attr(feature = "serde", serde(rename = "ePriceLevel"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub e_price_level: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "relativeTimeInterval"))]
    pub relative_time_interval: RelativeTimeInterval<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for SalesTariffEntry<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.consumption_cost {
            crate::validate::check_min_items(value.len(), 1usize)
                .map_err(|error| error.in_field("consumptionCost"))?;
            for (index, item) in value.iter().enumerate() {
                crate::validate::Validate::validate(item)
                    .map_err(|error| error.in_index(index).in_field("consumptionCost"))?;
            }
        }
        if let Some(value) = self.e_price_level {
            crate::validate::check_min_i64(value, 0i64)
                .map_err(|error| error.in_field("ePriceLevel"))?;
        }
        crate::validate::Validate::validate(&self.relative_time_interval)
            .map_err(|error| error.in_field("relativeTimeInterval"))?;
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Sales_ Tariff
/// urn:x-oca:ocpp:uid:2:233272
/// NOTE: This dataType is based on dataTypes from &lt;&lt;ref-ISOIEC15118-2,ISO 15118-2&gt;&gt;.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SalesTariff<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// SalesTariff identifier used to identify one sales tariff. An SAID remains a unique identifier for one schedule throughout a charging session.
    pub id: i64,
    /// Sales_ Tariff. Num_ E_ Price_ Levels. Counter
    /// urn:x-oca:ocpp:uid:1:569284
    /// Defines the overall number of distinct price levels used across all provided SalesTariff elements.
    #[cfg_attr(feature = "serde", serde(rename = "numEPriceLevels"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub num_e_price_levels: Option<i64>,
    /// Sales_ Tariff. Sales. Tariff_ Description
    /// urn:x-oca:ocpp:uid:1:569283
    /// A human readable title/short description of the sales tariff e.g. for HMI display purposes.
    #[cfg_attr(feature = "serde", serde(rename = "salesTariffDescription"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub sales_tariff_description: Option<heapless::String<32usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "salesTariffEntry"))]
    pub sales_tariff_entry: alloc::vec::Vec<SalesTariffEntry<CustomDataType>>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for SalesTariff<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_min_items(self.sales_tariff_entry.len(), 1usize)
            .map_err(|error| error.in_field("salesTariffEntry"))?;
        crate::validate::check_max_items(self.sales_tariff_entry.len(), 1024usize)
            .map_err(|error| error.in_field("salesTariffEntry"))?;
        for (index, item) in self.sales_tariff_entry.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("salesTariffEntry"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Sales_ Tariff
/// urn:x-oca:ocpp:uid:2:233272
/// NOTE: This dataType is based on dataTypes from &lt;&lt;ref-ISOIEC15118-2,ISO 15118-2&gt;&gt;.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SalesTariff<
    CustomDataType = crate::NoCustomData,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// SalesTariff identifier used to identify one sales tariff. An SAID remains a unique identifier for one schedule throughout a charging session.
    pub id: i64,
    /// Sales_ Tariff. Num_ E_ Price_ Levels. Counter
    /// urn:x-oca:ocpp:uid:1:569284
    /// Defines the overall number of distinct price levels used across all provided SalesTariff elements.
    #[cfg_attr(feature = "serde", serde(rename = "numEPriceLevels"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub num_e_price_levels: Option<i64>,
    /// Sales_ Tariff. Sales. Tariff_ Description
    /// urn:x-oca:ocpp:uid:1:569283
    /// A human readable title/short description of the sales tariff e.g. for HMI display purposes.
    #[cfg_attr(feature = "serde", serde(rename = "salesTariffDescription"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub sales_tariff_description: Option<heapless::String<32usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "salesTariffEntry"))]
    pub sales_tariff_entry: heapless::Vec<
        SalesTariffEntry<CustomDataType>,
        SALES_TARIFF_SALES_TARIFF_ENTRY_CAP,
    >,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize,
> crate::validate::Validate
for SalesTariff<CustomDataType, SALES_TARIFF_SALES_TARIFF_ENTRY_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_min_items(self.sales_tariff_entry.len(), 1usize)
            .map_err(|error| error.in_field("salesTariffEntry"))?;
        crate::validate::check_max_items(self.sales_tariff_entry.len(), 1024usize)
            .map_err(|error| error.in_field("salesTariffEntry"))?;
        for (index, item) in self.sales_tariff_entry.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("salesTariffEntry"))?;
        }
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Charging_ Schedule
/// urn:x-oca:ocpp:uid:2:233256
/// Charging schedule structure defines a list of charging periods, as used in: GetCompositeSchedule.conf and ChargingProfile.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingSchedule<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingRateUnit"))]
    pub charging_rate_unit: ChargingRateUnitEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedulePeriod"))]
    pub charging_schedule_period: alloc::vec::Vec<
        ChargingSchedulePeriod<CustomDataType>,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Schedule. Duration. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569236
    /// Duration of the charging schedule in seconds. If the duration is left empty, the last period will continue indefinitely or until end of the transaction if chargingProfilePurpose = TxProfile.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub duration: Option<i64>,
    /// Identifies the ChargingSchedule.
    pub id: i64,
    /// Charging_ Schedule. Min_ Charging_ Rate. Numeric
    /// urn:x-oca:ocpp:uid:1:569239
    /// Minimum charging rate supported by the EV. The unit of measure is defined by the chargingRateUnit. This parameter is intended to be used by a local smart charging algorithm to optimize the power allocation for in the case a charging process is inefficient at lower charging rates. Accepts at most one digit fraction (e.g. 8.1)
    #[cfg_attr(feature = "serde", serde(rename = "minChargingRate"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub min_charging_rate: Option<f64>,
    #[cfg_attr(feature = "serde", serde(rename = "salesTariff"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub sales_tariff: Option<SalesTariff<CustomDataType>>,
    /// Charging_ Schedule. Start_ Schedule. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569237
    /// Starting point of an absolute schedule. If absent the schedule will be relative to start of charging.
    #[cfg_attr(feature = "serde", serde(rename = "startSchedule"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub start_schedule: Option<crate::OcppTimestamp>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for ChargingSchedule<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_rate_unit)
            .map_err(|error| error.in_field("chargingRateUnit"))?;
        crate::validate::check_min_items(self.charging_schedule_period.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        crate::validate::check_max_items(self.charging_schedule_period.len(), 1024usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        for (index, item) in self.charging_schedule_period.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| {
                    error.in_index(index).in_field("chargingSchedulePeriod")
                })?;
        }
        if let Some(value) = &self.sales_tariff {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("salesTariff"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Charging_ Schedule
/// urn:x-oca:ocpp:uid:2:233256
/// Charging schedule structure defines a list of charging periods, as used in: GetCompositeSchedule.conf and ChargingProfile.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingSchedule<
    CustomDataType = crate::NoCustomData,
    const CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize = 8usize,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingRateUnit"))]
    pub charging_rate_unit: ChargingRateUnitEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedulePeriod"))]
    pub charging_schedule_period: heapless::Vec<
        ChargingSchedulePeriod<CustomDataType>,
        CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Charging_ Schedule. Duration. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569236
    /// Duration of the charging schedule in seconds. If the duration is left empty, the last period will continue indefinitely or until end of the transaction if chargingProfilePurpose = TxProfile.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub duration: Option<i64>,
    /// Identifies the ChargingSchedule.
    pub id: i64,
    /// Charging_ Schedule. Min_ Charging_ Rate. Numeric
    /// urn:x-oca:ocpp:uid:1:569239
    /// Minimum charging rate supported by the EV. The unit of measure is defined by the chargingRateUnit. This parameter is intended to be used by a local smart charging algorithm to optimize the power allocation for in the case a charging process is inefficient at lower charging rates. Accepts at most one digit fraction (e.g. 8.1)
    #[cfg_attr(feature = "serde", serde(rename = "minChargingRate"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub min_charging_rate: Option<f64>,
    #[cfg_attr(feature = "serde", serde(rename = "salesTariff"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub sales_tariff: Option<
        SalesTariff<CustomDataType, SALES_TARIFF_SALES_TARIFF_ENTRY_CAP>,
    >,
    /// Charging_ Schedule. Start_ Schedule. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569237
    /// Starting point of an absolute schedule. If absent the schedule will be relative to start of charging.
    #[cfg_attr(feature = "serde", serde(rename = "startSchedule"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub start_schedule: Option<crate::OcppTimestamp>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize,
> crate::validate::Validate
for ChargingSchedule<
    CustomDataType,
    CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP,
    SALES_TARIFF_SALES_TARIFF_ENTRY_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_rate_unit)
            .map_err(|error| error.in_field("chargingRateUnit"))?;
        crate::validate::check_min_items(self.charging_schedule_period.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        crate::validate::check_max_items(self.charging_schedule_period.len(), 1024usize)
            .map_err(|error| error.in_field("chargingSchedulePeriod"))?;
        for (index, item) in self.charging_schedule_period.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| {
                    error.in_index(index).in_field("chargingSchedulePeriod")
                })?;
        }
        if let Some(value) = &self.sales_tariff {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("salesTariff"))?;
        }
        Ok(())
    }
}
/// Message_ Info
/// urn:x-enexis:ecdm:uid:2:233264
/// Contains message details, for a message to be displayed on a Charging Station.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MessageInfo<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub display: Option<Component<CustomDataType>>,
    /// Message_ Info. End. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569257
    /// Until what date-time should this message be shown, after this date/time this message SHALL be removed.
    #[cfg_attr(feature = "serde", serde(rename = "endDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub end_date_time: Option<crate::OcppTimestamp>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// Master resource identifier, unique within an exchange context. It is defined within the OCPP context as a positive Integer value (greater or equal to zero).
    pub id: i64,
    pub message: MessageContent<CustomDataType>,
    pub priority: MessagePriorityEnum,
    /// Message_ Info. Start. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569256
    /// From what date-time should this message be shown. If omitted: directly.
    #[cfg_attr(feature = "serde", serde(rename = "startDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub start_date_time: Option<crate::OcppTimestamp>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub state: Option<MessageStateEnum>,
    /// During which transaction shall this message be shown.
    /// Message SHALL be removed by the Charging Station after transaction has
    /// ended.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction_id: Option<heapless::String<36usize>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for MessageInfo<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.display {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("display"))?;
        }
        crate::validate::Validate::validate(&self.message)
            .map_err(|error| error.in_field("message"))?;
        crate::validate::Validate::validate(&self.priority)
            .map_err(|error| error.in_field("priority"))?;
        if let Some(value) = &self.state {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("state"))?;
        }
        Ok(())
    }
}
/// AC_ Charging_ Parameters
/// urn:x-oca:ocpp:uid:2:233250
/// EV AC charging parameters.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ACChargingParameters<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// AC_ Charging_ Parameters. Energy_ Amount. Energy_ Amount
    /// urn:x-oca:ocpp:uid:1:569211
    /// Amount of energy requested (in Wh). This includes energy required for preconditioning.
    #[cfg_attr(feature = "serde", serde(rename = "energyAmount"))]
    pub energy_amount: i64,
    /// AC_ Charging_ Parameters. EV_ Max. Current
    /// urn:x-oca:ocpp:uid:1:569213
    /// Maximum current (amps) supported by the electric vehicle (per phase). Includes cable capacity.
    #[cfg_attr(feature = "serde", serde(rename = "evMaxCurrent"))]
    pub ev_max_current: i64,
    /// AC_ Charging_ Parameters. EV_ Max. Voltage
    /// urn:x-oca:ocpp:uid:1:569214
    /// Maximum voltage supported by the electric vehicle
    #[cfg_attr(feature = "serde", serde(rename = "evMaxVoltage"))]
    pub ev_max_voltage: i64,
    /// AC_ Charging_ Parameters. EV_ Min. Current
    /// urn:x-oca:ocpp:uid:1:569212
    /// Minimum current (amps) supported by the electric vehicle (per phase).
    #[cfg_attr(feature = "serde", serde(rename = "evMinCurrent"))]
    pub ev_min_current: i64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ACChargingParameters<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// DC_ Charging_ Parameters
/// urn:x-oca:ocpp:uid:2:233251
/// EV DC charging parameters
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct DCChargingParameters<CustomDataType = crate::NoCustomData> {
    /// DC_ Charging_ Parameters. Bulk_ SOC. Percentage
    /// urn:x-oca:ocpp:uid:1:569222
    /// Percentage of SoC at which the EV considers a fast charging process to end. (possible values: 0 - 100)
    #[cfg_attr(feature = "serde", serde(rename = "bulkSoC"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub bulk_so_c: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// DC_ Charging_ Parameters. Energy_ Amount. Energy_ Amount
    /// urn:x-oca:ocpp:uid:1:569217
    /// Amount of energy requested (in Wh). This inludes energy required for preconditioning.
    #[cfg_attr(feature = "serde", serde(rename = "energyAmount"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub energy_amount: Option<i64>,
    /// DC_ Charging_ Parameters. EV_ Energy_ Capacity. Numeric
    /// urn:x-oca:ocpp:uid:1:569220
    /// Capacity of the electric vehicle battery (in Wh)
    #[cfg_attr(feature = "serde", serde(rename = "evEnergyCapacity"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub ev_energy_capacity: Option<i64>,
    /// DC_ Charging_ Parameters. EV_ Max. Current
    /// urn:x-oca:ocpp:uid:1:569215
    /// Maximum current (amps) supported by the electric vehicle. Includes cable capacity.
    #[cfg_attr(feature = "serde", serde(rename = "evMaxCurrent"))]
    pub ev_max_current: i64,
    /// DC_ Charging_ Parameters. EV_ Max. Power
    /// urn:x-oca:ocpp:uid:1:569218
    /// Maximum power (in W) supported by the electric vehicle. Required for DC charging.
    #[cfg_attr(feature = "serde", serde(rename = "evMaxPower"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub ev_max_power: Option<i64>,
    /// DC_ Charging_ Parameters. EV_ Max. Voltage
    /// urn:x-oca:ocpp:uid:1:569216
    /// Maximum voltage supported by the electric vehicle
    #[cfg_attr(feature = "serde", serde(rename = "evMaxVoltage"))]
    pub ev_max_voltage: i64,
    /// DC_ Charging_ Parameters. Full_ SOC. Percentage
    /// urn:x-oca:ocpp:uid:1:569221
    /// Percentage of SoC at which the EV considers the battery fully charged. (possible values: 0 - 100)
    #[cfg_attr(feature = "serde", serde(rename = "fullSoC"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub full_so_c: Option<i64>,
    /// DC_ Charging_ Parameters. State_ Of_ Charge. Numeric
    /// urn:x-oca:ocpp:uid:1:569219
    /// Energy available in the battery (in percent of the battery capacity)
    #[cfg_attr(feature = "serde", serde(rename = "stateOfCharge"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub state_of_charge: Option<i64>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for DCChargingParameters<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = self.bulk_so_c {
            crate::validate::check_min_i64(value, 0i64)
                .map_err(|error| error.in_field("bulkSoC"))?;
            crate::validate::check_max_i64(value, 100i64)
                .map_err(|error| error.in_field("bulkSoC"))?;
        }
        if let Some(value) = self.full_so_c {
            crate::validate::check_min_i64(value, 0i64)
                .map_err(|error| error.in_field("fullSoC"))?;
            crate::validate::check_max_i64(value, 100i64)
                .map_err(|error| error.in_field("fullSoC"))?;
        }
        if let Some(value) = self.state_of_charge {
            crate::validate::check_min_i64(value, 0i64)
                .map_err(|error| error.in_field("stateOfCharge"))?;
            crate::validate::check_max_i64(value, 100i64)
                .map_err(|error| error.in_field("stateOfCharge"))?;
        }
        Ok(())
    }
}
/// Charging_ Needs. Requested. Energy_ Transfer_ Mode_ Code
/// urn:x-oca:ocpp:uid:1:569209
/// Mode of energy transfer requested by the EV.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum EnergyTransferModeEnum {
    DC,
    #[cfg_attr(feature = "serde", serde(rename = "AC_single_phase"))]
    ACsinglephase,
    #[cfg_attr(feature = "serde", serde(rename = "AC_two_phase"))]
    ACtwophase,
    #[cfg_attr(feature = "serde", serde(rename = "AC_three_phase"))]
    ACthreephase,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for EnergyTransferModeEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Needs
/// urn:x-oca:ocpp:uid:2:233249
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingNeeds<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "acChargingParameters"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub ac_charging_parameters: Option<ACChargingParameters<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "dcChargingParameters"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub dc_charging_parameters: Option<DCChargingParameters<CustomDataType>>,
    /// Charging_ Needs. Departure_ Time. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569223
    /// Estimated departure time of the EV.
    #[cfg_attr(feature = "serde", serde(rename = "departureTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub departure_time: Option<crate::OcppTimestamp>,
    #[cfg_attr(feature = "serde", serde(rename = "requestedEnergyTransfer"))]
    pub requested_energy_transfer: EnergyTransferModeEnum,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for ChargingNeeds<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.ac_charging_parameters {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("acChargingParameters"))?;
        }
        if let Some(value) = &self.dc_charging_parameters {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("dcChargingParameters"))?;
        }
        crate::validate::Validate::validate(&self.requested_energy_transfer)
            .map_err(|error| error.in_field("requestedEnergyTransfer"))?;
        Ok(())
    }
}
/// Returns whether the CSMS has been able to process the message successfully. It does not imply that the evChargingNeeds can be met with the current charging profile.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum NotifyEVChargingNeedsStatusEnum {
    Accepted,
    Rejected,
    Processing,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for NotifyEVChargingNeedsStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Specifies the event notification type of the message.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum EventNotificationEnum {
    HardWiredNotification,
    HardWiredMonitor,
    PreconfiguredMonitor,
    CustomMonitor,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for EventNotificationEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Type of monitor that triggered this event, e.g. exceeding a threshold value.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum EventTriggerEnum {
    Alerting,
    Delta,
    Periodic,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for EventTriggerEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Class to report an event notification for a component-variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct EventData<CustomDataType = crate::NoCustomData> {
    /// Actual value (_attributeType_ Actual) of the variable.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "actualValue"))]
    pub actual_value: alloc::string::String,
    /// Refers to the Id of an event that is considered to be the cause for this event.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cause: Option<i64>,
    /// _Cleared_ is set to true to report the clearing of a monitored situation, i.e. a 'return to normal'.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cleared: Option<bool>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identifies the event. This field can be referred to as a cause by other events.
    #[cfg_attr(feature = "serde", serde(rename = "eventId"))]
    pub event_id: i64,
    #[cfg_attr(feature = "serde", serde(rename = "eventNotificationType"))]
    pub event_notification_type: EventNotificationEnum,
    /// Technical (error) code as reported by component.
    #[cfg_attr(feature = "serde", serde(rename = "techCode"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub tech_code: Option<heapless::String<50usize>>,
    /// Technical detail information as reported by component.
    #[cfg_attr(feature = "serde", serde(rename = "techInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub tech_info: Option<heapless::String<500usize>>,
    /// Timestamp of the moment the report was generated.
    pub timestamp: crate::OcppTimestamp,
    /// If an event notification is linked to a specific transaction, this field can be used to specify its transactionId.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction_id: Option<heapless::String<36usize>>,
    pub trigger: EventTriggerEnum,
    pub variable: Variable<CustomDataType>,
    /// Identifies the VariableMonitoring which triggered the event.
    #[cfg_attr(feature = "serde", serde(rename = "variableMonitoringId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub variable_monitoring_id: Option<i64>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for EventData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_max_length(&self.actual_value, 2500usize)
            .map_err(|error| error.in_field("actualValue"))?;
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.event_notification_type)
            .map_err(|error| error.in_field("eventNotificationType"))?;
        crate::validate::Validate::validate(&self.trigger)
            .map_err(|error| error.in_field("trigger"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Class to report an event notification for a component-variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct EventData<
    CustomDataType = crate::NoCustomData,
    const EVENT_DATA_ACTUAL_VALUE_CAP: usize = 1024usize,
> {
    /// Actual value (_attributeType_ Actual) of the variable.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "actualValue"))]
    pub actual_value: heapless::String<EVENT_DATA_ACTUAL_VALUE_CAP>,
    /// Refers to the Id of an event that is considered to be the cause for this event.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cause: Option<i64>,
    /// _Cleared_ is set to true to report the clearing of a monitored situation, i.e. a 'return to normal'.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub cleared: Option<bool>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identifies the event. This field can be referred to as a cause by other events.
    #[cfg_attr(feature = "serde", serde(rename = "eventId"))]
    pub event_id: i64,
    #[cfg_attr(feature = "serde", serde(rename = "eventNotificationType"))]
    pub event_notification_type: EventNotificationEnum,
    /// Technical (error) code as reported by component.
    #[cfg_attr(feature = "serde", serde(rename = "techCode"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub tech_code: Option<heapless::String<50usize>>,
    /// Technical detail information as reported by component.
    #[cfg_attr(feature = "serde", serde(rename = "techInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub tech_info: Option<heapless::String<500usize>>,
    /// Timestamp of the moment the report was generated.
    pub timestamp: crate::OcppTimestamp,
    /// If an event notification is linked to a specific transaction, this field can be used to specify its transactionId.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction_id: Option<heapless::String<36usize>>,
    pub trigger: EventTriggerEnum,
    pub variable: Variable<CustomDataType>,
    /// Identifies the VariableMonitoring which triggered the event.
    #[cfg_attr(feature = "serde", serde(rename = "variableMonitoringId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub variable_monitoring_id: Option<i64>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<CustomDataType, const EVENT_DATA_ACTUAL_VALUE_CAP: usize> crate::validate::Validate
for EventData<CustomDataType, EVENT_DATA_ACTUAL_VALUE_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::check_max_length(&self.actual_value, 2500usize)
            .map_err(|error| error.in_field("actualValue"))?;
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.event_notification_type)
            .map_err(|error| error.in_field("eventNotificationType"))?;
        crate::validate::Validate::validate(&self.trigger)
            .map_err(|error| error.in_field("trigger"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// The type of this monitor, e.g. a threshold, delta or periodic monitor.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MonitorEnum {
    UpperThreshold,
    LowerThreshold,
    Delta,
    Periodic,
    PeriodicClockAligned,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MonitorEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// A monitoring setting for a variable.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VariableMonitoring<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identifies the monitor.
    pub id: i64,
    /// The severity that will be assigned to an event that is triggered by this monitor. The severity range is 0-9, with 0 as the highest and 9 as the lowest severity level.
    ///
    /// The severity levels have the following meaning: +
    /// *0-Danger* +
    /// Indicates lives are potentially in danger. Urgent attention is needed and action should be taken immediately. +
    /// *1-Hardware Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to Hardware issues. Action is required. +
    /// *2-System Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to software or minor hardware issues. Action is required. +
    /// *3-Critical* +
    /// Indicates a critical error. Action is required. +
    /// *4-Error* +
    /// Indicates a non-urgent error. Action is required. +
    /// *5-Alert* +
    /// Indicates an alert event. Default severity for any type of monitoring event.  +
    /// *6-Warning* +
    /// Indicates a warning event. Action may be required. +
    /// *7-Notice* +
    /// Indicates an unusual event. No immediate action is required. +
    /// *8-Informational* +
    /// Indicates a regular operational event. May be used for reporting, measuring throughput, etc. No action is required. +
    /// *9-Debug* +
    /// Indicates information useful to developers for debugging, not useful during operations.
    pub severity: i64,
    /// Monitor only active when a transaction is ongoing on a component relevant to this transaction.
    pub transaction: bool,
    pub r#type: MonitorEnum,
    /// Value for threshold or delta monitoring.
    /// For Periodic or PeriodicClockAligned this is the interval in seconds.
    pub value: f64,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for VariableMonitoring<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Class to hold parameters of SetVariableMonitoring request.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MonitoringData<CustomDataType = crate::NoCustomData> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "variableMonitoring"))]
    pub variable_monitoring: alloc::vec::Vec<VariableMonitoring<CustomDataType>>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for MonitoringData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        crate::validate::check_min_items(self.variable_monitoring.len(), 1usize)
            .map_err(|error| error.in_field("variableMonitoring"))?;
        for (index, item) in self.variable_monitoring.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("variableMonitoring"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Class to hold parameters of SetVariableMonitoring request.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MonitoringData<
    CustomDataType = crate::NoCustomData,
    const MONITORING_DATA_VARIABLE_MONITORING_CAP: usize = 8usize,
> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "variableMonitoring"))]
    pub variable_monitoring: heapless::Vec<
        VariableMonitoring<CustomDataType>,
        MONITORING_DATA_VARIABLE_MONITORING_CAP,
    >,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const MONITORING_DATA_VARIABLE_MONITORING_CAP: usize,
> crate::validate::Validate
for MonitoringData<CustomDataType, MONITORING_DATA_VARIABLE_MONITORING_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        crate::validate::check_min_items(self.variable_monitoring.len(), 1usize)
            .map_err(|error| error.in_field("variableMonitoring"))?;
        for (index, item) in self.variable_monitoring.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("variableMonitoring"))?;
        }
        Ok(())
    }
}
/// Defines the mutability of this attribute. Default is ReadWrite when omitted.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MutabilityEnum {
    ReadOnly,
    WriteOnly,
    ReadWrite,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MutabilityEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Attribute data of a variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VariableAttribute<CustomDataType = crate::NoCustomData> {
    /// If true, value that will never be changed by the Charging Station at runtime. Default when omitted is false.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub constant: Option<bool>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub mutability: Option<MutabilityEnum>,
    /// If true, value will be persistent across system reboots or power down. Default when omitted is false.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub persistent: Option<bool>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub r#type: Option<AttributeEnum>,
    /// Value of the attribute. May only be omitted when mutability is set to 'WriteOnly'.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub value: Option<alloc::string::String>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for VariableAttribute<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.mutability {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("mutability"))?;
        }
        if let Some(value) = &self.r#type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("type"))?;
        }
        if let Some(value) = &self.value {
            crate::validate::check_max_length(value, 2500usize)
                .map_err(|error| error.in_field("value"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Attribute data of a variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VariableAttribute<
    CustomDataType = crate::NoCustomData,
    const VARIABLE_ATTRIBUTE_VALUE_CAP: usize = 1024usize,
> {
    /// If true, value that will never be changed by the Charging Station at runtime. Default when omitted is false.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub constant: Option<bool>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub mutability: Option<MutabilityEnum>,
    /// If true, value will be persistent across system reboots or power down. Default when omitted is false.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub persistent: Option<bool>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub r#type: Option<AttributeEnum>,
    /// Value of the attribute. May only be omitted when mutability is set to 'WriteOnly'.
    ///
    /// The Configuration Variable &lt;&lt;configkey-reporting-value-size,ReportingValueSize&gt;&gt; can be used to limit GetVariableResult.attributeValue, VariableAttribute.value and EventData.actualValue. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub value: Option<heapless::String<VARIABLE_ATTRIBUTE_VALUE_CAP>>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<CustomDataType, const VARIABLE_ATTRIBUTE_VALUE_CAP: usize> crate::validate::Validate
for VariableAttribute<CustomDataType, VARIABLE_ATTRIBUTE_VALUE_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.mutability {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("mutability"))?;
        }
        if let Some(value) = &self.r#type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("type"))?;
        }
        if let Some(value) = &self.value {
            crate::validate::check_max_length(value, 2500usize)
                .map_err(|error| error.in_field("value"))?;
        }
        Ok(())
    }
}
/// Data type of this variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DataEnum {
    #[cfg_attr(feature = "serde", serde(rename = "string"))]
    String,
    #[cfg_attr(feature = "serde", serde(rename = "decimal"))]
    Decimal,
    #[cfg_attr(feature = "serde", serde(rename = "integer"))]
    Integer,
    #[cfg_attr(feature = "serde", serde(rename = "dateTime"))]
    DateTime,
    #[cfg_attr(feature = "serde", serde(rename = "boolean"))]
    Boolean,
    OptionList,
    SequenceList,
    MemberList,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for DataEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Fixed read-only parameters of a variable.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VariableCharacteristics<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "dataType"))]
    pub data_type: DataEnum,
    /// Maximum possible value of this variable. When the datatype of this Variable is String, OptionList, SequenceList or MemberList, this field defines the maximum length of the (CSV) string.
    #[cfg_attr(feature = "serde", serde(rename = "maxLimit"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub max_limit: Option<f64>,
    /// Minimum possible value of this variable.
    #[cfg_attr(feature = "serde", serde(rename = "minLimit"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub min_limit: Option<f64>,
    /// Flag indicating if this variable supports monitoring.
    #[cfg_attr(feature = "serde", serde(rename = "supportsMonitoring"))]
    pub supports_monitoring: bool,
    /// Unit of the variable. When the transmitted value has a unit, this field SHALL be included.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub unit: Option<heapless::String<16usize>>,
    /// Allowed values when variable is Option/Member/SequenceList.
    ///
    /// * OptionList: The (Actual) Variable value must be a single value from the reported (CSV) enumeration list.
    ///
    /// * MemberList: The (Actual) Variable value  may be an (unordered) (sub-)set of the reported (CSV) valid values list.
    ///
    /// * SequenceList: The (Actual) Variable value  may be an ordered (priority, etc)  (sub-)set of the reported (CSV) valid values.
    ///
    /// This is a comma separated list.
    ///
    /// The Configuration Variable &lt;&lt;configkey-configuration-value-size,ConfigurationValueSize&gt;&gt; can be used to limit SetVariableData.attributeValue and VariableCharacteristics.valueList. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "valuesList"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub values_list: Option<alloc::string::String>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate
for VariableCharacteristics<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.data_type)
            .map_err(|error| error.in_field("dataType"))?;
        if let Some(value) = &self.values_list {
            crate::validate::check_max_length(value, 1000usize)
                .map_err(|error| error.in_field("valuesList"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Fixed read-only parameters of a variable.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VariableCharacteristics<
    CustomDataType = crate::NoCustomData,
    const VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP: usize = 1000usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "dataType"))]
    pub data_type: DataEnum,
    /// Maximum possible value of this variable. When the datatype of this Variable is String, OptionList, SequenceList or MemberList, this field defines the maximum length of the (CSV) string.
    #[cfg_attr(feature = "serde", serde(rename = "maxLimit"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub max_limit: Option<f64>,
    /// Minimum possible value of this variable.
    #[cfg_attr(feature = "serde", serde(rename = "minLimit"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub min_limit: Option<f64>,
    /// Flag indicating if this variable supports monitoring.
    #[cfg_attr(feature = "serde", serde(rename = "supportsMonitoring"))]
    pub supports_monitoring: bool,
    /// Unit of the variable. When the transmitted value has a unit, this field SHALL be included.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub unit: Option<heapless::String<16usize>>,
    /// Allowed values when variable is Option/Member/SequenceList.
    ///
    /// * OptionList: The (Actual) Variable value must be a single value from the reported (CSV) enumeration list.
    ///
    /// * MemberList: The (Actual) Variable value  may be an (unordered) (sub-)set of the reported (CSV) valid values list.
    ///
    /// * SequenceList: The (Actual) Variable value  may be an ordered (priority, etc)  (sub-)set of the reported (CSV) valid values.
    ///
    /// This is a comma separated list.
    ///
    /// The Configuration Variable &lt;&lt;configkey-configuration-value-size,ConfigurationValueSize&gt;&gt; can be used to limit SetVariableData.attributeValue and VariableCharacteristics.valueList. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "valuesList"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub values_list: Option<heapless::String<VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP>>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP: usize,
> crate::validate::Validate
for VariableCharacteristics<CustomDataType, VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.data_type)
            .map_err(|error| error.in_field("dataType"))?;
        if let Some(value) = &self.values_list {
            crate::validate::check_max_length(value, 1000usize)
                .map_err(|error| error.in_field("valuesList"))?;
        }
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Class to report components, variables and variable attributes and characteristics.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ReportData<CustomDataType = crate::NoCustomData> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "variableAttribute"))]
    pub variable_attribute: heapless::Vec<VariableAttribute<CustomDataType>, 4usize>,
    #[cfg_attr(feature = "serde", serde(rename = "variableCharacteristics"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub variable_characteristics: Option<VariableCharacteristics<CustomDataType>>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for ReportData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        crate::validate::check_min_items(self.variable_attribute.len(), 1usize)
            .map_err(|error| error.in_field("variableAttribute"))?;
        for (index, item) in self.variable_attribute.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("variableAttribute"))?;
        }
        if let Some(value) = &self.variable_characteristics {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("variableCharacteristics"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Class to report components, variables and variable attributes and characteristics.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ReportData<
    CustomDataType = crate::NoCustomData,
    const VARIABLE_ATTRIBUTE_VALUE_CAP: usize = 1024usize,
    const VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP: usize = 1000usize,
> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "variableAttribute"))]
    pub variable_attribute: heapless::Vec<
        VariableAttribute<CustomDataType, VARIABLE_ATTRIBUTE_VALUE_CAP>,
        4usize,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "variableCharacteristics"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub variable_characteristics: Option<
        VariableCharacteristics<CustomDataType, VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP>,
    >,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const VARIABLE_ATTRIBUTE_VALUE_CAP: usize,
    const VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP: usize,
> crate::validate::Validate
for ReportData<
    CustomDataType,
    VARIABLE_ATTRIBUTE_VALUE_CAP,
    VARIABLE_CHARACTERISTICS_VALUES_LIST_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        crate::validate::check_min_items(self.variable_attribute.len(), 1usize)
            .map_err(|error| error.in_field("variableAttribute"))?;
        for (index, item) in self.variable_attribute.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("variableAttribute"))?;
        }
        if let Some(value) = &self.variable_characteristics {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("variableCharacteristics"))?;
        }
        Ok(())
    }
}
/// This contains the progress status of the publishfirmware
/// installation.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum PublishFirmwareStatusEnum {
    Idle,
    DownloadScheduled,
    Downloading,
    Downloaded,
    Published,
    DownloadFailed,
    DownloadPaused,
    InvalidChecksum,
    ChecksumVerified,
    PublishFailed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for PublishFirmwareStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Profile. Charging_ Profile_ Kind. Charging_ Profile_ Kind_ Code
/// urn:x-oca:ocpp:uid:1:569232
/// Indicates the kind of schedule.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingProfileKindEnum {
    Absolute,
    Recurring,
    Relative,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingProfileKindEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Charging_ Profile. Recurrency_ Kind. Recurrency_ Kind_ Code
/// urn:x-oca:ocpp:uid:1:569233
/// Indicates the start point of a recurrence.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum RecurrencyKindEnum {
    Daily,
    Weekly,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for RecurrencyKindEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Charging_ Profile
/// urn:x-oca:ocpp:uid:2:233255
/// A ChargingProfile consists of ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingProfile<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfileKind"))]
    pub charging_profile_kind: ChargingProfileKindEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfilePurpose"))]
    pub charging_profile_purpose: ChargingProfilePurposeEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedule"))]
    pub charging_schedule: heapless::Vec<ChargingSchedule<CustomDataType>, 3usize>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// Id of ChargingProfile.
    pub id: i64,
    #[cfg_attr(feature = "serde", serde(rename = "recurrencyKind"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub recurrency_kind: Option<RecurrencyKindEnum>,
    /// Charging_ Profile. Stack_ Level. Counter
    /// urn:x-oca:ocpp:uid:1:569230
    /// Value determining level in hierarchy stack of profiles. Higher values have precedence over lower values. Lowest level is 0.
    #[cfg_attr(feature = "serde", serde(rename = "stackLevel"))]
    pub stack_level: i64,
    /// SHALL only be included if ChargingProfilePurpose is set to TxProfile. The transactionId is used to match the profile to a specific transaction.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction_id: Option<heapless::String<36usize>>,
    /// Charging_ Profile. Valid_ From. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569234
    /// Point in time at which the profile starts to be valid. If absent, the profile is valid as soon as it is received by the Charging Station.
    #[cfg_attr(feature = "serde", serde(rename = "validFrom"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub valid_from: Option<crate::OcppTimestamp>,
    /// Charging_ Profile. Valid_ To. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569235
    /// Point in time at which the profile stops to be valid. If absent, the profile is valid until it is replaced by another profile.
    #[cfg_attr(feature = "serde", serde(rename = "validTo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub valid_to: Option<crate::OcppTimestamp>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for ChargingProfile<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_profile_kind)
            .map_err(|error| error.in_field("chargingProfileKind"))?;
        crate::validate::Validate::validate(&self.charging_profile_purpose)
            .map_err(|error| error.in_field("chargingProfilePurpose"))?;
        crate::validate::check_min_items(self.charging_schedule.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedule"))?;
        for (index, item) in self.charging_schedule.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("chargingSchedule"))?;
        }
        if let Some(value) = &self.recurrency_kind {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("recurrencyKind"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Charging_ Profile
/// urn:x-oca:ocpp:uid:2:233255
/// A ChargingProfile consists of ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ChargingProfile<
    CustomDataType = crate::NoCustomData,
    const CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize = 8usize,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfileKind"))]
    pub charging_profile_kind: ChargingProfileKindEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingProfilePurpose"))]
    pub charging_profile_purpose: ChargingProfilePurposeEnum,
    #[cfg_attr(feature = "serde", serde(rename = "chargingSchedule"))]
    pub charging_schedule: heapless::Vec<
        ChargingSchedule<
            CustomDataType,
            CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP,
            SALES_TARIFF_SALES_TARIFF_ENTRY_CAP,
        >,
        3usize,
    >,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Identified_ Object. MRID. Numeric_ Identifier
    /// urn:x-enexis:ecdm:uid:1:569198
    /// Id of ChargingProfile.
    pub id: i64,
    #[cfg_attr(feature = "serde", serde(rename = "recurrencyKind"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub recurrency_kind: Option<RecurrencyKindEnum>,
    /// Charging_ Profile. Stack_ Level. Counter
    /// urn:x-oca:ocpp:uid:1:569230
    /// Value determining level in hierarchy stack of profiles. Higher values have precedence over lower values. Lowest level is 0.
    #[cfg_attr(feature = "serde", serde(rename = "stackLevel"))]
    pub stack_level: i64,
    /// SHALL only be included if ChargingProfilePurpose is set to TxProfile. The transactionId is used to match the profile to a specific transaction.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction_id: Option<heapless::String<36usize>>,
    /// Charging_ Profile. Valid_ From. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569234
    /// Point in time at which the profile starts to be valid. If absent, the profile is valid as soon as it is received by the Charging Station.
    #[cfg_attr(feature = "serde", serde(rename = "validFrom"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub valid_from: Option<crate::OcppTimestamp>,
    /// Charging_ Profile. Valid_ To. Date_ Time
    /// urn:x-oca:ocpp:uid:1:569235
    /// Point in time at which the profile stops to be valid. If absent, the profile is valid until it is replaced by another profile.
    #[cfg_attr(feature = "serde", serde(rename = "validTo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub valid_to: Option<crate::OcppTimestamp>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP: usize,
    const SALES_TARIFF_SALES_TARIFF_ENTRY_CAP: usize,
> crate::validate::Validate
for ChargingProfile<
    CustomDataType,
    CHARGING_SCHEDULE_CHARGING_SCHEDULE_PERIOD_CAP,
    SALES_TARIFF_SALES_TARIFF_ENTRY_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.charging_profile_kind)
            .map_err(|error| error.in_field("chargingProfileKind"))?;
        crate::validate::Validate::validate(&self.charging_profile_purpose)
            .map_err(|error| error.in_field("chargingProfilePurpose"))?;
        crate::validate::check_min_items(self.charging_schedule.len(), 1usize)
            .map_err(|error| error.in_field("chargingSchedule"))?;
        for (index, item) in self.charging_schedule.iter().enumerate() {
            crate::validate::Validate::validate(item)
                .map_err(|error| error.in_index(index).in_field("chargingSchedule"))?;
        }
        if let Some(value) = &self.recurrency_kind {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("recurrencyKind"))?;
        }
        Ok(())
    }
}
/// Status indicating whether the Charging Station accepts the request to start a transaction.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum RequestStartStopStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for RequestStartStopStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// The updated reservation status.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ReservationUpdateStatusEnum {
    Expired,
    Removed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ReservationUpdateStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This field specifies the connector type.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ConnectorEnum {
    #[cfg_attr(feature = "serde", serde(rename = "cCCS1"))]
    CCCS1,
    #[cfg_attr(feature = "serde", serde(rename = "cCCS2"))]
    CCCS2,
    #[cfg_attr(feature = "serde", serde(rename = "cG105"))]
    CG105,
    #[cfg_attr(feature = "serde", serde(rename = "cTesla"))]
    CTesla,
    #[cfg_attr(feature = "serde", serde(rename = "cType1"))]
    CType1,
    #[cfg_attr(feature = "serde", serde(rename = "cType2"))]
    CType2,
    #[cfg_attr(feature = "serde", serde(rename = "s309-1P-16A"))]
    S3091P16A,
    #[cfg_attr(feature = "serde", serde(rename = "s309-1P-32A"))]
    S3091P32A,
    #[cfg_attr(feature = "serde", serde(rename = "s309-3P-16A"))]
    S3093P16A,
    #[cfg_attr(feature = "serde", serde(rename = "s309-3P-32A"))]
    S3093P32A,
    #[cfg_attr(feature = "serde", serde(rename = "sBS1361"))]
    SBS1361,
    #[cfg_attr(feature = "serde", serde(rename = "sCEE-7-7"))]
    SCEE77,
    #[cfg_attr(feature = "serde", serde(rename = "sType2"))]
    SType2,
    #[cfg_attr(feature = "serde", serde(rename = "sType3"))]
    SType3,
    Other1PhMax16A,
    Other1PhOver16A,
    Other3Ph,
    Pan,
    #[cfg_attr(feature = "serde", serde(rename = "wInductive"))]
    WInductive,
    #[cfg_attr(feature = "serde", serde(rename = "wResonant"))]
    WResonant,
    Undetermined,
    Unknown,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ConnectorEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates the success or failure of the reservation.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ReserveNowStatusEnum {
    Accepted,
    Faulted,
    Occupied,
    Rejected,
    Unavailable,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ReserveNowStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the type of reset that the Charging Station or EVSE should perform.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ResetEnum {
    Immediate,
    OnIdle,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ResetEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station is able to perform the reset.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ResetStatusEnum {
    Accepted,
    Rejected,
    Scheduled,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ResetStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Contains the identifier to use for authorization.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct AuthorizationData<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "idToken"))]
    pub id_token: IdToken<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "idTokenInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub id_token_info: Option<IdTokenInfo<CustomDataType>>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for AuthorizationData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.id_token)
            .map_err(|error| error.in_field("idToken"))?;
        if let Some(value) = &self.id_token_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("idTokenInfo"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Contains the identifier to use for authorization.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct AuthorizationData<
    CustomDataType = crate::NoCustomData,
    const ID_TOKEN_ADDITIONAL_INFO_CAP: usize = 8usize,
    const ID_TOKEN_INFO_EVSE_ID_CAP: usize = 8usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "idToken"))]
    pub id_token: IdToken<CustomDataType, ID_TOKEN_ADDITIONAL_INFO_CAP>,
    #[cfg_attr(feature = "serde", serde(rename = "idTokenInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub id_token_info: Option<
        IdTokenInfo<
            CustomDataType,
            ID_TOKEN_INFO_EVSE_ID_CAP,
            ID_TOKEN_ADDITIONAL_INFO_CAP,
        >,
    >,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const ID_TOKEN_ADDITIONAL_INFO_CAP: usize,
    const ID_TOKEN_INFO_EVSE_ID_CAP: usize,
> crate::validate::Validate
for AuthorizationData<
    CustomDataType,
    ID_TOKEN_ADDITIONAL_INFO_CAP,
    ID_TOKEN_INFO_EVSE_ID_CAP,
> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.id_token)
            .map_err(|error| error.in_field("idToken"))?;
        if let Some(value) = &self.id_token_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("idTokenInfo"))?;
        }
        Ok(())
    }
}
/// This contains the type of update (full or differential) of this request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UpdateEnum {
    Differential,
    Full,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for UpdateEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station has successfully received and applied the update of the Local Authorization List.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SendLocalListStatusEnum {
    Accepted,
    Failed,
    VersionMismatch,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for SendLocalListStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Returns whether the Charging Station has been able to process the message successfully. This does not guarantee the schedule will be followed to the letter. There might be other constraints the Charging Station may need to take into account.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingProfileStatusEnum {
    Accepted,
    Rejected,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingProfileStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station is able to display the message.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DisplayMessageStatusEnum {
    Accepted,
    NotSupportedMessageFormat,
    Rejected,
    NotSupportedPriority,
    NotSupportedState,
    UnknownTransaction,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for DisplayMessageStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Specify which monitoring base will be set
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MonitoringBaseEnum {
    All,
    FactoryDefault,
    HardWiredOnly,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MonitoringBaseEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// APN. APN_ Authentication. APN_ Authentication_ Code
/// urn:x-oca:ocpp:uid:1:568828
/// Authentication method.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum APNAuthenticationEnum {
    CHAP,
    NONE,
    PAP,
    AUTO,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for APNAuthenticationEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// APN
/// urn:x-oca:ocpp:uid:2:233134
/// Collection of configuration data needed to make a data-connection over a cellular network.
///
/// NOTE: When asking a GSM modem to dial in, it is possible to specify which mobile operator should be used. This can be done with the mobile country code (MCC) in combination with a mobile network code (MNC). Example: If your preferred network is Vodafone Netherlands, the MCC=204 and the MNC=04 which means the key PreferredNetwork = 20404 Some modems allows to specify a preferred network, which means, if this network is not available, a different network is used. If you specify UseOnlyPreferredNetwork and this network is not available, the modem will not dial in.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct APN<CustomDataType = crate::NoCustomData> {
    /// APN. APN. URI
    /// urn:x-oca:ocpp:uid:1:568814
    /// The Access Point Name as an URL.
    pub apn: heapless::String<512usize>,
    #[cfg_attr(feature = "serde", serde(rename = "apnAuthentication"))]
    pub apn_authentication: APNAuthenticationEnum,
    /// APN. APN. Password
    /// urn:x-oca:ocpp:uid:1:568819
    /// APN Password.
    #[cfg_attr(feature = "serde", serde(rename = "apnPassword"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub apn_password: Option<heapless::String<20usize>>,
    /// APN. APN. User_ Name
    /// urn:x-oca:ocpp:uid:1:568818
    /// APN username.
    #[cfg_attr(feature = "serde", serde(rename = "apnUserName"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub apn_user_name: Option<heapless::String<20usize>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// APN. Preferred_ Network. Mobile_ Network_ ID
    /// urn:x-oca:ocpp:uid:1:568822
    /// Preferred network, written as MCC and MNC concatenated. See note.
    #[cfg_attr(feature = "serde", serde(rename = "preferredNetwork"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub preferred_network: Option<heapless::String<6usize>>,
    /// APN. SIMPIN. PIN_ Code
    /// urn:x-oca:ocpp:uid:1:568821
    /// SIM card pin code.
    #[cfg_attr(feature = "serde", serde(rename = "simPin"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub sim_pin: Option<i64>,
    /// APN. Use_ Only_ Preferred_ Network. Indicator
    /// urn:x-oca:ocpp:uid:1:568824
    /// Default: false. Use only the preferred Network, do
    /// not dial in when not available. See Note.
    #[cfg_attr(feature = "serde", serde(rename = "useOnlyPreferredNetwork"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub use_only_preferred_network: Option<bool>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for APN<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.apn_authentication)
            .map_err(|error| error.in_field("apnAuthentication"))?;
        Ok(())
    }
}
/// Applicable Network Interface.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum OCPPInterfaceEnum {
    Wired0,
    Wired1,
    Wired2,
    Wired3,
    Wireless0,
    Wireless1,
    Wireless2,
    Wireless3,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for OCPPInterfaceEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Communication_ Function. OCPP_ Transport. OCPP_ Transport_ Code
/// urn:x-oca:ocpp:uid:1:569356
/// Defines the transport protocol (e.g. SOAP or JSON). Note: SOAP is not supported in OCPP 2.0, but is supported by other versions of OCPP.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum OCPPTransportEnum {
    JSON,
    SOAP,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for OCPPTransportEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Communication_ Function. OCPP_ Version. OCPP_ Version_ Code
/// urn:x-oca:ocpp:uid:1:569355
/// Defines the OCPP version used for this communication function.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum OCPPVersionEnum {
    OCPP12,
    OCPP15,
    OCPP16,
    OCPP20,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for OCPPVersionEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// VPN. Type. VPN_ Code
/// urn:x-oca:ocpp:uid:1:569277
/// Type of VPN
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum VPNEnum {
    IKEv2,
    IPSec,
    L2TP,
    PPTP,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for VPNEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// VPN
/// urn:x-oca:ocpp:uid:2:233268
/// VPN Configuration settings
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct VPN<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// VPN. Group. Group_ Name
    /// urn:x-oca:ocpp:uid:1:569274
    /// VPN group.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub group: Option<heapless::String<20usize>>,
    /// VPN. Key. VPN_ Key
    /// urn:x-oca:ocpp:uid:1:569276
    /// VPN shared secret.
    pub key: heapless::String<255usize>,
    /// VPN. Password. Password
    /// urn:x-oca:ocpp:uid:1:569275
    /// VPN Password.
    pub password: heapless::String<20usize>,
    /// VPN. Server. URI
    /// urn:x-oca:ocpp:uid:1:569272
    /// VPN Server Address
    pub server: heapless::String<512usize>,
    pub r#type: VPNEnum,
    /// VPN. User. User_ Name
    /// urn:x-oca:ocpp:uid:1:569273
    /// VPN User
    pub user: heapless::String<20usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for VPN<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        Ok(())
    }
}
/// Communication_ Function
/// urn:x-oca:ocpp:uid:2:233304
/// The NetworkConnectionProfile defines the functional and technical parameters of a communication link.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct NetworkConnectionProfile<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub apn: Option<APN<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Duration in seconds before a message send by the Charging Station via this network connection times-out.
    /// The best setting depends on the underlying network and response times of the CSMS.
    /// If you are looking for a some guideline: use 30 seconds as a starting point.
    #[cfg_attr(feature = "serde", serde(rename = "messageTimeout"))]
    pub message_timeout: i64,
    /// Communication_ Function. OCPP_ Central_ System_ URL. URI
    /// urn:x-oca:ocpp:uid:1:569357
    /// URL of the CSMS(s) that this Charging Station  communicates with.
    #[cfg_attr(feature = "serde", serde(rename = "ocppCsmsUrl"))]
    pub ocpp_csms_url: heapless::String<512usize>,
    #[cfg_attr(feature = "serde", serde(rename = "ocppInterface"))]
    pub ocpp_interface: OCPPInterfaceEnum,
    #[cfg_attr(feature = "serde", serde(rename = "ocppTransport"))]
    pub ocpp_transport: OCPPTransportEnum,
    #[cfg_attr(feature = "serde", serde(rename = "ocppVersion"))]
    pub ocpp_version: OCPPVersionEnum,
    /// This field specifies the security profile used when connecting to the CSMS with this NetworkConnectionProfile.
    #[cfg_attr(feature = "serde", serde(rename = "securityProfile"))]
    pub security_profile: i64,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub vpn: Option<VPN<CustomDataType>>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate
for NetworkConnectionProfile<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.apn {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("apn"))?;
        }
        crate::validate::Validate::validate(&self.ocpp_interface)
            .map_err(|error| error.in_field("ocppInterface"))?;
        crate::validate::Validate::validate(&self.ocpp_transport)
            .map_err(|error| error.in_field("ocppTransport"))?;
        crate::validate::Validate::validate(&self.ocpp_version)
            .map_err(|error| error.in_field("ocppVersion"))?;
        if let Some(value) = &self.vpn {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("vpn"))?;
        }
        Ok(())
    }
}
/// Result of operation.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SetNetworkProfileStatusEnum {
    Accepted,
    Rejected,
    Failed,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for SetNetworkProfileStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Class to hold parameters of SetVariableMonitoring request.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetMonitoringData<CustomDataType = crate::NoCustomData> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// An id SHALL only be given to replace an existing monitor. The Charging Station handles the generation of id's for new monitors.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub id: Option<i64>,
    /// The severity that will be assigned to an event that is triggered by this monitor. The severity range is 0-9, with 0 as the highest and 9 as the lowest severity level.
    ///
    /// The severity levels have the following meaning: +
    /// *0-Danger* +
    /// Indicates lives are potentially in danger. Urgent attention is needed and action should be taken immediately. +
    /// *1-Hardware Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to Hardware issues. Action is required. +
    /// *2-System Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to software or minor hardware issues. Action is required. +
    /// *3-Critical* +
    /// Indicates a critical error. Action is required. +
    /// *4-Error* +
    /// Indicates a non-urgent error. Action is required. +
    /// *5-Alert* +
    /// Indicates an alert event. Default severity for any type of monitoring event.  +
    /// *6-Warning* +
    /// Indicates a warning event. Action may be required. +
    /// *7-Notice* +
    /// Indicates an unusual event. No immediate action is required. +
    /// *8-Informational* +
    /// Indicates a regular operational event. May be used for reporting, measuring throughput, etc. No action is required. +
    /// *9-Debug* +
    /// Indicates information useful to developers for debugging, not useful during operations.
    pub severity: i64,
    /// Monitor only active when a transaction is ongoing on a component relevant to this transaction. Default = false.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub transaction: Option<bool>,
    pub r#type: MonitorEnum,
    /// Value for threshold or delta monitoring.
    /// For Periodic or PeriodicClockAligned this is the interval in seconds.
    pub value: f64,
    pub variable: Variable<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for SetMonitoringData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// Status is OK if a value could be returned. Otherwise this will indicate the reason why a value could not be returned.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SetMonitoringStatusEnum {
    Accepted,
    UnknownComponent,
    UnknownVariable,
    UnsupportedMonitorType,
    Rejected,
    Duplicate,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for SetMonitoringStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Class to hold result of SetVariableMonitoring request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetMonitoringResult<CustomDataType = crate::NoCustomData> {
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Id given to the VariableMonitor by the Charging Station. The Id is only returned when status is accepted. Installed VariableMonitors should have unique id's but the id's of removed Installed monitors should have unique id's but the id's of removed monitors MAY be reused.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub id: Option<i64>,
    /// The severity that will be assigned to an event that is triggered by this monitor. The severity range is 0-9, with 0 as the highest and 9 as the lowest severity level.
    ///
    /// The severity levels have the following meaning: +
    /// *0-Danger* +
    /// Indicates lives are potentially in danger. Urgent attention is needed and action should be taken immediately. +
    /// *1-Hardware Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to Hardware issues. Action is required. +
    /// *2-System Failure* +
    /// Indicates that the Charging Station is unable to continue regular operations due to software or minor hardware issues. Action is required. +
    /// *3-Critical* +
    /// Indicates a critical error. Action is required. +
    /// *4-Error* +
    /// Indicates a non-urgent error. Action is required. +
    /// *5-Alert* +
    /// Indicates an alert event. Default severity for any type of monitoring event.  +
    /// *6-Warning* +
    /// Indicates a warning event. Action may be required. +
    /// *7-Notice* +
    /// Indicates an unusual event. No immediate action is required. +
    /// *8-Informational* +
    /// Indicates a regular operational event. May be used for reporting, measuring throughput, etc. No action is required. +
    /// *9-Debug* +
    /// Indicates information useful to developers for debugging, not useful during operations.
    pub severity: i64,
    pub status: SetMonitoringStatusEnum,
    #[cfg_attr(feature = "serde", serde(rename = "statusInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub status_info: Option<StatusInfo<CustomDataType>>,
    pub r#type: MonitorEnum,
    pub variable: Variable<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for SetMonitoringResult<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.status)
            .map_err(|error| error.in_field("status"))?;
        if let Some(value) = &self.status_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("statusInfo"))?;
        }
        crate::validate::Validate::validate(&self.r#type)
            .map_err(|error| error.in_field("type"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
#[cfg(feature = "alloc")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetVariableData<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    /// Value to be assigned to attribute of variable.
    ///
    /// The Configuration Variable &lt;&lt;configkey-configuration-value-size,ConfigurationValueSize&gt;&gt; can be used to limit SetVariableData.attributeValue and VariableCharacteristics.valueList. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "attributeValue"))]
    pub attribute_value: alloc::string::String,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for SetVariableData<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        crate::validate::check_max_length(&self.attribute_value, 1000usize)
            .map_err(|error| error.in_field("attributeValue"))?;
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetVariableData<
    CustomDataType = crate::NoCustomData,
    const SET_VARIABLE_DATA_ATTRIBUTE_VALUE_CAP: usize = 1000usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    /// Value to be assigned to attribute of variable.
    ///
    /// The Configuration Variable &lt;&lt;configkey-configuration-value-size,ConfigurationValueSize&gt;&gt; can be used to limit SetVariableData.attributeValue and VariableCharacteristics.valueList. The max size of these values will always remain equal.
    #[cfg_attr(feature = "serde", serde(rename = "attributeValue"))]
    pub attribute_value: heapless::String<SET_VARIABLE_DATA_ATTRIBUTE_VALUE_CAP>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const SET_VARIABLE_DATA_ATTRIBUTE_VALUE_CAP: usize,
> crate::validate::Validate
for SetVariableData<CustomDataType, SET_VARIABLE_DATA_ATTRIBUTE_VALUE_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        crate::validate::check_max_length(&self.attribute_value, 1000usize)
            .map_err(|error| error.in_field("attributeValue"))?;
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// Result status of setting the variable.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SetVariableStatusEnum {
    Accepted,
    Rejected,
    UnknownComponent,
    UnknownVariable,
    NotSupportedAttributeType,
    RebootRequired,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for SetVariableStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetVariableResult<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatus"))]
    pub attribute_status: SetVariableStatusEnum,
    #[cfg_attr(feature = "serde", serde(rename = "attributeStatusInfo"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_status_info: Option<StatusInfo<CustomDataType>>,
    #[cfg_attr(feature = "serde", serde(rename = "attributeType"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub attribute_type: Option<AttributeEnum>,
    pub component: Component<CustomDataType>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    pub variable: Variable<CustomDataType>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for SetVariableResult<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        crate::validate::Validate::validate(&self.attribute_status)
            .map_err(|error| error.in_field("attributeStatus"))?;
        if let Some(value) = &self.attribute_status_info {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeStatusInfo"))?;
        }
        if let Some(value) = &self.attribute_type {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("attributeType"))?;
        }
        crate::validate::Validate::validate(&self.component)
            .map_err(|error| error.in_field("component"))?;
        crate::validate::Validate::validate(&self.variable)
            .map_err(|error| error.in_field("variable"))?;
        Ok(())
    }
}
/// This contains the current status of the Connector.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ConnectorStatusEnum {
    Available,
    Occupied,
    Reserved,
    Unavailable,
    Faulted,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ConnectorStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This contains the type of this event.
/// The first TransactionEvent of a transaction SHALL contain: "Started" The last TransactionEvent of a transaction SHALL contain: "Ended" All others SHALL contain: "Updated"
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum TransactionEventEnum {
    Ended,
    Started,
    Updated,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for TransactionEventEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Transaction. State. Transaction_ State_ Code
/// urn:x-oca:ocpp:uid:1:569419
/// Current charging state, is required when state
/// has changed.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ChargingStateEnum {
    Charging,
    EVConnected,
    SuspendedEV,
    SuspendedEVSE,
    Idle,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ChargingStateEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Transaction. Stopped_ Reason. EOT_ Reason_ Code
/// urn:x-oca:ocpp:uid:1:569413
/// This contains the reason why the transaction was stopped. MAY only be omitted when Reason is "Local".
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ReasonEnum {
    DeAuthorized,
    EmergencyStop,
    EnergyLimitReached,
    EVDisconnected,
    GroundFault,
    ImmediateReset,
    Local,
    LocalOutOfCredit,
    MasterPass,
    Other,
    OvercurrentFault,
    PowerLoss,
    PowerQuality,
    Reboot,
    Remote,
    SOCLimitReached,
    StoppedByEV,
    TimeLimitReached,
    Timeout,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for ReasonEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Transaction
/// urn:x-oca:ocpp:uid:2:233318
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Transaction<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "chargingState"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub charging_state: Option<ChargingStateEnum>,
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// The ID given to remote start request (&lt;&lt;requeststarttransactionrequest, RequestStartTransactionRequest&gt;&gt;. This enables to CSMS to match the started transaction to the given start request.
    #[cfg_attr(feature = "serde", serde(rename = "remoteStartId"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub remote_start_id: Option<i64>,
    #[cfg_attr(feature = "serde", serde(rename = "stoppedReason"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub stopped_reason: Option<ReasonEnum>,
    /// Transaction. Time_ Spent_ Charging. Elapsed_ Time
    /// urn:x-oca:ocpp:uid:1:569415
    /// Contains the total time that energy flowed from EVSE to EV during the transaction (in seconds). Note that timeSpentCharging is smaller or equal to the duration of the transaction.
    #[cfg_attr(feature = "serde", serde(rename = "timeSpentCharging"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub time_spent_charging: Option<i64>,
    /// This contains the Id of the transaction.
    #[cfg_attr(feature = "serde", serde(rename = "transactionId"))]
    pub transaction_id: heapless::String<36usize>,
}
#[cfg(feature = "validate")]
impl<CustomDataType> crate::validate::Validate for Transaction<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.charging_state {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("chargingState"))?;
        }
        if let Some(value) = &self.stopped_reason {
            crate::validate::Validate::validate(value)
                .map_err(|error| error.in_field("stoppedReason"))?;
        }
        Ok(())
    }
}
/// Reason the Charging Station sends this message to the CSMS
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum TriggerReasonEnum {
    Authorized,
    CablePluggedIn,
    ChargingRateChanged,
    ChargingStateChanged,
    Deauthorized,
    EnergyLimitReached,
    EVCommunicationLost,
    EVConnectTimeout,
    MeterValueClock,
    MeterValuePeriodic,
    TimeLimitReached,
    Trigger,
    UnlockCommand,
    StopAuthorized,
    EVDeparted,
    EVDetected,
    RemoteStop,
    RemoteStart,
    AbnormalCondition,
    SignedDataReceived,
    ResetCommand,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for TriggerReasonEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Type of message to be triggered.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum MessageTriggerEnum {
    BootNotification,
    LogStatusNotification,
    FirmwareStatusNotification,
    Heartbeat,
    MeterValues,
    SignChargingStationCertificate,
    SignV2GCertificate,
    StatusNotification,
    TransactionEvent,
    SignCombinedCertificate,
    PublishFirmwareStatusNotification,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for MessageTriggerEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Indicates whether the Charging Station will send the requested notification or not.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum TriggerMessageStatusEnum {
    Accepted,
    Rejected,
    NotImplemented,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for TriggerMessageStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// This indicates whether the Charging Station has unlocked the connector.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UnlockStatusEnum {
    Unlocked,
    UnlockFailed,
    OngoingAuthorizedTransaction,
    UnknownConnector,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for UnlockStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
/// Indicates whether the Local Controller succeeded in unpublishing the firmware.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UnpublishFirmwareStatusEnum {
    DownloadOngoing,
    NoFirmware,
    Unpublished,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for UnpublishFirmwareStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}
#[cfg(feature = "alloc")]
/// Firmware
/// urn:x-enexis:ecdm:uid:2:233291
/// Represents a copy of the firmware that can be loaded/updated on the Charging Station.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Firmware<CustomDataType = crate::NoCustomData> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Firmware. Install. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569462
    /// Date and time at which the firmware shall be installed.
    #[cfg_attr(feature = "serde", serde(rename = "installDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub install_date_time: Option<crate::OcppTimestamp>,
    /// Firmware. Location. URI
    /// urn:x-enexis:ecdm:uid:1:569460
    /// URI defining the origin of the firmware.
    pub location: heapless::String<512usize>,
    /// Firmware. Retrieve. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569461
    /// Date and time at which the firmware shall be retrieved.
    #[cfg_attr(feature = "serde", serde(rename = "retrieveDateTime"))]
    pub retrieve_date_time: crate::OcppTimestamp,
    /// Firmware. Signature. Signature
    /// urn:x-enexis:ecdm:uid:1:569464
    /// Base64 encoded firmware signature.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signature: Option<alloc::string::String>,
    /// Certificate with which the firmware was signed.
    /// PEM encoded X.509 certificate.
    #[cfg_attr(feature = "serde", serde(rename = "signingCertificate"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signing_certificate: Option<alloc::string::String>,
}
#[cfg(all(feature = "validate", feature = "alloc"))]
impl<CustomDataType> crate::validate::Validate for Firmware<CustomDataType> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.signature {
            crate::validate::check_max_length(value, 800usize)
                .map_err(|error| error.in_field("signature"))?;
        }
        if let Some(value) = &self.signing_certificate {
            crate::validate::check_max_length(value, 5500usize)
                .map_err(|error| error.in_field("signingCertificate"))?;
        }
        Ok(())
    }
}
#[cfg(not(feature = "alloc"))]
/// Firmware
/// urn:x-enexis:ecdm:uid:2:233291
/// Represents a copy of the firmware that can be loaded/updated on the Charging Station.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Firmware<
    CustomDataType = crate::NoCustomData,
    const FIRMWARE_SIGNATURE_CAP: usize = 800usize,
    const FIRMWARE_SIGNING_CERTIFICATE_CAP: usize = 1024usize,
> {
    #[cfg_attr(feature = "serde", serde(rename = "customData"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub custom_data: Option<CustomDataType>,
    /// Firmware. Install. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569462
    /// Date and time at which the firmware shall be installed.
    #[cfg_attr(feature = "serde", serde(rename = "installDateTime"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub install_date_time: Option<crate::OcppTimestamp>,
    /// Firmware. Location. URI
    /// urn:x-enexis:ecdm:uid:1:569460
    /// URI defining the origin of the firmware.
    pub location: heapless::String<512usize>,
    /// Firmware. Retrieve. Date_ Time
    /// urn:x-enexis:ecdm:uid:1:569461
    /// Date and time at which the firmware shall be retrieved.
    #[cfg_attr(feature = "serde", serde(rename = "retrieveDateTime"))]
    pub retrieve_date_time: crate::OcppTimestamp,
    /// Firmware. Signature. Signature
    /// urn:x-enexis:ecdm:uid:1:569464
    /// Base64 encoded firmware signature.
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signature: Option<heapless::String<FIRMWARE_SIGNATURE_CAP>>,
    /// Certificate with which the firmware was signed.
    /// PEM encoded X.509 certificate.
    #[cfg_attr(feature = "serde", serde(rename = "signingCertificate"))]
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    pub signing_certificate: Option<heapless::String<FIRMWARE_SIGNING_CERTIFICATE_CAP>>,
}
#[cfg(all(feature = "validate", not(feature = "alloc")))]
impl<
    CustomDataType,
    const FIRMWARE_SIGNATURE_CAP: usize,
    const FIRMWARE_SIGNING_CERTIFICATE_CAP: usize,
> crate::validate::Validate
for Firmware<CustomDataType, FIRMWARE_SIGNATURE_CAP, FIRMWARE_SIGNING_CERTIFICATE_CAP> {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        if let Some(value) = &self.signature {
            crate::validate::check_max_length(value, 800usize)
                .map_err(|error| error.in_field("signature"))?;
        }
        if let Some(value) = &self.signing_certificate {
            crate::validate::check_max_length(value, 5500usize)
                .map_err(|error| error.in_field("signingCertificate"))?;
        }
        Ok(())
    }
}
/// This field indicates whether the Charging Station was able to accept the request.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UpdateFirmwareStatusEnum {
    Accepted,
    Rejected,
    AcceptedCanceled,
    InvalidCertificate,
    RevokedCertificate,
}
#[cfg(feature = "validate")]
impl crate::validate::Validate for UpdateFirmwareStatusEnum {
    fn validate(&self) -> Result<(), crate::validate::ValidationError> {
        Ok(())
    }
}