#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_bsky::graph::StarterPackView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStarterPack<S: BosStr = DefaultStr> {
pub starter_pack: AtUri<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStarterPackOutput<S: BosStr = DefaultStr> {
pub starter_pack: StarterPackView<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetStarterPackResponse;
impl jacquard_common::xrpc::XrpcResp for GetStarterPackResponse {
const NSID: &'static str = "app.bsky.graph.getStarterPack";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStarterPackOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetStarterPack<S> {
const NSID: &'static str = "app.bsky.graph.getStarterPack";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStarterPackResponse;
}
pub struct GetStarterPackRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStarterPackRequest {
const PATH: &'static str = "/xrpc/app.bsky.graph.getStarterPack";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetStarterPack<S>;
type Response = GetStarterPackResponse;
}
pub mod get_starter_pack_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type StarterPack;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type StarterPack = Unset;
}
pub struct SetStarterPack<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStarterPack<St> {}
impl<St: State> State for SetStarterPack<St> {
type StarterPack = Set<members::starter_pack>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct starter_pack(());
}
}
pub struct GetStarterPackBuilder<S: BosStr, St: get_starter_pack_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetStarterPack<S> {
pub fn new() -> GetStarterPackBuilder<S, get_starter_pack_state::Empty> {
GetStarterPackBuilder::new()
}
}
impl<S: BosStr> GetStarterPackBuilder<S, get_starter_pack_state::Empty> {
pub fn new() -> Self {
GetStarterPackBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStarterPackBuilder<S, St>
where
St: get_starter_pack_state::State,
St::StarterPack: get_starter_pack_state::IsUnset,
{
pub fn starter_pack(
mut self,
value: impl Into<AtUri<S>>,
) -> GetStarterPackBuilder<S, get_starter_pack_state::SetStarterPack<St>> {
self._fields.0 = Option::Some(value.into());
GetStarterPackBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetStarterPackBuilder<S, St>
where
St: get_starter_pack_state::State,
St::StarterPack: get_starter_pack_state::IsSet,
{
pub fn build(self) -> GetStarterPack<S> {
GetStarterPack {
starter_pack: self._fields.0.unwrap(),
}
}
}