#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::fm_atradio::CommentView;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, 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 GetComments<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
pub station: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetCommentsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub items: Vec<CommentView<S>>,
pub total: i64,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetCommentsResponse;
impl jacquard_common::xrpc::XrpcResp for GetCommentsResponse {
const NSID: &'static str = "fm.atradio.getComments";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetCommentsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetComments<S> {
const NSID: &'static str = "fm.atradio.getComments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetCommentsResponse;
}
pub struct GetCommentsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetCommentsRequest {
const PATH: &'static str = "/xrpc/fm.atradio.getComments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetComments<S>;
type Response = GetCommentsResponse;
}
pub mod get_comments_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 Station;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Station = Unset;
}
pub struct SetStation<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStation<St> {}
impl<St: State> State for SetStation<St> {
type Station = Set<members::station>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct station(());
}
}
pub struct GetCommentsBuilder<St: get_comments_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<i64>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl GetComments<DefaultStr> {
pub fn new() -> GetCommentsBuilder<get_comments_state::Empty, DefaultStr> {
GetCommentsBuilder::new()
}
}
impl<S: BosStr> GetComments<S> {
pub fn builder() -> GetCommentsBuilder<get_comments_state::Empty, S> {
GetCommentsBuilder::builder()
}
}
impl GetCommentsBuilder<get_comments_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetCommentsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetCommentsBuilder<get_comments_state::Empty, S> {
pub fn builder() -> Self {
GetCommentsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_comments_state::State, S: BosStr> GetCommentsBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: get_comments_state::State, S: BosStr> GetCommentsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<St, S: BosStr> GetCommentsBuilder<St, S>
where
St: get_comments_state::State,
St::Station: get_comments_state::IsUnset,
{
pub fn station(
mut self,
value: impl Into<S>,
) -> GetCommentsBuilder<get_comments_state::SetStation<St>, S> {
self._fields.2 = Option::Some(value.into());
GetCommentsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetCommentsBuilder<St, S>
where
St: get_comments_state::State,
St::Station: get_comments_state::IsSet,
{
pub fn build(self) -> GetComments<S> {
GetComments {
cursor: self._fields.0,
limit: self._fields.1,
station: self._fields.2.unwrap(),
}
}
}