teloxide_core/payloads/log_out.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::True;
6
7impl_payload! {
8 /// Use this method to log out from the cloud Bot API server before launching the bot locally. You **must** log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns _True_ on success. Requires no parameters.
9 #[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
10 pub LogOut (LogOutSetters) => True {
11
12 }
13}