ferrisgram 0.2.1

An elegent rust client for the Telegram Bot API.
Documentation
// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!

#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::Chat;
use crate::types::ChatBoostRemoved;
use crate::types::ChatBoostSource;

impl ChatBoostRemoved {
    /// This function creates an empty struct for the object ChatBoostRemoved.
    pub fn new(chat: Chat, boost_id: String, remove_date: i64, source: ChatBoostSource) -> Self {
        Self {
            chat,
            boost_id,
            remove_date,
            source,
        }
    }
}