jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.labeler.getServices
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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> {
    /// Defaults to `false`.
    #[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>>),
}

/// Response type for app.bsky.labeler.getServices
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;
}

/// Endpoint type for app.bsky.labeler.getServices
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Dids;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Dids = Unset;
    }
    ///State transition - sets the `dids` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `dids` field
        pub struct dids(());
    }
}

/// Builder for constructing an instance of this type
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> {
    /// Create a new builder for this type
    pub fn new() -> GetServicesBuilder<'a, get_services_state::Empty> {
        GetServicesBuilder::new()
    }
}

impl<'a> GetServicesBuilder<'a, get_services_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        GetServicesBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: get_services_state::State> GetServicesBuilder<'a, S> {
    /// Set the `detailed` field (optional)
    pub fn detailed(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `detailed` field to an Option value (optional)
    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,
{
    /// Set the `dids` field (required)
    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,
{
    /// Build the final struct
    pub fn build(self) -> GetServices<'a> {
        GetServices {
            detailed: self._fields.0,
            dids: self._fields.1.unwrap(),
        }
    }
}