#[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 CreateInviteCode<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub for_account: Option<Did<'a>>,
pub use_count: i64,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct CreateInviteCodeOutput<'a> {
#[serde(borrow)]
pub code: CowStr<'a>,
}
pub struct CreateInviteCodeResponse;
impl jacquard_common::xrpc::XrpcResp for CreateInviteCodeResponse {
const NSID: &'static str = "com.atproto.server.createInviteCode";
const ENCODING: &'static str = "application/json";
type Output<'de> = CreateInviteCodeOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for CreateInviteCode<'a> {
const NSID: &'static str = "com.atproto.server.createInviteCode";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateInviteCodeResponse;
}
pub struct CreateInviteCodeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateInviteCodeRequest {
const PATH: &'static str = "/xrpc/com.atproto.server.createInviteCode";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = CreateInviteCode<'de>;
type Response = CreateInviteCodeResponse;
}
pub mod create_invite_code_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 UseCount;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type UseCount = Unset;
}
pub struct SetUseCount<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUseCount<S> {}
impl<S: State> State for SetUseCount<S> {
type UseCount = Set<members::use_count>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct use_count(());
}
}
pub struct CreateInviteCodeBuilder<'a, S: create_invite_code_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> CreateInviteCode<'a> {
pub fn new() -> CreateInviteCodeBuilder<'a, create_invite_code_state::Empty> {
CreateInviteCodeBuilder::new()
}
}
impl<'a> CreateInviteCodeBuilder<'a, create_invite_code_state::Empty> {
pub fn new() -> Self {
CreateInviteCodeBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: create_invite_code_state::State> CreateInviteCodeBuilder<'a, S> {
pub fn for_account(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_for_account(mut self, value: Option<Did<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> CreateInviteCodeBuilder<'a, S>
where
S: create_invite_code_state::State,
S::UseCount: create_invite_code_state::IsUnset,
{
pub fn use_count(
mut self,
value: impl Into<i64>,
) -> CreateInviteCodeBuilder<'a, create_invite_code_state::SetUseCount<S>> {
self._fields.1 = Option::Some(value.into());
CreateInviteCodeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CreateInviteCodeBuilder<'a, S>
where
S: create_invite_code_state::State,
S::UseCount: create_invite_code_state::IsSet,
{
pub fn build(self) -> CreateInviteCode<'a> {
CreateInviteCode {
for_account: self._fields.0,
use_count: self._fields.1.unwrap(),
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>,
>,
) -> CreateInviteCode<'a> {
CreateInviteCode {
for_account: self._fields.0,
use_count: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}