// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.blebbit.authr.folder.updateFolder // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, bon::Builder, jacquard_derive::IntoStatic )] #[builder(start_fn = new)] #[serde(rename_all = "camelCase")] pub struct UpdateFolderParams<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] #[builder(into)] pub id: std::option::Option>, } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic, Default )] #[serde(rename_all = "camelCase")] pub struct UpdateFolder<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub name: std::option::Option>, #[serde(skip_serializing_if = "std::option::Option::is_none")] pub public: std::option::Option, } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic, Default )] #[serde(rename_all = "camelCase")] pub struct UpdateFolderOutput<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub cuid: std::option::Option>, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub name: std::option::Option>, #[serde(skip_serializing_if = "std::option::Option::is_none")] pub public: std::option::Option, } ///Response type for ///app.blebbit.authr.folder.updateFolder pub struct UpdateFolderResponse; impl jacquard_common::xrpc::XrpcResp for UpdateFolderResponse { const NSID: &'static str = "app.blebbit.authr.folder.updateFolder"; const ENCODING: &'static str = "application/json"; type Output<'de> = UpdateFolderOutput<'de>; type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for UpdateFolder<'a> { const NSID: &'static str = "app.blebbit.authr.folder.updateFolder"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = UpdateFolderResponse; } ///Endpoint type for ///app.blebbit.authr.folder.updateFolder pub struct UpdateFolderRequest; impl jacquard_common::xrpc::XrpcEndpoint for UpdateFolderRequest { const PATH: &'static str = "/xrpc/app.blebbit.authr.folder.updateFolder"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = UpdateFolder<'de>; type Response = UpdateFolderResponse; }