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::ChatBoost;
use crate::types::ChatBoostSource;

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