// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.server.deactivateAccount
use serde::{Deserialize, Serialize};
/// Deactivates a currently active account. Stops serving of repo, and future writes to repo until reactivated. Used to finalize account migration with the old host after the account has been activated on the new host.
/// XRPC Procedure: com.atproto.server.deactivateAccount
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
#[serde(skip_serializing_if = "Option::is_none")]
pub delete_after: Option<String>,
}