jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.shinolabs.pinksea.getAuthorReplies
//
// 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::ident::AtIdentifier;
use jacquard_common::types::string::Datetime;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::com_shinolabs::pinksea::app_view_defs::HydratedOekaki;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetAuthorReplies<'a> {
    #[serde(borrow)]
    pub did: AtIdentifier<'a>,
    ///Defaults to `50`. Min: 1. Max: 50.
    #[serde(default = "_default_limit")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub since: Option<Datetime>,
}


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

/// Response type for com.shinolabs.pinksea.getAuthorReplies
pub struct GetAuthorRepliesResponse;
impl jacquard_common::xrpc::XrpcResp for GetAuthorRepliesResponse {
    const NSID: &'static str = "com.shinolabs.pinksea.getAuthorReplies";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetAuthorRepliesOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GetAuthorReplies<'a> {
    const NSID: &'static str = "com.shinolabs.pinksea.getAuthorReplies";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetAuthorRepliesResponse;
}

/// Endpoint type for com.shinolabs.pinksea.getAuthorReplies
pub struct GetAuthorRepliesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetAuthorRepliesRequest {
    const PATH: &'static str = "/xrpc/com.shinolabs.pinksea.getAuthorReplies";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetAuthorReplies<'de>;
    type Response = GetAuthorRepliesResponse;
}

fn _default_limit() -> Option<i64> {
    Some(50i64)
}

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

/// Builder for constructing an instance of this type
pub struct GetAuthorRepliesBuilder<'a, S: get_author_replies_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<AtIdentifier<'a>>, Option<i64>, Option<Datetime>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> GetAuthorReplies<'a> {
    /// Create a new builder for this type
    pub fn new() -> GetAuthorRepliesBuilder<'a, get_author_replies_state::Empty> {
        GetAuthorRepliesBuilder::new()
    }
}

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

impl<'a, S> GetAuthorRepliesBuilder<'a, S>
where
    S: get_author_replies_state::State,
    S::Did: get_author_replies_state::IsUnset,
{
    /// Set the `did` field (required)
    pub fn did(
        mut self,
        value: impl Into<AtIdentifier<'a>>,
    ) -> GetAuthorRepliesBuilder<'a, get_author_replies_state::SetDid<S>> {
        self._fields.0 = Option::Some(value.into());
        GetAuthorRepliesBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: get_author_replies_state::State> GetAuthorRepliesBuilder<'a, S> {
    /// Set the `limit` field (optional)
    pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `limit` field to an Option value (optional)
    pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S: get_author_replies_state::State> GetAuthorRepliesBuilder<'a, S> {
    /// Set the `since` field (optional)
    pub fn since(mut self, value: impl Into<Option<Datetime>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `since` field to an Option value (optional)
    pub fn maybe_since(mut self, value: Option<Datetime>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S> GetAuthorRepliesBuilder<'a, S>
where
    S: get_author_replies_state::State,
    S::Did: get_author_replies_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> GetAuthorReplies<'a> {
        GetAuthorReplies {
            did: self._fields.0.unwrap(),
            limit: self._fields.1,
            since: self._fields.2,
        }
    }
}