jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.moderation.getRecords
//
// 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::AtUri;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::tools_ozone::moderation::RecordViewDetail;
use crate::tools_ozone::moderation::RecordViewNotFound;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecords<'a> {
    #[serde(borrow)]
    pub uris: Vec<AtUri<'a>>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecordsOutput<'a> {
    #[serde(borrow)]
    pub records: Vec<GetRecordsOutputRecordsItem<'a>>,
}


#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetRecordsOutputRecordsItem<'a> {
    #[serde(rename = "tools.ozone.moderation.defs#recordViewDetail")]
    RecordViewDetail(Box<RecordViewDetail<'a>>),
    #[serde(rename = "tools.ozone.moderation.defs#recordViewNotFound")]
    RecordViewNotFound(Box<RecordViewNotFound<'a>>),
}

/// Response type for tools.ozone.moderation.getRecords
pub struct GetRecordsResponse;
impl jacquard_common::xrpc::XrpcResp for GetRecordsResponse {
    const NSID: &'static str = "tools.ozone.moderation.getRecords";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetRecordsOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GetRecords<'a> {
    const NSID: &'static str = "tools.ozone.moderation.getRecords";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetRecordsResponse;
}

/// Endpoint type for tools.ozone.moderation.getRecords
pub struct GetRecordsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRecordsRequest {
    const PATH: &'static str = "/xrpc/tools.ozone.moderation.getRecords";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetRecords<'de>;
    type Response = GetRecordsResponse;
}

pub mod get_records_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 Uris;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Uris = Unset;
    }
    ///State transition - sets the `uris` field to Set
    pub struct SetUris<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetUris<S> {}
    impl<S: State> State for SetUris<S> {
        type Uris = Set<members::uris>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `uris` field
        pub struct uris(());
    }
}

/// Builder for constructing an instance of this type
pub struct GetRecordsBuilder<'a, S: get_records_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<Vec<AtUri<'a>>>,),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> GetRecords<'a> {
    /// Create a new builder for this type
    pub fn new() -> GetRecordsBuilder<'a, get_records_state::Empty> {
        GetRecordsBuilder::new()
    }
}

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

impl<'a, S> GetRecordsBuilder<'a, S>
where
    S: get_records_state::State,
    S::Uris: get_records_state::IsUnset,
{
    /// Set the `uris` field (required)
    pub fn uris(
        mut self,
        value: impl Into<Vec<AtUri<'a>>>,
    ) -> GetRecordsBuilder<'a, get_records_state::SetUris<S>> {
        self._fields.0 = Option::Some(value.into());
        GetRecordsBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> GetRecordsBuilder<'a, S>
where
    S: get_records_state::State,
    S::Uris: get_records_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> GetRecords<'a> {
        GetRecords {
            uris: self._fields.0.unwrap(),
        }
    }
}