// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::InputSticker;
impl InputSticker {
/// This function creates an empty struct for the object InputSticker.
pub fn new(sticker: String, format: String, emoji_list: Vec<String>) -> Self {
Self {
sticker,
format,
emoji_list,
mask_position: None,
keywords: None,
}
}
}