#[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::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::tools_ozone::report::LiveStats;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetLiveStats<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub moderator_did: Option<Did<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub queue_id: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub report_types: Option<Vec<S>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetLiveStatsOutput<S: BosStr = DefaultStr> {
pub stats: LiveStats<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetLiveStatsResponse;
impl jacquard_common::xrpc::XrpcResp for GetLiveStatsResponse {
const NSID: &'static str = "tools.ozone.report.getLiveStats";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetLiveStatsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetLiveStats<S> {
const NSID: &'static str = "tools.ozone.report.getLiveStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetLiveStatsResponse;
}
pub struct GetLiveStatsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetLiveStatsRequest {
const PATH: &'static str = "/xrpc/tools.ozone.report.getLiveStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetLiveStats<S>;
type Response = GetLiveStatsResponse;
}
pub mod get_live_stats_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetLiveStatsBuilder<St: get_live_stats_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<i64>, Option<Vec<S>>),
_type: PhantomData<fn() -> S>,
}
impl GetLiveStats<DefaultStr> {
pub fn new() -> GetLiveStatsBuilder<get_live_stats_state::Empty, DefaultStr> {
GetLiveStatsBuilder::new()
}
}
impl<S: BosStr> GetLiveStats<S> {
pub fn builder() -> GetLiveStatsBuilder<get_live_stats_state::Empty, S> {
GetLiveStatsBuilder::builder()
}
}
impl GetLiveStatsBuilder<get_live_stats_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetLiveStatsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetLiveStatsBuilder<get_live_stats_state::Empty, S> {
pub fn builder() -> Self {
GetLiveStatsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_live_stats_state::State, S: BosStr> GetLiveStatsBuilder<St, S> {
pub fn moderator_did(mut self, value: impl Into<Option<Did<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_moderator_did(mut self, value: Option<Did<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: get_live_stats_state::State, S: BosStr> GetLiveStatsBuilder<St, S> {
pub fn queue_id(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_queue_id(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: get_live_stats_state::State, S: BosStr> GetLiveStatsBuilder<St, S> {
pub fn report_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_report_types(mut self, value: Option<Vec<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> GetLiveStatsBuilder<St, S>
where
St: get_live_stats_state::State,
{
pub fn build(self) -> GetLiveStats<S> {
GetLiveStats {
moderator_did: self._fields.0,
queue_id: self._fields.1,
report_types: self._fields.2,
}
}
}