hrobot 7.0.0

Unofficial Hetzner Robot API client
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
use std::{collections::HashMap, fmt::Display, net::IpAddr};

use bytesize::ByteSize;
use rust_decimal::Decimal;
use serde::{Deserialize, Serialize};
use time::{OffsetDateTime, PrimitiveDateTime};
use time_tz::PrimitiveDateTimeExt;

use crate::{api::server::ServerId, urlencode::UrlEncode};

/// Describes a product available for purchase.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Product {
    /// Unique identifier for this product type.
    pub id: ProductId,

    /// Human-readable name for this product.
    pub name: String,

    /// Human-readable list of features for this product.
    pub description: Vec<String>,

    /// Monthly traffic limitation if any, e.g. `5 TB`.
    #[serde(rename = "traffic", deserialize_with = "crate::conversion::traffic")]
    pub traffic_limit: Option<ByteSize>,

    /// Available distributions for this product.
    #[serde(rename = "dist")]
    pub distributions: Vec<String>,

    /// Available languages for this product.
    #[serde(rename = "lang")]
    pub languages: Vec<String>,

    /// Locations where this product is available.
    #[serde(default, rename = "location")]
    pub locations: Vec<Location>,

    /// Prices for this product in each location
    #[serde(with = "location_prices")]
    pub prices: HashMap<Location, LocationPrice>,

    /// Addons which can be purchased for this product.
    pub orderable_addons: Vec<Addon>,
}

/// Describes a product purchase, as listed in a [`ProductTransaction`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PurchasedProduct {
    /// Unique identifier for this product type.
    pub id: ProductId,

    /// Human-readable name for this product.
    pub name: String,

    /// Human-readable list of features for this product.
    pub description: Vec<String>,

    /// Monthly traffic limitation if any, e.g. `5 TB`.
    #[serde(rename = "traffic", deserialize_with = "crate::conversion::traffic")]
    pub traffic_limit: Option<ByteSize>,

    /// Distribution selected for the purchased product.
    #[serde(rename = "dist")]
    pub distribution: String,

    /// Language selected for the product.
    #[serde(rename = "lang")]
    pub language: String,

    /// Location of the purchased product.
    #[serde(rename = "location")]
    pub location: Option<Location>,
}

/// Describes a purchased market (auction) product, as described in a [`MarketTransaction`]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PurchasedMarketProduct {
    /// Unique identifier for this product type.
    pub id: MarketProductId,

    /// Human-readable name for this product.
    pub name: String,

    /// Human-readable list of features for this product.
    pub description: Vec<String>,

    /// Monthly traffic limitation if any, e.g. `5 TB`.
    #[serde(rename = "traffic", deserialize_with = "crate::conversion::traffic")]
    pub traffic_limit: Option<ByteSize>,

    /// Distribution selected for the purchased product.
    #[serde(rename = "dist")]
    pub distribution: String,

    /// Language selected for the product.
    #[serde(rename = "lang")]
    pub language: String,

    /// Location of the purchased product.
    #[serde(rename = "location")]
    pub location: Option<Location>,

    /// Model name of the CPU
    pub cpu: String,

    /// CPU benchmark score.
    pub cpu_benchmark: u32,

    /// Total amount of memory installed in the server.
    #[serde(deserialize_with = "crate::conversion::gb")]
    pub memory_size: ByteSize,

    /// Primary hard drive capacity.
    ///
    /// Note that this only covers the capacity of the primary
    /// hard drive type, not the total capacity across all drives.
    ///
    /// In a server with the following configuration for example:
    /// * 6x SSD U.2 NVMe 3,84 TB Datacenter
    /// * 2x SSD SATA 3,84 TB Datacenter
    ///
    /// The HDD size will be 3.84TB, and [`MarketProduct::primary_hdd_count`] will be 6, not 8.
    #[serde(rename = "hdd_size", deserialize_with = "crate::conversion::gb")]
    pub primary_hdd_size: ByteSize,

    /// Human-readable summary of installed hardware/features, such as
    /// hard drive listing, ECC, INIC, etc.
    #[serde(rename = "hdd_text")]
    pub features: String,

    /// Primary hard drive count.
    ///
    /// Note that this only covers the installed count of the primary
    /// hard drive type, not the total number of drives.
    ///
    /// In a server with the following configuration for example:
    /// * 6x SSD U.2 NVMe 3,84 TB Datacenter
    /// * 2x SSD SATA 3,84 TB Datacenter
    ///
    /// The HDD size will be 3.84TB, and [`MarketProduct::primary_hdd_count`] will be 6, not 8.
    #[serde(rename = "hdd_count")]
    pub primary_hdd_count: u8,
}

mod location_prices {
    use super::*;
    use serde::{Deserializer, Serializer};

    pub fn deserialize<'de, D: Deserializer<'de>>(
        deserializer: D,
    ) -> Result<HashMap<Location, LocationPrice>, D::Error> {
        let prices = Vec::<SingleLocationPrice>::deserialize(deserializer)?;

        Ok(prices
            .into_iter()
            .map(
                |SingleLocationPrice {
                     location,
                     recurring: monthly,
                     setup,
                 }| {
                    (
                        location,
                        LocationPrice {
                            recurring: monthly,
                            setup,
                        },
                    )
                },
            )
            .collect())
    }

    pub fn serialize<S>(
        prices: &HashMap<Location, LocationPrice>,
        serializer: S,
    ) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        let prices: Vec<_> = prices
            .iter()
            .map(|(location, price)| SingleLocationPrice {
                location: location.clone(),
                recurring: price.recurring.clone(),
                setup: price.setup.clone(),
            })
            .collect();

        prices.serialize(serializer)
    }
}

/// Price information for a single location.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct SingleLocationPrice {
    /// Location this price applies to.
    pub location: Location,
    /// Monthly price.
    #[serde(rename = "price")]
    pub recurring: RecurringPrice,
    /// One-time setup fee.
    #[serde(rename = "price_setup")]
    pub setup: SetupPrice,
}

/// Price (both setup and recurring) for a single location.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LocationPrice {
    /// Monthly price in euros.
    pub recurring: RecurringPrice,
    /// One-time setup price in euros.
    pub setup: SetupPrice,
}

/// A recurring price point, both excluding and including VAT.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct RecurringPrice {
    /// Monthly price excluding VAT.
    pub net: Decimal,
    /// Monthly price including VAT.
    pub gross: Decimal,
    /// Hourly price excluding VAT.
    pub hourly_net: Decimal,
    /// Hourly price including VAT.
    pub hourly_gross: Decimal,
}

/// A one-time setup price point, both excluding and including VAT.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct SetupPrice {
    /// Monthly price excluding VAT.
    pub net: Decimal,
    /// Monthly price including VAT.
    pub gross: Decimal,
}

/// Describes an addon which can be purchased.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Addon {
    /// Unique identifier for this addon.
    pub id: AddonId,

    /// Human-readable name for the addon.
    pub name: String,

    /// Location where this addon is available, or `None` is everywhere.
    pub location: Option<Location>,

    /// Minimum number available.
    pub min: u32,

    /// Maximum number available.
    pub max: u32,

    /// Prices for this addon in each location.
    #[serde(with = "location_prices")]
    pub prices: HashMap<Location, LocationPrice>,
}

/// Describes an addon available for purchase for a specific server.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AvailableAddon {
    /// Unique ID for this addon.
    pub id: AddonId,

    /// Human-readable name for the addon.
    pub name: String,

    /// Type of addon.
    pub r#type: String,

    /// Price for this addon in the target server's location.
    pub price: SingleLocationPrice,
}

/// Location, e.g. "FSN1".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Location(pub String);

impl From<String> for Location {
    fn from(value: String) -> Self {
        Location(value)
    }
}

impl From<&str> for Location {
    fn from(value: &str) -> Self {
        Location(value.to_string())
    }
}

impl From<Location> for String {
    fn from(value: Location) -> Self {
        value.0
    }
}

impl Display for Location {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for Location {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Datacenter within a Location, e.g. "FSN1-DC1".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Datacenter(pub String);

impl From<String> for Datacenter {
    fn from(value: String) -> Self {
        Datacenter(value)
    }
}

impl From<&str> for Datacenter {
    fn from(value: &str) -> Self {
        Datacenter(value.to_string())
    }
}

impl From<Datacenter> for String {
    fn from(value: Datacenter) -> Self {
        value.0
    }
}

impl From<Datacenter> for Location {
    fn from(value: Datacenter) -> Location {
        Location(value.0.split_once('-').unwrap().0.to_string())
    }
}

impl Display for Datacenter {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for Datacenter {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Product ID, e.g. "EX44".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ProductId(pub String);

impl From<String> for ProductId {
    fn from(value: String) -> Self {
        ProductId(value)
    }
}

impl From<&str> for ProductId {
    fn from(value: &str) -> Self {
        ProductId(value.to_string())
    }
}

impl From<ProductId> for String {
    fn from(value: ProductId) -> Self {
        value.0
    }
}

impl Display for ProductId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for ProductId {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Describes the purchase of a single standard hetzner product.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProductTransaction {
    /// Unique transaction ID.
    pub id: TransactionId,

    /// Timestamp for the purchase.
    #[serde(with = "time::serde::rfc3339")]
    pub date: OffsetDateTime,

    /// Status of the transaction.
    pub status: TransactionStatus,

    /// Server ID of the purchased product.
    #[serde(rename = "server_number")]
    pub server_id: Option<ServerId>,

    /// Keys authorized to access the rescue system via SSH.
    #[serde(
        rename = "authorized_key",
        deserialize_with = "crate::api::wrapper::deserialize_inner_vec"
    )]
    pub authorized_keys: Vec<InitialProductSshKey>,

    /// Host keys associated with the product.
    #[serde(
        rename = "host_key",
        deserialize_with = "crate::api::wrapper::deserialize_inner_vec"
    )]
    pub host_keys: Vec<HostKey>,

    /// Optional comment associated with the purchase.
    pub comment: Option<String>,

    /// Summary of the purchased product configuration.
    pub product: PurchasedProduct,

    /// Addons purchased for this product.
    pub addons: Vec<String>,
}

/// Status of the transaction.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum TransactionStatus {
    /// Transaction completed.
    #[serde(rename = "ready")]
    Ready,

    /// Transaction is still getting processed.
    #[serde(rename = "in process")]
    InProcess,

    /// Transaction has been cancelled.
    #[serde(rename = "cancelled")]
    Cancelled,
}

/// Transaction ID, e.g. "B20150121-344957-251478".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TransactionId(pub String);

impl From<String> for TransactionId {
    fn from(value: String) -> Self {
        TransactionId(value)
    }
}

impl From<&str> for TransactionId {
    fn from(value: &str) -> Self {
        TransactionId(value.to_string())
    }
}

impl From<TransactionId> for String {
    fn from(value: TransactionId) -> Self {
        value.0
    }
}

impl Display for TransactionId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for TransactionId {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Describes the purchase of a single Hetzner market (auction) server.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MarketTransaction {
    /// Unique transaction ID.
    pub id: MarketTransactionId,

    /// Timestamp for the purchase.
    #[serde(with = "time::serde::rfc3339")]
    pub date: OffsetDateTime,

    /// Status of the transaction.
    pub status: TransactionStatus,

    /// Server ID of the purchased server.
    #[serde(rename = "server_number")]
    pub server_id: Option<ServerId>,

    /// Keys authorized to access the rescue system via SSH.
    #[serde(
        rename = "authorized_key",
        deserialize_with = "crate::api::wrapper::deserialize_inner_vec"
    )]
    pub authorized_keys: Vec<InitialProductSshKey>,

    /// Host keys associated with the product.
    #[serde(
        rename = "host_key",
        deserialize_with = "crate::api::wrapper::deserialize_inner_vec"
    )]
    pub host_keys: Vec<HostKey>,

    /// Optional comment associated with the purchase.
    pub comment: Option<String>,

    /// Summary of the purchased product configuration.
    pub product: PurchasedMarketProduct,
}

/// Market Transaction ID, e.g. "B20150121-344957-251478".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct MarketTransactionId(pub String);

impl From<String> for MarketTransactionId {
    fn from(value: String) -> Self {
        MarketTransactionId(value)
    }
}

impl From<&str> for MarketTransactionId {
    fn from(value: &str) -> Self {
        MarketTransactionId(value.to_string())
    }
}

impl From<MarketTransactionId> for String {
    fn from(value: MarketTransactionId) -> Self {
        value.0
    }
}

impl Display for MarketTransactionId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for MarketTransactionId {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Addon Transaction ID, e.g. "B20150121-344957-251478".
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct AddonTransactionId(pub String);

impl From<String> for AddonTransactionId {
    fn from(value: String) -> Self {
        AddonTransactionId(value)
    }
}

impl From<&str> for AddonTransactionId {
    fn from(value: &str) -> Self {
        AddonTransactionId(value.to_string())
    }
}

impl From<AddonTransactionId> for String {
    fn from(value: AddonTransactionId) -> Self {
        value.0
    }
}

impl Display for AddonTransactionId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for AddonTransactionId {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// Describes the purchase of a single addon.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AddonTransaction {
    /// Unique transacton ID.
    pub id: AddonTransactionId,

    /// Timestamp for the purchase.
    #[serde(with = "time::serde::rfc3339")]
    pub date: OffsetDateTime,

    /// Status of the transaction.
    pub status: TransactionStatus,

    /// Server ID which the purchased addon applies to.
    #[serde(rename = "server_number")]
    pub server_id: ServerId,

    /// Summary of the purchased addon.
    pub product: PurchasedAddon,

    /// Resources associated with this addon purchase.
    pub resources: Vec<Resource>,
}

/// Resource associated with an addon purchase.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Resource {
    /// Indicates the type of the resource. e.g. `subnet`
    pub r#type: String,
    /// The ID of the resource. e.g. `10.0.0.0`
    pub id: String,
}

/// Describes a purchased addon as it appears in an [`AddonTransaction`]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PurchasedAddon {
    /// Unique identifier for this product type.
    pub id: AddonId,

    /// Human-readable name for this product.
    pub name: String,

    /// Price the addon was purchased for.
    pub price: SingleLocationPrice,
}

/// Unique addon ID.
///
/// Uniquely identifies an addon.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct AddonId(pub String);

impl From<String> for AddonId {
    fn from(value: String) -> Self {
        AddonId(value)
    }
}

impl From<&str> for AddonId {
    fn from(value: &str) -> Self {
        AddonId(value.to_string())
    }
}

impl From<AddonId> for String {
    fn from(value: AddonId) -> Self {
        value.0
    }
}

impl Display for AddonId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for AddonId {
    fn eq(&self, other: &str) -> bool {
        self.0.eq(other)
    }
}

/// SSH Public Key provided as an authorized key when purchasing a server.
///
/// This is just key metadata, it does not contain the key itself. To retrieve the key, see [`AsyncRobot::get_ssh_key`](crate::AsyncRobot::get_ssh_key).
///
/// Similar to the [`SshKeyReference`](crate::api::keys::SshKeyReference), but does not return the time at which the key was created.
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct InitialProductSshKey {
    /// Unique name for the key.
    pub name: String,

    /// Fingerprint of the public key.
    pub fingerprint: String,

    /// Key algorithm (ED25519, RSA)
    #[serde(rename = "type")]
    pub algorithm: String,

    /// Key bit size.
    #[serde(rename = "size")]
    pub bits: u16,
}

/// SSH Host Key
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct HostKey {
    /// Fingerprint of the public key.
    pub fingerprint: String,

    /// Key algorithm (ED25519, RSA)
    #[serde(rename = "type")]
    pub algorithm: String,

    /// Key bit size.
    #[serde(rename = "size")]
    pub bits: u16,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
struct InternalMarketProduct {
    pub id: MarketProductId,
    pub name: String,
    pub description: Vec<String>,
    #[serde(rename = "traffic", deserialize_with = "crate::conversion::traffic")]
    pub traffic_limit: Option<ByteSize>,
    #[serde(rename = "dist")]
    pub distributions: Vec<String>,
    #[serde(rename = "lang")]
    pub languages: Vec<String>,
    pub datacenter: Option<String>,
    pub cpu: String,
    pub cpu_benchmark: u32,
    #[serde(deserialize_with = "crate::conversion::gb")]
    pub memory_size: ByteSize,
    #[serde(deserialize_with = "crate::conversion::gb")]
    pub hdd_size: ByteSize,
    pub hdd_text: String,
    pub hdd_count: u8,
    pub price: Decimal,
    pub price_vat: Decimal,
    pub price_setup: Decimal,
    pub price_hourly: Decimal,
    pub price_hourly_vat: Decimal,
    pub price_setup_vat: Decimal,
    pub fixed_price: bool,
    pub next_reduce: i64,
    pub next_reduce_date: String,
    pub orderable_addons: Vec<Addon>,
}

/// Describes a Hetzner market (auction) product.
#[derive(Debug, Clone, Deserialize)]
#[serde(from = "InternalMarketProduct")]
pub struct MarketProduct {
    /// Unique identifier for this market product.
    pub id: MarketProductId,

    /// Human-readable name for this product.
    pub name: String,

    /// Human-readable list of features for this product.
    pub description: Vec<String>,

    /// Monthly traffic limitation if any, e.g. `5 TB`.
    pub traffic_limit: Option<ByteSize>,

    /// Distribution selected for the purchased product.
    pub distributions: Vec<String>,

    /// Language selected for the product.
    pub languages: Vec<String>,

    /// Datacenter of the purchased product.
    pub datacenter: Option<String>,

    /// Model name of the CPU
    pub cpu: String,

    /// CPU benchmark score.
    pub cpu_benchmark: u32,

    /// Total amount of memory installed in the server.
    pub memory_size: ByteSize,

    /// Primary hard drive capacity.
    ///
    /// Note that this only covers the capacity of the primary
    /// hard drive type, not the total capacity across all drives.
    ///
    /// In a server with the following configuration for example:
    /// * 6x SSD U.2 NVMe 3,84 TB Datacenter
    /// * 2x SSD SATA 3,84 TB Datacenter
    ///
    /// The HDD size will be 3.84TB, and [`MarketProduct::primary_hdd_count`] will be 6, not 8.
    pub primary_hdd_size: ByteSize,

    /// Human-readable summary of installed hardware/features, such as
    /// hard drive listing, ECC, INIC, etc.
    pub features: String,

    /// Primary hard drive count.
    ///
    /// Note that this only covers the installed count of the primary
    /// hard drive type, not the total number of drives.
    ///
    /// In a server with the following configuration for example:
    /// * 6x SSD U.2 NVMe 3,84 TB Datacenter
    /// * 2x SSD SATA 3,84 TB Datacenter
    ///
    /// The HDD size will be 3.84TB, and [`MarketProduct::primary_hdd_count`] will be 6, not 8.
    pub primary_hdd_count: u8,

    /// Price of the market product.
    pub price: LocationPrice,

    /// Indicates that the lowest price point has been reached, and won't be lowered further.
    pub fixed_price: bool,

    /// Time until the price of the product is reduced.
    pub next_reduce_in: std::time::Duration,

    /// Timestamp indicating the time at which the product price will be further reduced.
    pub next_reduce_at: Option<OffsetDateTime>,

    /// List of available addons for the product.
    pub orderable_addons: Vec<Addon>,
}

impl From<InternalMarketProduct> for MarketProduct {
    fn from(value: InternalMarketProduct) -> Self {
        MarketProduct {
            id: value.id,
            name: value.name,
            description: value.description,
            traffic_limit: value.traffic_limit,
            distributions: value.distributions,
            languages: value.languages,
            datacenter: value.datacenter,
            cpu: value.cpu,
            cpu_benchmark: value.cpu_benchmark,
            memory_size: value.memory_size,
            primary_hdd_size: value.hdd_size,
            features: value.hdd_text,
            primary_hdd_count: value.hdd_count,
            fixed_price: value.fixed_price,
            price: LocationPrice {
                recurring: RecurringPrice {
                    net: value.price,
                    gross: value.price_vat,
                    hourly_net: value.price_hourly,
                    hourly_gross: value.price_hourly_vat,
                },
                setup: SetupPrice {
                    net: value.price_setup,
                    gross: value.price_setup_vat,
                },
            },
            next_reduce_in: std::time::Duration::from_secs(value.next_reduce.unsigned_abs()),
            next_reduce_at: PrimitiveDateTime::parse(
                &value.next_reduce_date,
                &time::macros::format_description!("[year]-[month]-[day] [hour]:[minute]:[second]"),
            )
            .ok()
            .and_then(|time| {
                time.assume_timezone(time_tz::timezones::db::europe::BERLIN)
                    .take()
            }),
            orderable_addons: value.orderable_addons,
        }
    }
}

/// Unique Market Product ID.
///
/// Uniquely identifies a product on the Hetzner (auction) market.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct MarketProductId(pub u32);

impl From<u32> for MarketProductId {
    fn from(value: u32) -> Self {
        MarketProductId(value)
    }
}

impl From<MarketProductId> for u32 {
    fn from(value: MarketProductId) -> Self {
        value.0
    }
}

impl Display for MarketProductId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<u32> for MarketProductId {
    fn eq(&self, other: &u32) -> bool {
        self.0.eq(other)
    }
}

/// Authorization method chosen for the purchase.
/// Only one can be selected.
#[derive(Debug, Clone)]
pub enum AuthorizationMethod {
    /// List of fingerprints corresponding to ssh keys already
    /// provisioned within the Hetzner Robot system.
    Keys(Vec<String>),
    /// Set a root password for the server upon provisioning.
    Password(String),
}

/// LetMeSpendMyMoneyAlready must be selected for any purchase order to
/// actually go through, otherwise the "test" flag will be set.
/// and the API will just simulate a purchase, returning a
/// "Cancelled" transaction.
#[derive(Default, Debug, Clone, Eq, PartialEq)]
pub enum ImSeriousAboutSpendingMoney {
    /// This variant must be selected for any purchase order to
    /// actually go through, otherwise the "test" flag will be set.
    /// and the API will just simulate a purchase, returning a
    /// "Cancelled" transaction.
    LetMeSpendMyMoneyAlready,
    /// This variant will mark the purchase order as just a test,
    /// meaning the API will return a "Cancelled" transaction, and
    /// not actually go through with the purchase, only simulate it.
    #[default]
    NoThisIsJustATest,
}

/// Order for a standard Hetzner product, such as AX41.
///
/// Note: this is different from a [`MarketProductOrder`] which pertains
/// to purchase orders on the Hetzner auction market.
#[derive(Debug, Clone)]
pub struct ProductOrder {
    /// Id of the product to purchase.
    pub id: ProductId,
    /// Authorization method which should be enabled for the installed distribution.
    pub auth: AuthorizationMethod,
    /// Where this product should be provisioned.
    pub location: Location,
    /// Distribution to install on the target server.
    pub distribution: Option<String>,
    /// Chosen language for the installed distribution.
    pub language: Option<String>,
    /// Comment for the order. Note that comments require manual provisioning,
    /// which can increase the processing time for the purchase request.
    pub comment: Option<String>,
    /// Addons to order alongside this product.
    pub addons: Vec<AddonId>,

    /// LetMeSpendMyMoneyAlready must be selected for any purchase order to
    /// actually go through, otherwise the "test" flag will be set.
    /// and the API will just simulate a purchase, returning a
    /// "Cancelled" transaction.
    pub i_want_to_spend_money_to_purchase_a_server: ImSeriousAboutSpendingMoney,
}

impl UrlEncode for ProductOrder {
    fn encode_into(&self, mut f: crate::urlencode::UrlEncodingBuffer<'_>) {
        f.set("product_id", &self.id);

        match &self.auth {
            AuthorizationMethod::Keys(keys) => {
                for key in keys {
                    f.set("authorized_key[]", key)
                }
            }
            AuthorizationMethod::Password(password) => {
                f.set("password", password);
            }
        }

        f.set("location", &self.location);

        if let Some(dist) = &self.distribution {
            f.set("dist", dist);
        }

        if let Some(lang) = &self.language {
            f.set("lang", lang);
        }

        if let Some(comment) = &self.comment {
            f.set("comment", comment);
        }

        for addon in &self.addons {
            f.set("addon[]", addon);
        }

        if self.i_want_to_spend_money_to_purchase_a_server
            == ImSeriousAboutSpendingMoney::LetMeSpendMyMoneyAlready
        {
            f.set("test", "false")
        } else {
            f.set("test", "true")
        }
    }
}

/// Hetzner Auction market order.
///
/// Note: this is distinct from the [`ProductOrder`] which pertains to
/// standard Hetzner products such as AX41.
#[derive(Debug, Clone)]
pub struct MarketProductOrder {
    /// Auction server ID.
    pub id: MarketProductId,

    /// Authorization method which should be enabled for the installed distribution.
    pub auth: AuthorizationMethod,

    /// Distribution to install on the purchased server.
    pub distribution: Option<String>,

    /// Chosen language for the selected distribution.
    pub language: Option<String>,

    /// Comment for the order. Note that comments require manual provisioning,
    /// which can increase the processing time for the purchase request.
    pub comment: Option<String>,

    /// Addons to purchase alongside this server.
    pub addons: Vec<AddonId>,

    /// LetMeSpendMyMoneyAlready must be selected for any purchase order to
    /// actually go through, otherwise the "test" flag will be set.
    /// and the API will just simulate a purchase, returning a
    /// "Cancelled" transaction.
    pub i_want_to_spend_money_to_purchase_a_server: ImSeriousAboutSpendingMoney,
}

impl UrlEncode for MarketProductOrder {
    fn encode_into(&self, mut f: crate::urlencode::UrlEncodingBuffer<'_>) {
        f.set("product_id", self.id);

        match &self.auth {
            AuthorizationMethod::Keys(keys) => {
                for key in keys {
                    f.set("authorized_key[]", key)
                }
            }
            AuthorizationMethod::Password(password) => {
                f.set("password", password);
            }
        }

        if let Some(dist) = &self.distribution {
            f.set("dist", dist);
        }

        if let Some(lang) = &self.language {
            f.set("lang", lang);
        }

        if let Some(comment) = &self.comment {
            f.set("comment", comment);
        }

        for addon in &self.addons {
            f.set("addon[]", addon);
        }

        if self.i_want_to_spend_money_to_purchase_a_server
            == ImSeriousAboutSpendingMoney::LetMeSpendMyMoneyAlready
        {
            f.set("test", "false")
        } else {
            f.set("test", "true")
        }
    }
}

/// Addon purchase order.
#[derive(Debug, Clone)]
pub struct AddonOrder {
    /// Unique ID of the addon to be purchased.
    pub id: AddonId,

    /// Server ID which this addon applies to.
    pub server: ServerId,

    /// RIPE reason: mandatory for addon types "ip_ipv4", "subnet_ipv4"
    /// and "failover_subnet_ipv4"
    pub reason: Option<String>,

    /// Routing target for subnets: usable for addon type "subnet_ipv4"
    /// (Optional: default is the server's primary IP address)
    pub gateway: Option<IpAddr>,

    /// LetMeSpendMyMoneyAlready must be selected for any purchase order to
    /// actually go through, otherwise the "test" flag will be set.
    /// and the API will just simulate a purchase, returning a
    /// "Cancelled" transaction.
    pub i_want_to_spend_money_to_purchase_an_addon: ImSeriousAboutSpendingMoney,
}

impl UrlEncode for AddonOrder {
    fn encode_into(&self, mut f: crate::urlencode::UrlEncodingBuffer<'_>) {
        f.set("product_id", &self.id);
        f.set("server_number", self.server);

        if let Some(reason) = &self.reason {
            f.set("reason", reason);
        }

        if let Some(gateway) = &self.gateway {
            f.set("gateway", gateway);
        }

        if self.i_want_to_spend_money_to_purchase_an_addon
            == ImSeriousAboutSpendingMoney::LetMeSpendMyMoneyAlready
        {
            f.set("test", "false")
        } else {
            f.set("test", "true")
        }
    }
}

#[cfg(test)]
mod tests {
    use tracing::info;
    use tracing_test::traced_test;

    use crate::{
        api::{
            ordering::{
                AddonId, AddonTransaction, AuthorizationMethod, AvailableAddon,
                ImSeriousAboutSpendingMoney, MarketProductId, MarketTransaction,
                ProductTransaction,
            },
            wrapper::List,
        },
        urlencode::UrlEncode,
    };

    use super::MarketProductOrder;

    #[test]
    #[traced_test]
    fn test_serialize_market_product_order() {
        let a = MarketProductOrder {
            id: MarketProductId(100),
            auth: AuthorizationMethod::Keys(vec![
                String::from("15:28:b0:03:95:f0:77:b3:10:56:15:6b:77:22:a5:aa"),
                String::from("15:28:b0:03:95:f0:77:b3:10:56:15:6b:77:22:a5:bb"),
            ]),
            distribution: Some("Rescue System".to_string()),
            language: Some("en".to_string()),
            addons: vec![AddonId::from("primary_ipv4")],
            comment: None,
            i_want_to_spend_money_to_purchase_a_server:
                ImSeriousAboutSpendingMoney::NoThisIsJustATest,
        };

        info!("{}", a.encode());
    }

    #[test]
    #[traced_test]
    fn deserialize_transactions() {
        let example_data = r#"
            [
                {
                    "transaction":{
                    "id":"B20150121-344957-251478",
                    "date":"2015-01-21T12:30:43+01:00",
                    "status":"in process",
                    "server_number":null,
                    "server_ip":null,
                    "authorized_key":[
                
                    ],
                    "host_key":[
                
                    ],
                    "comment":null,
                    "product":{
                        "id":"VX6",
                        "name":"vServer VX6",
                        "description":[
                        "Single-Core CPU",
                        "1 GB RAM",
                        "25 GB HDD",
                        "No telephone support"
                        ],
                        "traffic":"2 TB",
                        "dist":"Rescue system",
                        "@deprecated arch":"64",
                        "lang":"en",
                        "location":null
                    },
                    "addons":[
                        "primary_ipv4"
                    ]
                    }
                },
                {
                    "transaction":{
                    "id":"B20150121-344958-251479",
                    "date":"2015-01-21T12:54:01+01:00",
                    "status":"ready",
                    "server_number":107239,
                    "server_ip":"188.40.1.1",
                    "authorized_key":[
                        {
                            "key":{
                                "name":"key1",
                                "fingerprint":"15:28:b0:03:95:f0:77:b3:10:56:15:6b:77:22:a5:bb",
                                "type":"ED25519",
                                "size":256
                            }
                        }
                    ],
                    "host_key":[
                        {
                            "key":{
                                "fingerprint":"c1:e4:08:73:dd:f7:e9:d1:94:ab:e9:0f:28:b2:d2:ed",
                                "type":"DSA",
                                "size":1024
                            }
                        }
                    ],
                    "comment":null,
                    "product":{
                        "id":"EX40",
                        "name":"Dedicated Root Server EX40",
                        "description":[
                        "Intel\u00ae Core\u2122 i7-4770 Quad-Core Haswell",
                        "32 GB DDR3 RAM",
                        "2 x 2 TB SATA 6 Gb\/s Enterprise HDD; 7200 rpm(Software-RAID 1)",
                        "1 Gbit\/s bandwidth"
                        ],
                        "traffic":"30 TB",
                        "dist":"Debian 7.7 minimal",
                        "@deprecated arch":"64",
                        "lang":"en",
                        "location":"FSN1"
                    },
                    "addons":[
                
                    ]
                    }
                }
            ]"#;
        let transactions: List<ProductTransaction> = serde_json::from_str(example_data).unwrap();

        info!("{transactions:#?}");
    }

    #[test]
    #[traced_test]
    fn test_deserialize_market_transaction() {
        let example_data = r#"
            [
                {
                    "transaction":{
                    "id":"B20150121-344957-251478",
                    "date":"2015-01-21T12:30:43+01:00",
                    "status":"in process",
                    "server_number":null,
                    "server_ip":null,
                    "authorized_key":[
                
                    ],
                    "host_key":[
                
                    ],
                    "comment":null,
                    "product":{
                        "id":283693,
                        "name":"SB110",
                        "description":[
                        "Intel Core i7 980x",
                        "6x RAM 4096 MB DDR3",
                        "2x HDD 1,5 TB SATA",
                        "2x SSD 120 GB SATA"
                        ],
                        "traffic":"20 TB",
                        "dist":"Rescue system",
                        "@deprecated arch":"64",
                        "lang":"en",
                        "cpu":"Intel Core i7 980x",
                        "cpu_benchmark":8944,
                        "memory_size":24,
                        "hdd_size":1536,
                        "hdd_text":"ENT.HDD ECC INIC",
                        "hdd_count":2,
                        "datacenter":"FSN1-DC5",
                        "network_speed":"100 Mbit\/s",
                        "fixed_price":true,
                        "next_reduce":0,
                        "next_reduce_date":"2018-05-01 12:22:00"
                    }
                    }
                },
                {
                    "transaction":{
                    "id":"B20150121-344958-251479",
                    "date":"2015-01-21T12:54:01+01:00",
                    "status":"ready",
                    "server_number":107239,
                    "server_ip":"188.40.1.1",
                    "authorized_key":[
                        {
                        "key":{
                            "name":"key1",
                            "fingerprint":"15:28:b0:03:95:f0:77:b3:10:56:15:6b:77:22:a5:bb",
                            "type":"ED25519",
                            "size":256
                        }
                        }
                    ],
                    "host_key":[
                        {
                        "key":{
                            "fingerprint":"c1:e4:08:73:dd:f7:e9:d1:94:ab:e9:0f:28:b2:d2:ed",
                            "type":"DSA",
                            "size":1024
                        }
                        }
                    ],
                    "comment":null,
                    "product":{
                        "id":277254,
                        "name":"SB114",
                        "description":[
                        "Intel Core i7 950",
                        "6x RAM 2048 MB DDR3",
                        "7x HDD 1,5 TB SATA"
                        ],
                        "traffic":"20 TB",
                        "dist":"Rescue system",
                        "@deprecated arch":"64",
                        "lang":"en",
                        "cpu":"Intel Core i7 950",
                        "cpu_benchmark":5682,
                        "memory_size":12,
                        "hdd_size":1536,
                        "hdd_text":"ENT.HDD ECC INIC",
                        "hdd_count":7,
                        "datacenter":"FSN1-DC5",
                        "network_speed":"100 Mbit\/s",
                        "fixed_price":true,
                        "next_reduce":0,
                        "next_reduce_date":"2018-05-01 12:22:00"
                    }
                    }
                }
            ]"#;

        let transactions: List<MarketTransaction> = serde_json::from_str(example_data).unwrap();
        info!("{transactions:#?}");
    }

    #[test]
    #[traced_test]
    fn test_deserialize_addon_transactions() {
        // This is the example shown in the API documentation:
        // <https://robot.hetzner.com/doc/webservice/en.html#get-order-server_market-transaction-id>
        let example_data = r#"
            [
                {
                    "transaction":{
                        "id":"B20220210-1843193-S33055",
                        "date":"2022-02-10T12:20:11+01:00",
                        "status":"in process",
                        "server_number":123,
                        "product":{
                        "id":"failover_subnet_ipv4_29",
                        "name":"Failover subnet \/29",
                        "price":{
                            "location":"NBG1",
                            "price":{
                                "net":"15.1261",
                                "gross":"15.1261",
                                "hourly_net":"0.0242",
                                "hourly_gross":"0.0242"
                            },
                            "price_setup":{
                                "net":"152.0000",
                                "gross":"152.0000"
                            }
                        }
                        },
                        "resources":[
                
                        ]
                    }
                },
                {
                    "transaction":{
                        "id":"B20220210-1843192-S33051",
                        "date":"2022-02-10T11:20:13+01:00",
                        "status":"ready",
                        "server_number":123,
                        "product":{
                        "id":"failover_subnet_ipv4_29",
                        "name":"Failover subnet \/29",
                        "price":{
                            "location":"NBG1",
                            "price":{
                                "net":"15.1261",
                                "gross":"15.1261",
                                "hourly_net":"0.0242",
                                "hourly_gross":"0.0242"
                            },
                            "price_setup":{
                                "net":"152.0000",
                                "gross":"152.0000"
                            }
                        }
                        },
                        "resources":[
                        {
                            "type":"subnet",
                            "id":"10.0.0.0"
                        }
                        ]
                    }
                }
            ]
          "#;

        let transactions: List<AddonTransaction> = serde_json::from_str(example_data).unwrap();

        info!("{transactions:#?}");
    }

    #[test]
    #[traced_test]
    fn test_deserialize_available_addons() {
        // This is the example used in the API documentation
        // <https://robot.hetzner.com/doc/webservice/en.html#get-order-server_addon-server-number-product>
        let example_data = r#"
          [
            {
              "product":{
                "id":"additional_ipv4",
                "name":"Additional IP address",
                "type":"ip_ipv4",
                "price":{
                  "location":"NBG1",
                  "price":{
                    "net":"0.8403",
                    "gross":"0.8403",
                    "hourly_net":"0.0014",
                    "hourly_gross":"0.0014"
                  },
                  "price_setup":{
                    "net":"19.0000",
                    "gross":"19.0000"
                  }
                }
              }
            },
            {
              "product":{
                "id":"subnet_ipv4_29",
                "name":"Additional subnet \/29 (monthly charge)",
                "type":"subnet_ipv4",
                "price":{
                  "location":"NBG1",
                  "price":{
                    "net":"6.7227",
                    "gross":"6.7227",
                    "hourly_net":"0.0108",
                    "hourly_gross":"0.0108"
                  },
                  "price_setup":{
                    "net":"152.0000",
                    "gross":"152.0000"
                  }
                }
              }
            }
          ]"#;

        let data: List<AvailableAddon> = serde_json::from_str(&example_data).unwrap();

        info!("{data:#?}");
    }
}