// @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. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::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: jacquard_common::CowStr<'a>, /// The user's email address to receive Age Assurance instructions. #[serde(borrow)] pub email: jacquard_common::CowStr<'a>, /// The user's preferred language for communication during the Age Assurance process. #[serde(borrow)] pub language: jacquard_common::CowStr<'a>, /// An optional ISO 3166-2 code of the user's region or state within the country. #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub region_code: std::option::Option>, } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct BeginOutput<'a> { #[serde(flatten)] #[serde(borrow)] pub value: crate::app_bsky::ageassurance::State<'a>, } #[jacquard_derive::open_union] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic, jacquard_derive::IntoStatic )] #[serde(tag = "error", content = "message")] #[serde(bound(deserialize = "'de: 'a"))] pub enum BeginError<'a> { #[serde(rename = "InvalidEmail")] InvalidEmail(std::option::Option>), #[serde(rename = "DidTooLong")] DidTooLong(std::option::Option>), #[serde(rename = "InvalidInitiation")] InvalidInitiation(std::option::Option>), #[serde(rename = "RegionNotSupported")] RegionNotSupported(std::option::Option>), } 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; }