teloxide_core/payloads/remove_chat_verification.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{Recipient, True};
6
7impl_payload! {
8 /// Removes verification from a chat that is currently verified [on behalf of the organization] represented by the bot. Returns _true_ on success.
9 ///
10 /// [on behalf of the organization]: https://telegram.org/verify#third-party-verification
11 #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
12 pub RemoveChatVerification (RemoveChatVerificationSetters) => True {
13 required {
14 /// Unique identifier for the target chat or username of the target channel
15 pub chat_id: Recipient [into],
16 }
17 }
18}