// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.server.resetPassword
use serde::{Deserialize, Serialize};
/// Reset a user account password using a token.
/// XRPC Procedure: com.atproto.server.resetPassword
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub password: String,
pub token: String,
}