#[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<Vec<jacquard_common::CowStr<'a>>>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub codes: std::option::Option<Vec<jacquard_common::CowStr<'a>>>,
}
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;
}
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;
}