#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::app_rocksky::scrobble::ScrobbleViewBasic;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetScrobbles<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub did: Option<AtIdentifier<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub following: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i64>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetScrobblesOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub scrobbles: Option<Vec<ScrobbleViewBasic<'a>>>,
}
pub struct GetScrobblesResponse;
impl jacquard_common::xrpc::XrpcResp for GetScrobblesResponse {
const NSID: &'static str = "app.rocksky.scrobble.getScrobbles";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetScrobblesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetScrobbles<'a> {
const NSID: &'static str = "app.rocksky.scrobble.getScrobbles";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetScrobblesResponse;
}
pub struct GetScrobblesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetScrobblesRequest {
const PATH: &'static str = "/xrpc/app.rocksky.scrobble.getScrobbles";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetScrobbles<'de>;
type Response = GetScrobblesResponse;
}
pub mod get_scrobbles_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetScrobblesBuilder<'a, S: get_scrobbles_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>, Option<bool>, Option<i64>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetScrobbles<'a> {
pub fn new() -> GetScrobblesBuilder<'a, get_scrobbles_state::Empty> {
GetScrobblesBuilder::new()
}
}
impl<'a> GetScrobblesBuilder<'a, get_scrobbles_state::Empty> {
pub fn new() -> Self {
GetScrobblesBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_scrobbles_state::State> GetScrobblesBuilder<'a, S> {
pub fn did(mut self, value: impl Into<Option<AtIdentifier<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_did(mut self, value: Option<AtIdentifier<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: get_scrobbles_state::State> GetScrobblesBuilder<'a, S> {
pub fn following(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_following(mut self, value: Option<bool>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_scrobbles_state::State> GetScrobblesBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: get_scrobbles_state::State> GetScrobblesBuilder<'a, S> {
pub fn offset(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_offset(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> GetScrobblesBuilder<'a, S>
where
S: get_scrobbles_state::State,
{
pub fn build(self) -> GetScrobbles<'a> {
GetScrobbles {
did: self._fields.0,
following: self._fields.1,
limit: self._fields.2,
offset: self._fields.3,
}
}
}