#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::string::AtUri;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::charts::ChartsView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetScrobblesChart<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub albumuri: Option<AtUri<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub artisturi: Option<AtUri<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub did: Option<AtIdentifier<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub genre: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub songuri: Option<AtUri<'a>>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetScrobblesChartOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: ChartsView<'a>,
}
pub struct GetScrobblesChartResponse;
impl jacquard_common::xrpc::XrpcResp for GetScrobblesChartResponse {
const NSID: &'static str = "app.rocksky.charts.getScrobblesChart";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetScrobblesChartOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetScrobblesChart<'a> {
const NSID: &'static str = "app.rocksky.charts.getScrobblesChart";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetScrobblesChartResponse;
}
pub struct GetScrobblesChartRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetScrobblesChartRequest {
const PATH: &'static str = "/xrpc/app.rocksky.charts.getScrobblesChart";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetScrobblesChart<'de>;
type Response = GetScrobblesChartResponse;
}
pub mod get_scrobbles_chart_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 GetScrobblesChartBuilder<'a, S: get_scrobbles_chart_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<AtUri<'a>>,
Option<AtUri<'a>>,
Option<AtIdentifier<'a>>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetScrobblesChart<'a> {
pub fn new() -> GetScrobblesChartBuilder<'a, get_scrobbles_chart_state::Empty> {
GetScrobblesChartBuilder::new()
}
}
impl<'a> GetScrobblesChartBuilder<'a, get_scrobbles_chart_state::Empty> {
pub fn new() -> Self {
GetScrobblesChartBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
pub fn albumuri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_albumuri(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
pub fn artisturi(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_artisturi(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
pub fn did(mut self, value: impl Into<Option<AtIdentifier<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_did(mut self, value: Option<AtIdentifier<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
pub fn genre(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_genre(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
pub fn songuri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_songuri(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> GetScrobblesChartBuilder<'a, S>
where
S: get_scrobbles_chart_state::State,
{
pub fn build(self) -> GetScrobblesChart<'a> {
GetScrobblesChart {
albumuri: self._fields.0,
artisturi: self._fields.1,
did: self._fields.2,
genre: self._fields.3,
songuri: self._fields.4,
}
}
}