#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DisableAccountInvites<'a> {
#[serde(borrow)]
pub account: Did<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub note: Option<CowStr<'a>>,
}
pub struct DisableAccountInvitesResponse;
impl jacquard_common::xrpc::XrpcResp for DisableAccountInvitesResponse {
const NSID: &'static str = "com.atproto.admin.disableAccountInvites";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for DisableAccountInvites<'a> {
const NSID: &'static str = "com.atproto.admin.disableAccountInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = DisableAccountInvitesResponse;
}
pub struct DisableAccountInvitesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DisableAccountInvitesRequest {
const PATH: &'static str = "/xrpc/com.atproto.admin.disableAccountInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = DisableAccountInvites<'de>;
type Response = DisableAccountInvitesResponse;
}
pub mod disable_account_invites_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Account;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Account = Unset;
}
pub struct SetAccount<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAccount<S> {}
impl<S: State> State for SetAccount<S> {
type Account = Set<members::account>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct account(());
}
}
pub struct DisableAccountInvitesBuilder<'a, S: disable_account_invites_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> DisableAccountInvites<'a> {
pub fn new() -> DisableAccountInvitesBuilder<
'a,
disable_account_invites_state::Empty,
> {
DisableAccountInvitesBuilder::new()
}
}
impl<'a> DisableAccountInvitesBuilder<'a, disable_account_invites_state::Empty> {
pub fn new() -> Self {
DisableAccountInvitesBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> DisableAccountInvitesBuilder<'a, S>
where
S: disable_account_invites_state::State,
S::Account: disable_account_invites_state::IsUnset,
{
pub fn account(
mut self,
value: impl Into<Did<'a>>,
) -> DisableAccountInvitesBuilder<'a, disable_account_invites_state::SetAccount<S>> {
self._fields.0 = Option::Some(value.into());
DisableAccountInvitesBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: disable_account_invites_state::State> DisableAccountInvitesBuilder<'a, S> {
pub fn note(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_note(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> DisableAccountInvitesBuilder<'a, S>
where
S: disable_account_invites_state::State,
S::Account: disable_account_invites_state::IsSet,
{
pub fn build(self) -> DisableAccountInvites<'a> {
DisableAccountInvites {
account: self._fields.0.unwrap(),
note: self._fields.1,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> DisableAccountInvites<'a> {
DisableAccountInvites {
account: self._fields.0.unwrap(),
note: self._fields.1,
extra_data: Some(extra_data),
}
}
}