teloxide_core/payloads/get_available_gifts.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::Gifts;
6
7impl_payload! {
8 /// Returns the list of gifts that can be sent by the bot to users. Requires no parameters. Returns a [`Gifts`] object.
9 ///
10 /// [`Gifts`]: crate::types::Gifts
11 #[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
12 pub GetAvailableGifts (GetAvailableGiftsSetters) => Gifts {
13
14 }
15}