#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStatsOutput<S: BosStr = DefaultStr> {
pub total_games: i64,
pub total_reviews: i64,
pub total_studios: i64,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct GetStats;
pub struct GetStatsResponse;
impl jacquard_common::xrpc::XrpcResp for GetStatsResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.getStats";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStatsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl jacquard_common::xrpc::XrpcRequest for GetStats {
const NSID: &'static str = "games.gamesgamesgamesgames.getStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStatsResponse;
}
pub struct GetStatsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStatsRequest {
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.getStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetStats;
type Response = GetStatsResponse;
}