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
use is_macro::Is;
use serde::Serialize;
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Serialize, Is)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
#[must_use]
pub enum Kind {
Passport,
DriverLicense,
IdentityCard,
InternalPassport,
UtilityBill,
BankStatement,
RentalAgreement,
PassportRegistration,
TemporaryRegistration,
}
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize)]
#[must_use]
pub struct TranslationFile {
#[serde(rename = "type")]
kind: Kind,
file_hash: String,
}
impl TranslationFile {
pub fn new(kind: Kind, file_hash: impl Into<String>) -> Self {
Self {
kind,
file_hash: file_hash.into(),
}
}
}
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize)]
#[must_use]
pub struct TranslationFiles {
#[serde(rename = "type")]
kind: Kind,
file_hashes: Vec<String>,
}
impl TranslationFiles {
pub fn new(kind: Kind, file_hashes: impl Into<Vec<String>>) -> Self {
Self {
kind,
file_hashes: file_hashes.into(),
}
}
}