// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.blebbit.authr.folder.createFolder // // 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, jacquard_derive::IntoStatic, Default )] #[serde(rename_all = "camelCase")] pub struct CreateFolder<'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 CreateFolderOutput<'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.createFolder pub struct CreateFolderResponse; impl jacquard_common::xrpc::XrpcResp for CreateFolderResponse { const NSID: &'static str = "app.blebbit.authr.folder.createFolder"; const ENCODING: &'static str = "application/json"; type Output<'de> = CreateFolderOutput<'de>; type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for CreateFolder<'a> { const NSID: &'static str = "app.blebbit.authr.folder.createFolder"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = CreateFolderResponse; } ///Endpoint type for ///app.blebbit.authr.folder.createFolder pub struct CreateFolderRequest; impl jacquard_common::xrpc::XrpcEndpoint for CreateFolderRequest { const PATH: &'static str = "/xrpc/app.blebbit.authr.folder.createFolder"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = CreateFolder<'de>; type Response = CreateFolderResponse; }