#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::fm_atradio::StationView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStations<S: BosStr = DefaultStr> {
pub actor: AtIdentifier<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub q: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub sort: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStationsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub items: Vec<StationView<S>>,
pub total: i64,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetStationsResponse;
impl jacquard_common::xrpc::XrpcResp for GetStationsResponse {
const NSID: &'static str = "fm.atradio.getStations";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStationsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetStations<S> {
const NSID: &'static str = "fm.atradio.getStations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStationsResponse;
}
pub struct GetStationsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStationsRequest {
const PATH: &'static str = "/xrpc/fm.atradio.getStations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetStations<S>;
type Response = GetStationsResponse;
}
pub mod get_stations_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 {
type Actor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Actor = Unset;
}
pub struct SetActor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetActor<St> {}
impl<St: State> State for SetActor<St> {
type Actor = Set<members::actor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct actor(());
}
}
pub struct GetStationsBuilder<St: get_stations_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<AtIdentifier<S>>,
Option<S>,
Option<i64>,
Option<S>,
Option<S>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl GetStations<DefaultStr> {
pub fn new() -> GetStationsBuilder<get_stations_state::Empty, DefaultStr> {
GetStationsBuilder::new()
}
}
impl<S: BosStr> GetStations<S> {
pub fn builder() -> GetStationsBuilder<get_stations_state::Empty, S> {
GetStationsBuilder::builder()
}
}
impl GetStationsBuilder<get_stations_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetStationsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetStationsBuilder<get_stations_state::Empty, S> {
pub fn builder() -> Self {
GetStationsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetStationsBuilder<St, S>
where
St: get_stations_state::State,
St::Actor: get_stations_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> GetStationsBuilder<get_stations_state::SetActor<St>, S> {
self._fields.0 = Option::Some(value.into());
GetStationsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: get_stations_state::State, S: BosStr> GetStationsBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: get_stations_state::State, S: BosStr> GetStationsBuilder<St, 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<St: get_stations_state::State, S: BosStr> GetStationsBuilder<St, S> {
pub fn q(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_q(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<St: get_stations_state::State, S: BosStr> GetStationsBuilder<St, S> {
pub fn sort(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_sort(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<St: get_stations_state::State, S: BosStr> GetStationsBuilder<St, S> {
pub fn source(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_source(mut self, value: Option<S>) -> Self {
self._fields.5 = value;
self
}
}
impl<St, S: BosStr> GetStationsBuilder<St, S>
where
St: get_stations_state::State,
St::Actor: get_stations_state::IsSet,
{
pub fn build(self) -> GetStations<S> {
GetStations {
actor: self._fields.0.unwrap(),
cursor: self._fields.1,
limit: self._fields.2,
q: self._fields.3,
sort: self._fields.4,
source: self._fields.5,
}
}
}