#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::games_gamesgamesgamesgames::GameFeedViewItem;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetGameFeed<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub feed: AtUri<'a>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetGameFeedOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub feed: Vec<GameFeedViewItem<'a>>,
}
#[open_union]
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetGameFeedError<'a> {
#[serde(rename = "UnknownFeed")]
UnknownFeed(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetGameFeedError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::UnknownFeed(msg) => {
write!(f, "UnknownFeed")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetGameFeedResponse;
impl jacquard_common::xrpc::XrpcResp for GetGameFeedResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.feed.getGameFeed";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetGameFeedOutput<'de>;
type Err<'de> = GetGameFeedError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetGameFeed<'a> {
const NSID: &'static str = "games.gamesgamesgamesgames.feed.getGameFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetGameFeedResponse;
}
pub struct GetGameFeedRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetGameFeedRequest {
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.feed.getGameFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetGameFeed<'de>;
type Response = GetGameFeedResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_game_feed_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 Feed;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Feed = Unset;
}
pub struct SetFeed<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetFeed<S> {}
impl<S: State> State for SetFeed<S> {
type Feed = Set<members::feed>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct feed(());
}
}
pub struct GetGameFeedBuilder<'a, S: get_game_feed_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<AtUri<'a>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetGameFeed<'a> {
pub fn new() -> GetGameFeedBuilder<'a, get_game_feed_state::Empty> {
GetGameFeedBuilder::new()
}
}
impl<'a> GetGameFeedBuilder<'a, get_game_feed_state::Empty> {
pub fn new() -> Self {
GetGameFeedBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_game_feed_state::State> GetGameFeedBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> GetGameFeedBuilder<'a, S>
where
S: get_game_feed_state::State,
S::Feed: get_game_feed_state::IsUnset,
{
pub fn feed(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetGameFeedBuilder<'a, get_game_feed_state::SetFeed<S>> {
self._fields.1 = Option::Some(value.into());
GetGameFeedBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_game_feed_state::State> GetGameFeedBuilder<'a, 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<'a, S> GetGameFeedBuilder<'a, S>
where
S: get_game_feed_state::State,
S::Feed: get_game_feed_state::IsSet,
{
pub fn build(self) -> GetGameFeed<'a> {
GetGameFeed {
cursor: self._fields.0,
feed: self._fields.1.unwrap(),
limit: self._fields.2,
}
}
}