#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon, 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")]
pub struct GetServices<'a> {
#[serde(default = "_default_detailed")]
#[serde(skip_serializing_if = "Option::is_none")]
pub detailed: Option<bool>,
#[serde(borrow)]
pub dids: Vec<Did<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetServicesOutput<'a> {
#[serde(borrow)]
pub views: Vec<GetServicesOutputViewsItem<'a>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum GetServicesOutputViewsItem<'a> {
#[serde(rename = "app.bsky.labeler.defs#labelerView")]
LabelerView(Box<LabelerView<'a>>),
#[serde(rename = "app.bsky.labeler.defs#labelerViewDetailed")]
LabelerViewDetailed(Box<LabelerViewDetailed<'a>>),
}
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<'de> = GetServicesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetServices<'a> {
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<'de> = GetServices<'de>;
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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDids<S> {}
impl<S: State> State for SetDids<S> {
type Dids = Set<members::dids>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct dids(());
}
}
pub struct GetServicesBuilder<'a, S: get_services_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<bool>, Option<Vec<Did<'a>>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetServices<'a> {
pub fn new() -> GetServicesBuilder<'a, get_services_state::Empty> {
GetServicesBuilder::new()
}
}
impl<'a> GetServicesBuilder<'a, get_services_state::Empty> {
pub fn new() -> Self {
GetServicesBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_services_state::State> GetServicesBuilder<'a, S> {
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<'a, S> GetServicesBuilder<'a, S>
where
S: get_services_state::State,
S::Dids: get_services_state::IsUnset,
{
pub fn dids(
mut self,
value: impl Into<Vec<Did<'a>>>,
) -> GetServicesBuilder<'a, get_services_state::SetDids<S>> {
self._fields.1 = Option::Some(value.into());
GetServicesBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetServicesBuilder<'a, S>
where
S: get_services_state::State,
S::Dids: get_services_state::IsSet,
{
pub fn build(self) -> GetServices<'a> {
GetServices {
detailed: self._fields.0,
dids: self._fields.1.unwrap(),
}
}
}