teloxide_core/payloads/get_chat.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{ChatFullInfo, Recipient};
6
7impl_payload! {
8 /// Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a [`ChatFullInfo`] object on success.
9 ///
10 /// [`ChatFullInfo`]: crate::types::ChatFullInfo
11 #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
12 pub GetChat (GetChatSetters) => ChatFullInfo {
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}