// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.temp.addReservedHandle // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[allow(unused_imports)] use alloc::collections::BTreeMap; #[allow(unused_imports)] use core::marker::PhantomData; use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr}; use jacquard_common::deps::smol_str::SmolStr; use jacquard_common::types::value::Data; use jacquard_derive::IntoStatic; use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)] #[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))] pub struct AddReservedHandle { pub handle: S, #[serde(flatten, default, skip_serializing_if = "Option::is_none")] pub extra_data: Option>>, } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)] #[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))] pub struct AddReservedHandleOutput { #[serde(flatten, default, skip_serializing_if = "Option::is_none")] pub extra_data: Option>>, } /** Response marker for the `com.atproto.temp.addReservedHandle` procedure. Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output`, which is `AddReservedHandleOutput` for this endpoint.*/ pub struct AddReservedHandleResponse; impl jacquard_common::xrpc::XrpcResp for AddReservedHandleResponse { const NSID: &'static str = "com.atproto.temp.addReservedHandle"; const ENCODING: &'static str = "application/json"; type Output = AddReservedHandleOutput; type Err = jacquard_common::xrpc::GenericError; } impl jacquard_common::xrpc::XrpcRequest for AddReservedHandle { const NSID: &'static str = "com.atproto.temp.addReservedHandle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = AddReservedHandleResponse; } /** Endpoint marker for the `com.atproto.temp.addReservedHandle` procedure. Path: `/xrpc/com.atproto.temp.addReservedHandle`. The request payload type is `AddReservedHandle`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/ pub struct AddReservedHandleRequest; impl jacquard_common::xrpc::XrpcEndpoint for AddReservedHandleRequest { const PATH: &'static str = "/xrpc/com.atproto.temp.addReservedHandle"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request = AddReservedHandle; type Response = AddReservedHandleResponse; }