#[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::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::labeler::LabelerView;
use crate::app_bsky::labeler::LabelerViewDetailed;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetServices<S: BosStr = DefaultStr> {
#[serde(default = "_default_detailed")]
#[serde(skip_serializing_if = "Option::is_none")]
pub detailed: Option<bool>,
pub dids: Vec<Did<S>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetServicesOutput<S: BosStr = DefaultStr> {
pub views: Vec<GetServicesOutputViewsItem<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum GetServicesOutputViewsItem<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.labeler.defs#labelerView")]
LabelerView(Box<LabelerView<S>>),
#[serde(rename = "app.bsky.labeler.defs#labelerViewDetailed")]
LabelerViewDetailed(Box<LabelerViewDetailed<S>>),
}
pub struct GetServicesResponse;
impl jacquard_common::xrpc::XrpcResp for GetServicesResponse {
const NSID: &'static str = "app.bsky.labeler.getServices";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetServicesOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetServices<S> {
const NSID: &'static str = "app.bsky.labeler.getServices";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetServicesResponse;
}
pub struct GetServicesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetServicesRequest {
const PATH: &'static str = "/xrpc/app.bsky.labeler.getServices";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetServices<S>;
type Response = GetServicesResponse;
}
fn _default_detailed() -> Option<bool> {
Some(false)
}
pub mod get_services_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 Dids;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Dids = Unset;
}
pub struct SetDids<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDids<St> {}
impl<St: State> State for SetDids<St> {
type Dids = Set<members::dids>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct dids(());
}
}
pub struct GetServicesBuilder<S: BosStr, St: get_services_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<bool>, Option<Vec<Did<S>>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetServices<S> {
pub fn new() -> GetServicesBuilder<S, get_services_state::Empty> {
GetServicesBuilder::new()
}
}
impl<S: BosStr> GetServicesBuilder<S, get_services_state::Empty> {
pub fn new() -> Self {
GetServicesBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_services_state::State> GetServicesBuilder<S, St> {
pub fn detailed(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_detailed(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> GetServicesBuilder<S, St>
where
St: get_services_state::State,
St::Dids: get_services_state::IsUnset,
{
pub fn dids(
mut self,
value: impl Into<Vec<Did<S>>>,
) -> GetServicesBuilder<S, get_services_state::SetDids<St>> {
self._fields.1 = Option::Some(value.into());
GetServicesBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetServicesBuilder<S, St>
where
St: get_services_state::State,
St::Dids: get_services_state::IsSet,
{
pub fn build(self) -> GetServices<S> {
GetServices {
detailed: self._fields.0,
dids: self._fields.1.unwrap(),
}
}
}