#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_rocksky::scrobble::ScrobbleViewBasic;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::ident::AtIdentifier;
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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetScrobbles<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<AtIdentifier<S>>,
#[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>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetScrobblesOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub scrobbles: Option<Vec<ScrobbleViewBasic<S>>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
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<S: BosStr> = GetScrobblesOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetScrobbles<S> {
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<S: BosStr> = GetScrobbles<S>;
type Response = GetScrobblesResponse;
}
pub mod get_scrobbles_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 GetScrobblesBuilder<S: BosStr, St: get_scrobbles_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<AtIdentifier<S>>,
Option<bool>,
Option<i64>,
Option<i64>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetScrobbles<S> {
pub fn new() -> GetScrobblesBuilder<S, get_scrobbles_state::Empty> {
GetScrobblesBuilder::new()
}
}
impl<S: BosStr> GetScrobblesBuilder<S, get_scrobbles_state::Empty> {
pub fn new() -> Self {
GetScrobblesBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_scrobbles_state::State> GetScrobblesBuilder<S, St> {
pub fn did(mut self, value: impl Into<Option<AtIdentifier<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_did(mut self, value: Option<AtIdentifier<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: get_scrobbles_state::State> GetScrobblesBuilder<S, St> {
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<S: BosStr, St: get_scrobbles_state::State> GetScrobblesBuilder<S, St> {
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<S: BosStr, St: get_scrobbles_state::State> GetScrobblesBuilder<S, St> {
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<S: BosStr, St> GetScrobblesBuilder<S, St>
where
St: get_scrobbles_state::State,
{
pub fn build(self) -> GetScrobbles<S> {
GetScrobbles {
did: self._fields.0,
following: self._fields.1,
limit: self._fields.2,
offset: self._fields.3,
}
}
}