// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.blebbit.authr.group.createGroupRelationship // // 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 CreateGroupRelationship<'a> { #[serde(borrow)] pub relation: jacquard_common::CowStr<'a>, #[serde(borrow)] pub resource: jacquard_common::CowStr<'a>, #[serde(borrow)] pub subject: jacquard_common::CowStr<'a>, } ///Response type for ///app.blebbit.authr.group.createGroupRelationship pub struct CreateGroupRelationshipResponse; impl jacquard_common::xrpc::XrpcResp for CreateGroupRelationshipResponse { const NSID: &'static str = "app.blebbit.authr.group.createGroupRelationship"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for CreateGroupRelationship<'a> { const NSID: &'static str = "app.blebbit.authr.group.createGroupRelationship"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = CreateGroupRelationshipResponse; } ///Endpoint type for ///app.blebbit.authr.group.createGroupRelationship pub struct CreateGroupRelationshipRequest; impl jacquard_common::xrpc::XrpcEndpoint for CreateGroupRelationshipRequest { const PATH: &'static str = "/xrpc/app.blebbit.authr.group.createGroupRelationship"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = CreateGroupRelationship<'de>; type Response = CreateGroupRelationshipResponse; }