ferrisgram/helpers/
bot_short_description.rs

1// WARNING: THIS CODE IS AUTOGENERATED.
2// DO NOT EDIT!!!
3
4#![allow(clippy::too_many_arguments, clippy::new_without_default)]
5use crate::types::BotShortDescription;
6
7impl BotShortDescription {
8    /// This function creates an empty struct for the object BotShortDescription.
9    pub fn new(short_description: String) -> Self {
10        Self { short_description }
11    }
12}