Skip to main content

proto_blue_api/generated/com/atproto/admin/
updateAccountHandle.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.admin.updateAccountHandle
3
4use serde::{Deserialize, Serialize};
5
6/// Administrative action to update an account's handle.
7/// XRPC Procedure: com.atproto.admin.updateAccountHandle
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11    pub did: String,
12    pub handle: String,
13}