jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.ageassurance.begin
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::ageassurance::State;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Begin<'a> {
    ///An ISO 3166-1 alpha-2 code of the user's location.
    #[serde(borrow)]
    pub country_code: CowStr<'a>,
    ///The user's email address to receive Age Assurance instructions.
    #[serde(borrow)]
    pub email: CowStr<'a>,
    ///The user's preferred language for communication during the Age Assurance process.
    #[serde(borrow)]
    pub language: CowStr<'a>,
    ///An optional ISO 3166-2 code of the user's region or state within the country.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub region_code: Option<CowStr<'a>>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BeginOutput<'a> {
    #[serde(flatten)]
    #[serde(borrow)]
    pub value: State<'a>,
}


#[open_union]
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    IntoStatic
)]

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum BeginError<'a> {
    #[serde(rename = "InvalidEmail")]
    InvalidEmail(Option<CowStr<'a>>),
    #[serde(rename = "DidTooLong")]
    DidTooLong(Option<CowStr<'a>>),
    #[serde(rename = "InvalidInitiation")]
    InvalidInitiation(Option<CowStr<'a>>),
    #[serde(rename = "RegionNotSupported")]
    RegionNotSupported(Option<CowStr<'a>>),
}

impl core::fmt::Display for BeginError<'_> {
    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::RegionNotSupported(msg) => {
                write!(f, "RegionNotSupported")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for app.bsky.ageassurance.begin
pub struct BeginResponse;
impl jacquard_common::xrpc::XrpcResp for BeginResponse {
    const NSID: &'static str = "app.bsky.ageassurance.begin";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = BeginOutput<'de>;
    type Err<'de> = BeginError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for Begin<'a> {
    const NSID: &'static str = "app.bsky.ageassurance.begin";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = BeginResponse;
}

/// Endpoint type for app.bsky.ageassurance.begin
pub struct BeginRequest;
impl jacquard_common::xrpc::XrpcEndpoint for BeginRequest {
    const PATH: &'static str = "/xrpc/app.bsky.ageassurance.begin";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = Begin<'de>;
    type Response = BeginResponse;
}