proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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>,
}