mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-08 19:33:53 +01:00
Add setters to EncryptedPassportElementRentalAgreement
This commit is contained in:
parent
72dd3c1ce0
commit
55a66bd58f
1 changed files with 25 additions and 0 deletions
|
@ -613,6 +613,31 @@ pub struct EncryptedPassportElementRentalAgreement {
|
|||
pub translation: Option<Vec<PassportFile>>,
|
||||
}
|
||||
|
||||
impl EncryptedPassportElementRentalAgreement {
|
||||
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]
|
||||
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
|
||||
#[non_exhaustive]
|
||||
|
|
Loading…
Reference in a new issue