Skip to main content

proto_blue_api/generated/com/atproto/server/
deleteAccount.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.server.deleteAccount
3
4use serde::{Deserialize, Serialize};
5
6/// Delete an actor's account with a token and password. Can only be called after requesting a deletion token. Requires auth.
7/// XRPC Procedure: com.atproto.server.deleteAccount
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11    pub did: String,
12    pub password: String,
13    pub token: String,
14}