// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.server.requestAccountDelete // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. /// XRPC request marker type #[derive( Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize, jacquard_derive::IntoStatic )] pub struct RequestAccountDelete; /// Response type for ///com.atproto.server.requestAccountDelete pub struct RequestAccountDeleteResponse; impl jacquard_common::xrpc::XrpcResp for RequestAccountDeleteResponse { const NSID: &'static str = "com.atproto.server.requestAccountDelete"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl jacquard_common::xrpc::XrpcRequest for RequestAccountDelete { const NSID: &'static str = "com.atproto.server.requestAccountDelete"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = RequestAccountDeleteResponse; } /// Endpoint type for ///com.atproto.server.requestAccountDelete pub struct RequestAccountDeleteRequest; impl jacquard_common::xrpc::XrpcEndpoint for RequestAccountDeleteRequest { const PATH: &'static str = "/xrpc/com.atproto.server.requestAccountDelete"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = RequestAccountDelete; type Response = RequestAccountDeleteResponse; }