mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-23 07:09:34 +01:00
In EncryptedMessageElementKind::translation: Vec<_> -> Option<Vec<_>>
This commit is contained in:
parent
fc68705d71
commit
b7e0a1c7d1
1 changed files with 9 additions and 9 deletions
|
@ -17,50 +17,50 @@ pub enum EncryptedPassportElementKind {
|
|||
data: String,
|
||||
front_side: PassportFile,
|
||||
selfie: PassportFile,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
DriverLicense {
|
||||
data: String,
|
||||
front_side: PassportFile,
|
||||
reverse_side: PassportFile,
|
||||
selfie: PassportFile,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
IdentityCard {
|
||||
data: String,
|
||||
front_side: PassportFile,
|
||||
reverse_side: PassportFile,
|
||||
selfie: PassportFile,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
InternalPassport {
|
||||
data: String,
|
||||
front_side: PassportFile,
|
||||
selfie: PassportFile,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
Address {
|
||||
data: String
|
||||
},
|
||||
UtilityBill {
|
||||
files: Vec<PassportFile>,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
BankStatement {
|
||||
files: Vec<PassportFile>,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
RentalAgreement {
|
||||
files: Vec<PassportFile>,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
PassportRegistration {
|
||||
files: Vec<PassportFile>,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
TemporaryRegistration {
|
||||
files: Vec<PassportFile>,
|
||||
translation: Vec<PassportFile>
|
||||
translation: Option<Vec<PassportFile>>
|
||||
},
|
||||
PhoneNumber { phone_number: String },
|
||||
Email { email: String }
|
||||
|
|
Loading…
Add table
Reference in a new issue