#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_bsky::ageassurance::State;
use crate::app_bsky::ageassurance::StateMetadata;
#[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;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetState<S: BosStr = DefaultStr> {
pub country_code: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub region_code: Option<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetStateOutput<S: BosStr = DefaultStr> {
pub metadata: StateMetadata<S>,
pub state: State<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetStateResponse;
impl jacquard_common::xrpc::XrpcResp for GetStateResponse {
const NSID: &'static str = "app.bsky.ageassurance.getState";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStateOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetState<S> {
const NSID: &'static str = "app.bsky.ageassurance.getState";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStateResponse;
}
pub struct GetStateRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStateRequest {
const PATH: &'static str = "/xrpc/app.bsky.ageassurance.getState";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetState<S>;
type Response = GetStateResponse;
}
pub mod get_state_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 CountryCode;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CountryCode = Unset;
}
pub struct SetCountryCode<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCountryCode<St> {}
impl<St: State> State for SetCountryCode<St> {
type CountryCode = Set<members::country_code>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct country_code(());
}
}
pub struct GetStateBuilder<S: BosStr, St: get_state_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetState<S> {
pub fn new() -> GetStateBuilder<S, get_state_state::Empty> {
GetStateBuilder::new()
}
}
impl<S: BosStr> GetStateBuilder<S, get_state_state::Empty> {
pub fn new() -> Self {
GetStateBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStateBuilder<S, St>
where
St: get_state_state::State,
St::CountryCode: get_state_state::IsUnset,
{
pub fn country_code(
mut self,
value: impl Into<S>,
) -> GetStateBuilder<S, get_state_state::SetCountryCode<St>> {
self._fields.0 = Option::Some(value.into());
GetStateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_state_state::State> GetStateBuilder<S, St> {
pub fn region_code(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_region_code(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> GetStateBuilder<S, St>
where
St: get_state_state::State,
St::CountryCode: get_state_state::IsSet,
{
pub fn build(self) -> GetState<S> {
GetState {
country_code: self._fields.0.unwrap(),
region_code: self._fields.1,
}
}
}