// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: com.atproto.admin.disableInviteCodes // // 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 DisableInviteCodes<'a> { #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub accounts: std::option::Option>>, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub codes: std::option::Option>>, } /// Response type for ///com.atproto.admin.disableInviteCodes pub struct DisableInviteCodesResponse; impl jacquard_common::xrpc::XrpcResp for DisableInviteCodesResponse { const NSID: &'static str = "com.atproto.admin.disableInviteCodes"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for DisableInviteCodes<'a> { const NSID: &'static str = "com.atproto.admin.disableInviteCodes"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = DisableInviteCodesResponse; } /// Endpoint type for ///com.atproto.admin.disableInviteCodes pub struct DisableInviteCodesRequest; impl jacquard_common::xrpc::XrpcEndpoint for DisableInviteCodesRequest { const PATH: &'static str = "/xrpc/com.atproto.admin.disableInviteCodes"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = DisableInviteCodes<'de>; type Response = DisableInviteCodesResponse; }