#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::com_shinolabs::pinksea::app_view_defs::HydratedOekaki;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Datetime;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecent {
#[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>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetRecentOutput<S: BosStr = DefaultStr> {
pub oekaki: Vec<HydratedOekaki<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetRecentResponse;
impl jacquard_common::xrpc::XrpcResp for GetRecentResponse {
const NSID: &'static str = "com.shinolabs.pinksea.getRecent";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetRecentOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl jacquard_common::xrpc::XrpcRequest for GetRecent {
const NSID: &'static str = "com.shinolabs.pinksea.getRecent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetRecentResponse;
}
pub struct GetRecentRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRecentRequest {
const PATH: &'static str = "/xrpc/com.shinolabs.pinksea.getRecent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetRecent;
type Response = GetRecentResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_recent_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetRecentBuilder<St: get_recent_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<Datetime>),
}
impl GetRecent {
pub fn new() -> GetRecentBuilder<get_recent_state::Empty> {
GetRecentBuilder::new()
}
}
impl GetRecentBuilder<get_recent_state::Empty> {
pub fn new() -> Self {
GetRecentBuilder {
_state: PhantomData,
_fields: (None, None),
}
}
}
impl<St: get_recent_state::State> GetRecentBuilder<St> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: get_recent_state::State> GetRecentBuilder<St> {
pub fn since(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_since(mut self, value: Option<Datetime>) -> Self {
self._fields.1 = value;
self
}
}
impl<St> GetRecentBuilder<St>
where
St: get_recent_state::State,
{
pub fn build(self) -> GetRecent {
GetRecent {
limit: self._fields.0,
since: self._fields.1,
}
}
}