proto_blue_api/generated/com/atproto/server/resetPassword.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.server.resetPassword
3
4use serde::{Deserialize, Serialize};
5
6/// Reset a user account password using a token.
7/// XRPC Procedure: com.atproto.server.resetPassword
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11 pub password: String,
12 pub token: String,
13}