// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.server.deleteSession // // 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 DeleteSession; /// Response type for ///com.atproto.server.deleteSession pub struct DeleteSessionResponse; impl jacquard_common::xrpc::XrpcResp for DeleteSessionResponse { const NSID: &'static str = "com.atproto.server.deleteSession"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl jacquard_common::xrpc::XrpcRequest for DeleteSession { const NSID: &'static str = "com.atproto.server.deleteSession"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = DeleteSessionResponse; } /// Endpoint type for ///com.atproto.server.deleteSession pub struct DeleteSessionRequest; impl jacquard_common::xrpc::XrpcEndpoint for DeleteSessionRequest { const PATH: &'static str = "/xrpc/com.atproto.server.deleteSession"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = DeleteSession; type Response = DeleteSessionResponse; }