#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct EnableAccountInvites<'a> {
#[serde(borrow)]
pub account: jacquard_common::types::string::Did<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub note: std::option::Option<jacquard_common::CowStr<'a>>,
}
pub mod enable_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 EnableAccountInvitesBuilder<'a, S: enable_account_invites_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::string::Did<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> EnableAccountInvites<'a> {
pub fn new() -> EnableAccountInvitesBuilder<
'a,
enable_account_invites_state::Empty,
> {
EnableAccountInvitesBuilder::new()
}
}
impl<'a> EnableAccountInvitesBuilder<'a, enable_account_invites_state::Empty> {
pub fn new() -> Self {
EnableAccountInvitesBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> EnableAccountInvitesBuilder<'a, S>
where
S: enable_account_invites_state::State,
S::Account: enable_account_invites_state::IsUnset,
{
pub fn account(
mut self,
value: impl Into<jacquard_common::types::string::Did<'a>>,
) -> EnableAccountInvitesBuilder<'a, enable_account_invites_state::SetAccount<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
EnableAccountInvitesBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: enable_account_invites_state::State> EnableAccountInvitesBuilder<'a, S> {
pub fn note(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.1 = value.into();
self
}
pub fn maybe_note(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
self.__unsafe_private_named.1 = value;
self
}
}
impl<'a, S> EnableAccountInvitesBuilder<'a, S>
where
S: enable_account_invites_state::State,
S::Account: enable_account_invites_state::IsSet,
{
pub fn build(self) -> EnableAccountInvites<'a> {
EnableAccountInvites {
account: self.__unsafe_private_named.0.unwrap(),
note: self.__unsafe_private_named.1,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> EnableAccountInvites<'a> {
EnableAccountInvites {
account: self.__unsafe_private_named.0.unwrap(),
note: self.__unsafe_private_named.1,
extra_data: Some(extra_data),
}
}
}
pub struct EnableAccountInvitesResponse;
impl jacquard_common::xrpc::XrpcResp for EnableAccountInvitesResponse {
const NSID: &'static str = "com.atproto.admin.enableAccountInvites";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for EnableAccountInvites<'a> {
const NSID: &'static str = "com.atproto.admin.enableAccountInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = EnableAccountInvitesResponse;
}
pub struct EnableAccountInvitesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for EnableAccountInvitesRequest {
const PATH: &'static str = "/xrpc/com.atproto.admin.enableAccountInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = EnableAccountInvites<'de>;
type Response = EnableAccountInvitesResponse;
}