// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::EncryptedPassportElement;
impl EncryptedPassportElement {
/// This function creates an empty struct for the object EncryptedPassportElement.
pub fn new(r#type: String, hash: String) -> Self {
Self {
r#type,
data: None,
phone_number: None,
email: None,
files: None,
front_side: None,
reverse_side: None,
selfie: None,
translation: None,
hash,
}
}
}