// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.graph.unmuteThread // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, bon::Builder, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] #[builder(start_fn = new)] pub struct UnmuteThread<'a> { #[serde(borrow)] pub root: jacquard_common::types::string::AtUri<'a>, #[serde(flatten)] #[serde(borrow)] #[builder(default)] pub extra_data: ::std::collections::BTreeMap< ::jacquard_common::smol_str::SmolStr, ::jacquard_common::types::value::Data<'a>, >, } ///Response type for ///app.bsky.graph.unmuteThread pub struct UnmuteThreadResponse; impl jacquard_common::xrpc::XrpcResp for UnmuteThreadResponse { const NSID: &'static str = "app.bsky.graph.unmuteThread"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'de> jacquard_common::xrpc::XrpcRequest<'de> for UnmuteThread<'de> { const NSID: &'static str = "app.bsky.graph.unmuteThread"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = UnmuteThreadResponse; } ///Endpoint type for ///app.bsky.graph.unmuteThread pub struct UnmuteThreadRequest; impl jacquard_common::xrpc::XrpcEndpoint for UnmuteThreadRequest { const PATH: &'static str = "/xrpc/app.bsky.graph.unmuteThread"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = UnmuteThread<'de>; type Response = UnmuteThreadResponse; }