// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::PhotoSize;
use crate::types::UserProfilePhotos;
impl UserProfilePhotos {
/// This function creates an empty struct for the object UserProfilePhotos.
pub fn new(total_count: i64, photos: Vec<Vec<PhotoSize>>) -> Self {
Self {
total_count,
photos,
}
}
}