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