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
//! Types related to unspecified errors.

use is_macro::Is;
use serde::Serialize;

/// Represents possible element kinds for unspecified error.
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Serialize, Is)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
#[must_use]
pub enum Kind {
    /// An error in the user's personal details.
    PersonalDetails,
    /// An error in the user's passport.
    Passport,
    /// An error in the user's driver license.
    DriverLicense,
    /// An error in the user's identity card.
    IdentityCard,
    /// An error in the user's internal passport.
    InternalPassport,
    /// An error in the user's address.
    Address,
    /// An error in the user's utility bill.
    UtilityBill,
    /// An error in the user's bank statement.
    BankStatement,
    /// An error in the user's rental agreement.
    RentalAgreement,
    /// An error in the user's passport registration.
    PassportRegistration,
    /// An error in the user's temporary registration.
    TemporaryRegistration,
    /// An error in the user's phone number.
    PhoneNumber,
    /// An error in the user's email.
    Email,
}

/// Represents a [`PassportElementErrorUnspecified`][docs].
///
/// [docs]: https://core.telegram.org/bots/api#passportelementerrorunspecified
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize)]
#[must_use]
pub struct Unspecified {
    #[serde(rename = "type")]
    kind: Kind,
    element_hash: String,
}

impl Unspecified {
    /// Constructs a new `Unspecified`.
    pub fn new(kind: Kind, element_hash: impl Into<String>) -> Self {
        Self {
            kind,
            element_hash: element_hash.into(),
        }
    }
}