#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct DisableAccountInvites<S: BosStr = DefaultStr> {
pub account: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub note: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
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<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for DisableAccountInvites<S> {
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<S: BosStr> = DisableAccountInvites<S>;
type Response = DisableAccountInvitesResponse;
}
pub mod disable_account_invites_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAccount<St> {}
impl<St: State> State for SetAccount<St> {
type Account = Set<members::account>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct account(());
}
}
pub struct DisableAccountInvitesBuilder<S: BosStr, St: disable_account_invites_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DisableAccountInvites<S> {
pub fn new() -> DisableAccountInvitesBuilder<S, disable_account_invites_state::Empty> {
DisableAccountInvitesBuilder::new()
}
}
impl<S: BosStr> DisableAccountInvitesBuilder<S, disable_account_invites_state::Empty> {
pub fn new() -> Self {
DisableAccountInvitesBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DisableAccountInvitesBuilder<S, St>
where
St: disable_account_invites_state::State,
St::Account: disable_account_invites_state::IsUnset,
{
pub fn account(
mut self,
value: impl Into<Did<S>>,
) -> DisableAccountInvitesBuilder<S, disable_account_invites_state::SetAccount<St>> {
self._fields.0 = Option::Some(value.into());
DisableAccountInvitesBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: disable_account_invites_state::State> DisableAccountInvitesBuilder<S, St> {
pub fn note(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_note(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> DisableAccountInvitesBuilder<S, St>
where
St: disable_account_invites_state::State,
St::Account: disable_account_invites_state::IsSet,
{
pub fn build(self) -> DisableAccountInvites<S> {
DisableAccountInvites {
account: self._fields.0.unwrap(),
note: self._fields.1,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> DisableAccountInvites<S> {
DisableAccountInvites {
account: self._fields.0.unwrap(),
note: self._fields.1,
extra_data: Some(extra_data),
}
}
}