#[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, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::tools_ozone::report::HistoricalStats;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetHistoricalStats<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub end_date: Option<Datetime>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[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>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub start_date: Option<Datetime>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetHistoricalStatsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub stats: Vec<HistoricalStats<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetHistoricalStatsResponse;
impl jacquard_common::xrpc::XrpcResp for GetHistoricalStatsResponse {
const NSID: &'static str = "tools.ozone.report.getHistoricalStats";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetHistoricalStatsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetHistoricalStats<S> {
const NSID: &'static str = "tools.ozone.report.getHistoricalStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetHistoricalStatsResponse;
}
pub struct GetHistoricalStatsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetHistoricalStatsRequest {
const PATH: &'static str = "/xrpc/tools.ozone.report.getHistoricalStats";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetHistoricalStats<S>;
type Response = GetHistoricalStatsResponse;
}
fn _default_limit() -> Option<i64> {
Some(30i64)
}
pub mod get_historical_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 GetHistoricalStatsBuilder<
St: get_historical_stats_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<i64>,
Option<Did<S>>,
Option<i64>,
Option<Vec<S>>,
Option<Datetime>,
),
_type: PhantomData<fn() -> S>,
}
impl GetHistoricalStats<DefaultStr> {
pub fn new() -> GetHistoricalStatsBuilder<
get_historical_stats_state::Empty,
DefaultStr,
> {
GetHistoricalStatsBuilder::new()
}
}
impl<S: BosStr> GetHistoricalStats<S> {
pub fn builder() -> GetHistoricalStatsBuilder<get_historical_stats_state::Empty, S> {
GetHistoricalStatsBuilder::builder()
}
}
impl GetHistoricalStatsBuilder<get_historical_stats_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetHistoricalStatsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetHistoricalStatsBuilder<get_historical_stats_state::Empty, S> {
pub fn builder() -> Self {
GetHistoricalStatsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<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_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<St, S> {
pub fn end_date(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_end_date(mut self, value: Option<Datetime>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: get_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<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_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<St, S> {
pub fn moderator_did(mut self, value: impl Into<Option<Did<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_moderator_did(mut self, value: Option<Did<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<St: get_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<St, S> {
pub fn queue_id(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_queue_id(mut self, value: Option<i64>) -> Self {
self._fields.4 = value;
self
}
}
impl<St: get_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<St, S> {
pub fn report_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_report_types(mut self, value: Option<Vec<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<St: get_historical_stats_state::State, S: BosStr> GetHistoricalStatsBuilder<St, S> {
pub fn start_date(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_start_date(mut self, value: Option<Datetime>) -> Self {
self._fields.6 = value;
self
}
}
impl<St, S: BosStr> GetHistoricalStatsBuilder<St, S>
where
St: get_historical_stats_state::State,
{
pub fn build(self) -> GetHistoricalStats<S> {
GetHistoricalStats {
cursor: self._fields.0,
end_date: self._fields.1,
limit: self._fields.2,
moderator_did: self._fields.3,
queue_id: self._fields.4,
report_types: self._fields.5,
start_date: self._fields.6,
}
}
}