#[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 GetAuthorFeed<'a> {
#[serde(borrow)]
pub did: AtIdentifier<'a>,
#[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 GetAuthorFeedOutput<'a> {
#[serde(borrow)]
pub oekaki: Vec<HydratedOekaki<'a>>,
}
pub struct GetAuthorFeedResponse;
impl jacquard_common::xrpc::XrpcResp for GetAuthorFeedResponse {
const NSID: &'static str = "com.shinolabs.pinksea.getAuthorFeed";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetAuthorFeedOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetAuthorFeed<'a> {
const NSID: &'static str = "com.shinolabs.pinksea.getAuthorFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetAuthorFeedResponse;
}
pub struct GetAuthorFeedRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetAuthorFeedRequest {
const PATH: &'static str = "/xrpc/com.shinolabs.pinksea.getAuthorFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetAuthorFeed<'de>;
type Response = GetAuthorFeedResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_author_feed_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 Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
}
}
pub struct GetAuthorFeedBuilder<'a, S: get_author_feed_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>, Option<i64>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetAuthorFeed<'a> {
pub fn new() -> GetAuthorFeedBuilder<'a, get_author_feed_state::Empty> {
GetAuthorFeedBuilder::new()
}
}
impl<'a> GetAuthorFeedBuilder<'a, get_author_feed_state::Empty> {
pub fn new() -> Self {
GetAuthorFeedBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetAuthorFeedBuilder<'a, S>
where
S: get_author_feed_state::State,
S::Did: get_author_feed_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> GetAuthorFeedBuilder<'a, get_author_feed_state::SetDid<S>> {
self._fields.0 = Option::Some(value.into());
GetAuthorFeedBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_author_feed_state::State> GetAuthorFeedBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_author_feed_state::State> GetAuthorFeedBuilder<'a, S> {
pub fn since(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_since(mut self, value: Option<Datetime>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> GetAuthorFeedBuilder<'a, S>
where
S: get_author_feed_state::State,
S::Did: get_author_feed_state::IsSet,
{
pub fn build(self) -> GetAuthorFeed<'a> {
GetAuthorFeed {
did: self._fields.0.unwrap(),
limit: self._fields.1,
since: self._fields.2,
}
}
}