#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_bsky::unspecced::AgeAssuranceState;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct InitAgeAssurance<S: BosStr = DefaultStr> {
pub country_code: S,
pub email: S,
pub language: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct InitAgeAssuranceOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: AgeAssuranceState<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum InitAgeAssuranceError {
#[serde(rename = "InvalidEmail")]
InvalidEmail(Option<SmolStr>),
#[serde(rename = "DidTooLong")]
DidTooLong(Option<SmolStr>),
#[serde(rename = "InvalidInitiation")]
InvalidInitiation(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for InitAgeAssuranceError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidEmail(msg) => {
write!(f, "InvalidEmail")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::DidTooLong(msg) => {
write!(f, "DidTooLong")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidInitiation(msg) => {
write!(f, "InvalidInitiation")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
pub struct InitAgeAssuranceResponse;
impl jacquard_common::xrpc::XrpcResp for InitAgeAssuranceResponse {
const NSID: &'static str = "app.bsky.unspecced.initAgeAssurance";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = InitAgeAssuranceOutput<S>;
type Err = InitAgeAssuranceError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for InitAgeAssurance<S> {
const NSID: &'static str = "app.bsky.unspecced.initAgeAssurance";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = InitAgeAssuranceResponse;
}
pub struct InitAgeAssuranceRequest;
impl jacquard_common::xrpc::XrpcEndpoint for InitAgeAssuranceRequest {
const PATH: &'static str = "/xrpc/app.bsky.unspecced.initAgeAssurance";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = InitAgeAssurance<S>;
type Response = InitAgeAssuranceResponse;
}