// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.admin.updateAccountPassword
use serde::{Deserialize, Serialize};
/// Update the password for a user account as an administrator.
/// XRPC Procedure: com.atproto.admin.updateAccountPassword
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub did: String,
pub password: String,
}