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
use serde::{Deserialize, Serialize};
use crate::types::LabeledPrice;
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct ShippingOption {
pub id: String,
pub title: String,
pub prices: Vec<LabeledPrice>,
}
impl ShippingOption {
pub fn new<S1, S2, P>(id: S1, title: S2, prices: P) -> Self
where
S1: Into<String>,
S2: Into<String>,
P: IntoIterator<Item = LabeledPrice>,
{
Self { id: id.into(), title: title.into(), prices: prices.into_iter().collect() }
}
pub fn id<S>(mut self, val: S) -> Self
where
S: Into<String>,
{
self.id = val.into();
self
}
pub fn title<S>(mut self, val: S) -> Self
where
S: Into<String>,
{
self.title = val.into();
self
}
pub fn prices<P>(mut self, val: P) -> Self
where
P: IntoIterator<Item = LabeledPrice>,
{
self.prices = val.into_iter().collect();
self
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn serialize() {
let shipping_option = ShippingOption {
id: "0".to_string(),
title: "Option".to_string(),
prices: vec![LabeledPrice { label: "Label".to_string(), amount: 60 }],
};
let expected = r#"{"id":"0","title":"Option","prices":[{"label":"Label","amount":60}]}"#;
let actual = serde_json::to_string(&shipping_option).unwrap();
assert_eq!(actual, expected);
}
}