#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RevokeAccountCredentials<'a> {
#[serde(borrow)]
pub account: AtIdentifier<'a>,
}
pub struct RevokeAccountCredentialsResponse;
impl jacquard_common::xrpc::XrpcResp for RevokeAccountCredentialsResponse {
const NSID: &'static str = "com.atproto.temp.revokeAccountCredentials";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for RevokeAccountCredentials<'a> {
const NSID: &'static str = "com.atproto.temp.revokeAccountCredentials";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = RevokeAccountCredentialsResponse;
}
pub struct RevokeAccountCredentialsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for RevokeAccountCredentialsRequest {
const PATH: &'static str = "/xrpc/com.atproto.temp.revokeAccountCredentials";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = RevokeAccountCredentials<'de>;
type Response = RevokeAccountCredentialsResponse;
}
pub mod revoke_account_credentials_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 RevokeAccountCredentialsBuilder<
'a,
S: revoke_account_credentials_state::State,
> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> RevokeAccountCredentials<'a> {
pub fn new() -> RevokeAccountCredentialsBuilder<
'a,
revoke_account_credentials_state::Empty,
> {
RevokeAccountCredentialsBuilder::new()
}
}
impl<'a> RevokeAccountCredentialsBuilder<'a, revoke_account_credentials_state::Empty> {
pub fn new() -> Self {
RevokeAccountCredentialsBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RevokeAccountCredentialsBuilder<'a, S>
where
S: revoke_account_credentials_state::State,
S::Account: revoke_account_credentials_state::IsUnset,
{
pub fn account(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> RevokeAccountCredentialsBuilder<
'a,
revoke_account_credentials_state::SetAccount<S>,
> {
self._fields.0 = Option::Some(value.into());
RevokeAccountCredentialsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RevokeAccountCredentialsBuilder<'a, S>
where
S: revoke_account_credentials_state::State,
S::Account: revoke_account_credentials_state::IsSet,
{
pub fn build(self) -> RevokeAccountCredentials<'a> {
RevokeAccountCredentials {
account: self._fields.0.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>,
>,
) -> RevokeAccountCredentials<'a> {
RevokeAccountCredentials {
account: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}