mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-08 19:33:53 +01:00
Add setters to EncryptedPassportElementInternalPassport
This commit is contained in:
parent
ba1147c794
commit
81ab473793
1 changed files with 34 additions and 0 deletions
|
@ -415,6 +415,40 @@ pub struct EncryptedPassportElementInternalPassport {
|
|||
pub translation: Option<Vec<PassportFile>>,
|
||||
}
|
||||
|
||||
impl EncryptedPassportElementInternalPassport {
|
||||
pub fn new<S>(data: S, front_side: PassportFile, selfie: PassportFile) -> Self
|
||||
where
|
||||
S: Into<String>,
|
||||
{
|
||||
Self { data: data.into(), front_side, selfie, translation: None }
|
||||
}
|
||||
|
||||
pub fn data<S>(mut self, val: S) -> Self
|
||||
where
|
||||
S: Into<String>,
|
||||
{
|
||||
self.data = val.into();
|
||||
self
|
||||
}
|
||||
|
||||
pub fn front_side(mut self, val: PassportFile) -> Self {
|
||||
self.front_side = val;
|
||||
self
|
||||
}
|
||||
|
||||
pub fn selfie(mut self, val: PassportFile) -> Self {
|
||||
self.selfie = val;
|
||||
self
|
||||
}
|
||||
pub fn translation<P>(mut self, val: P) -> Self
|
||||
where
|
||||
P: Into<Vec<PassportFile>>,
|
||||
{
|
||||
self.translation = Some(val.into());
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
#[serde_with_macros::skip_serializing_none]
|
||||
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
|
||||
#[non_exhaustive]
|
||||
|
|
Loading…
Reference in a new issue