#[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::ident::AtIdentifier;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, 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 RevokeAccountCredentials<S: BosStr = DefaultStr> {
pub account: AtIdentifier<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
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<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for RevokeAccountCredentials<S> {
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<S: BosStr> = RevokeAccountCredentials<S>;
type Response = RevokeAccountCredentialsResponse;
}
pub mod revoke_account_credentials_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 RevokeAccountCredentialsBuilder<S: BosStr, St: revoke_account_credentials_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtIdentifier<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> RevokeAccountCredentials<S> {
pub fn new() -> RevokeAccountCredentialsBuilder<S, revoke_account_credentials_state::Empty> {
RevokeAccountCredentialsBuilder::new()
}
}
impl<S: BosStr> RevokeAccountCredentialsBuilder<S, revoke_account_credentials_state::Empty> {
pub fn new() -> Self {
RevokeAccountCredentialsBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RevokeAccountCredentialsBuilder<S, St>
where
St: revoke_account_credentials_state::State,
St::Account: revoke_account_credentials_state::IsUnset,
{
pub fn account(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> RevokeAccountCredentialsBuilder<S, revoke_account_credentials_state::SetAccount<St>> {
self._fields.0 = Option::Some(value.into());
RevokeAccountCredentialsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RevokeAccountCredentialsBuilder<S, St>
where
St: revoke_account_credentials_state::State,
St::Account: revoke_account_credentials_state::IsSet,
{
pub fn build(self) -> RevokeAccountCredentials<S> {
RevokeAccountCredentials {
account: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> RevokeAccountCredentials<S> {
RevokeAccountCredentials {
account: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}