mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-09 19:49:19 +01:00
Add setters to EncryptedPassportElementTemporaryRegistration
This commit is contained in:
parent
826a1149c1
commit
f8a51182de
1 changed files with 25 additions and 0 deletions
|
@ -717,6 +717,31 @@ pub struct EncryptedPassportElementTemporaryRegistration {
|
||||||
pub translation: Option<Vec<PassportFile>>,
|
pub translation: Option<Vec<PassportFile>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl EncryptedPassportElementTemporaryRegistration {
|
||||||
|
pub fn new<F>(files: F) -> Self
|
||||||
|
where
|
||||||
|
F: Into<Vec<PassportFile>>,
|
||||||
|
{
|
||||||
|
Self { files: files.into(), translation: None }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn files<P>(mut self, val: P) -> Self
|
||||||
|
where
|
||||||
|
P: Into<Vec<PassportFile>>,
|
||||||
|
{
|
||||||
|
self.files = val.into();
|
||||||
|
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]
|
#[serde_with_macros::skip_serializing_none]
|
||||||
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
|
|
Loading…
Reference in a new issue