teloxide_core/payloads/get_chat_administrators.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{ChatMember, Recipient};
6
7impl_payload! {
8 /// Use this method to get a list of administrators in a chat. On success, returns an Array of [`ChatMember`] objects that contains information about all chat administrators except other bots. If the chat is a group or a supergroup and no administrators were appointed, only the creator will be returned.
9 ///
10 /// [`ChatMember`]: crate::types::ChatMember
11 #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
12 pub GetChatAdministrators (GetChatAdministratorsSetters) => Vec<ChatMember> {
13 required {
14 /// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
15 pub chat_id: Recipient [into],
16 }
17 }
18}