jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.report.getHistoricalStats
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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>,
    /// Defaults to `30`. Min: 1. Max: 100.
    #[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>>>,
}

/** Response marker for the `tools.ozone.report.getHistoricalStats` query.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `GetHistoricalStatsOutput<S>` for this endpoint.*/
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;
}

/** Endpoint marker for the `tools.ozone.report.getHistoricalStats` query.

Path: `/xrpc/tools.ozone.report.getHistoricalStats`. The request payload type is `GetHistoricalStats<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

/// Builder for constructing an instance of this type.
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> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> GetHistoricalStatsBuilder<
        get_historical_stats_state::Empty,
        DefaultStr,
    > {
        GetHistoricalStatsBuilder::new()
    }
}

impl<S: BosStr> GetHistoricalStats<S> {
    /// Create a new builder for this type
    pub fn builder() -> GetHistoricalStatsBuilder<get_historical_stats_state::Empty, S> {
        GetHistoricalStatsBuilder::builder()
    }
}

impl GetHistoricalStatsBuilder<get_historical_stats_state::Empty, DefaultStr> {
    /// Create a new builder with all fields unset, using the default string type, if needed
    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> {
    /// Create a new builder with all fields unset
    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> {
    /// Set the `cursor` field (optional)
    pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `cursor` field to an Option value (optional)
    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> {
    /// Set the `endDate` field (optional)
    pub fn end_date(mut self, value: impl Into<Option<Datetime>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `endDate` field to an Option value (optional)
    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> {
    /// Set the `limit` field (optional)
    pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `limit` field to an Option value (optional)
    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> {
    /// Set the `moderatorDid` field (optional)
    pub fn moderator_did(mut self, value: impl Into<Option<Did<S>>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `moderatorDid` field to an Option value (optional)
    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> {
    /// Set the `queueId` field (optional)
    pub fn queue_id(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `queueId` field to an Option value (optional)
    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> {
    /// Set the `reportTypes` field (optional)
    pub fn report_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
        self._fields.5 = value.into();
        self
    }
    /// Set the `reportTypes` field to an Option value (optional)
    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> {
    /// Set the `startDate` field (optional)
    pub fn start_date(mut self, value: impl Into<Option<Datetime>>) -> Self {
        self._fields.6 = value.into();
        self
    }
    /// Set the `startDate` field to an Option value (optional)
    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,
{
    /// Build the final struct.
    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,
        }
    }
}