// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.server.reserveSigningKey
use serde::{Deserialize, Serialize};
/// Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented.
/// XRPC Procedure: com.atproto.server.reserveSigningKey
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub signing_key: String,
}