mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-25 01:25:12 +01:00
17 lines
554 B
Rust
17 lines
554 B
Rust
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
|
// **DO NOT EDIT THIS FILE**,
|
|
// edit `cg` instead.
|
|
use serde::Serialize;
|
|
|
|
use crate::types::True;
|
|
|
|
impl_payload! {
|
|
/// Use this method to delete a sticker from a set created by the bot. Returns _True_ on success.
|
|
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
|
pub DeleteStickerFromSet (DeleteStickerFromSetSetters) => True {
|
|
required {
|
|
/// File identifier of the sticker
|
|
pub sticker: String [into],
|
|
}
|
|
}
|
|
}
|