jacquard-api 0.12.0-beta.2

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;

use crate::app_bsky::labeler::LabelerView;
use crate::app_bsky::labeler::LabelerViewDetailed;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetServices<S: BosStr = DefaultStr> {
    /// Defaults to `false`.
    #[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>>),
}

/// 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<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;
}

/// 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<S: BosStr> = GetServices<S>;
    type Response = GetServicesResponse;
}

fn _default_detailed() -> Option<bool> {
    Some(false)
}

pub mod get_services_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[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<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>;
    }
    /// 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<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> {
    /// Create a new builder for this type.
    pub fn new() -> GetServicesBuilder<S, get_services_state::Empty> {
        GetServicesBuilder::new()
    }
}

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

impl<S: BosStr, St: get_services_state::State> GetServicesBuilder<S, St> {
    /// 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<S: BosStr, St> GetServicesBuilder<S, St>
where
    St: get_services_state::State,
    St::Dids: get_services_state::IsUnset,
{
    /// Set the `dids` field (required)
    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,
{
    /// Build the final struct.
    pub fn build(self) -> GetServices<S> {
        GetServices {
            detailed: self._fields.0,
            dids: self._fields.1.unwrap(),
        }
    }
}