#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_rocksky::scrobble::ScrobbleViewDetailed;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
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 GetScrobble<S: BosStr = DefaultStr> {
pub uri: AtUri<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetScrobbleOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: ScrobbleViewDetailed<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetScrobbleResponse;
impl jacquard_common::xrpc::XrpcResp for GetScrobbleResponse {
const NSID: &'static str = "app.rocksky.scrobble.getScrobble";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetScrobbleOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetScrobble<S> {
const NSID: &'static str = "app.rocksky.scrobble.getScrobble";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetScrobbleResponse;
}
pub struct GetScrobbleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetScrobbleRequest {
const PATH: &'static str = "/xrpc/app.rocksky.scrobble.getScrobble";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetScrobble<S>;
type Response = GetScrobbleResponse;
}
pub mod get_scrobble_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 {
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct GetScrobbleBuilder<S: BosStr, St: get_scrobble_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetScrobble<S> {
pub fn new() -> GetScrobbleBuilder<S, get_scrobble_state::Empty> {
GetScrobbleBuilder::new()
}
}
impl<S: BosStr> GetScrobbleBuilder<S, get_scrobble_state::Empty> {
pub fn new() -> Self {
GetScrobbleBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetScrobbleBuilder<S, St>
where
St: get_scrobble_state::State,
St::Uri: get_scrobble_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> GetScrobbleBuilder<S, get_scrobble_state::SetUri<St>> {
self._fields.0 = Option::Some(value.into());
GetScrobbleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetScrobbleBuilder<S, St>
where
St: get_scrobble_state::State,
St::Uri: get_scrobble_state::IsSet,
{
pub fn build(self) -> GetScrobble<S> {
GetScrobble {
uri: self._fields.0.unwrap(),
}
}
}