jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.report.getLiveStats
//
// 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;
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> {
    ///Statistics for the requested filter.
    pub stats: LiveStats<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.getLiveStats` query.

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

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

Path: `/xrpc/tools.ozone.report.getLiveStats`. The request payload type is `GetLiveStats<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
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 {}
    }
    /// 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 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> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> GetLiveStatsBuilder<get_live_stats_state::Empty, DefaultStr> {
        GetLiveStatsBuilder::new()
    }
}

impl<S: BosStr> GetLiveStats<S> {
    /// Create a new builder for this type
    pub fn builder() -> GetLiveStatsBuilder<get_live_stats_state::Empty, S> {
        GetLiveStatsBuilder::builder()
    }
}

impl GetLiveStatsBuilder<get_live_stats_state::Empty, DefaultStr> {
    /// Create a new builder with all fields unset, using the default string type, if needed
    pub fn new() -> Self {
        GetLiveStatsBuilder {
            _state: PhantomData,
            _fields: (None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr> GetLiveStatsBuilder<get_live_stats_state::Empty, S> {
    /// Create a new builder with all fields unset
    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> {
    /// Set the `moderatorDid` field (optional)
    pub fn moderator_did(mut self, value: impl Into<Option<Did<S>>>) -> Self {
        self._fields.0 = 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.0 = value;
        self
    }
}

impl<St: get_live_stats_state::State, S: BosStr> GetLiveStatsBuilder<St, S> {
    /// Set the `queueId` field (optional)
    pub fn queue_id(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.1 = 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.1 = value;
        self
    }
}

impl<St: get_live_stats_state::State, S: BosStr> GetLiveStatsBuilder<St, S> {
    /// Set the `reportTypes` field (optional)
    pub fn report_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
        self._fields.2 = 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.2 = value;
        self
    }
}

impl<St, S: BosStr> GetLiveStatsBuilder<St, S>
where
    St: get_live_stats_state::State,
{
    /// Build the final struct.
    pub fn build(self) -> GetLiveStats<S> {
        GetLiveStats {
            moderator_did: self._fields.0,
            queue_id: self._fields.1,
            report_types: self._fields.2,
        }
    }
}