1// @generated by jacquard-lexicon. DO NOT EDIT.
2//
3// Lexicon: com.atproto.server.activateAccount
4//
5// This file was automatically generated from Lexicon schemas.
6// Any manual changes will be overwritten on the next regeneration.
7
8/// XRPC request marker type
9#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize)]
10pub struct ActivateAccount;
11impl jacquard_common::types::xrpc::XrpcRequest for ActivateAccount {
12 const NSID: &'static str = "com.atproto.server.activateAccount";
13 const METHOD: jacquard_common::types::xrpc::XrpcMethod = jacquard_common::types::xrpc::XrpcMethod::Procedure(
14 "application/json",
15 );
16 const OUTPUT_ENCODING: &'static str = "application/json";
17 type Output<'de> = ();
18 type Err<'de> = jacquard_common::types::xrpc::GenericError<'de>;
19}