jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: chat.bsky.convo.getUnreadCounts
//
// 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::{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")]
pub struct GetUnreadCounts {
    ///  Defaults to `true`.
    #[serde(default = "_default_include_group_chats")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub include_group_chats: Option<bool>,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetUnreadCountsOutput<S: BosStr = DefaultStr> {
    ///Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at 31, where 31 means more than 30.
    pub unread_accepted_convos: i64,
    ///Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at 11, where 11 means more than 10.
    pub unread_request_convos: i64,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/** Response marker for the `chat.bsky.convo.getUnreadCounts` query.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `GetUnreadCountsOutput<S>` for this endpoint.*/
pub struct GetUnreadCountsResponse;
impl jacquard_common::xrpc::XrpcResp for GetUnreadCountsResponse {
    const NSID: &'static str = "chat.bsky.convo.getUnreadCounts";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = GetUnreadCountsOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl jacquard_common::xrpc::XrpcRequest for GetUnreadCounts {
    const NSID: &'static str = "chat.bsky.convo.getUnreadCounts";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetUnreadCountsResponse;
}

/** Endpoint marker for the `chat.bsky.convo.getUnreadCounts` query.

Path: `/xrpc/chat.bsky.convo.getUnreadCounts`. The request payload type is `GetUnreadCounts`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
pub struct GetUnreadCountsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetUnreadCountsRequest {
    const PATH: &'static str = "/xrpc/chat.bsky.convo.getUnreadCounts";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = GetUnreadCounts;
    type Response = GetUnreadCountsResponse;
}

fn _default_include_group_chats() -> Option<bool> {
    Some(true)
}

pub mod get_unread_counts_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 GetUnreadCountsBuilder<St: get_unread_counts_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<bool>,),
}

impl GetUnreadCounts {
    /// Create a new builder for this type.
    pub fn new() -> GetUnreadCountsBuilder<get_unread_counts_state::Empty> {
        GetUnreadCountsBuilder::new()
    }
}

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

impl GetUnreadCountsBuilder<get_unread_counts_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn builder() -> Self {
        GetUnreadCountsBuilder {
            _state: PhantomData,
            _fields: (None,),
        }
    }
}

impl<St: get_unread_counts_state::State> GetUnreadCountsBuilder<St> {
    /// Set the `includeGroupChats` field (optional)
    pub fn include_group_chats(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `includeGroupChats` field to an Option value (optional)
    pub fn maybe_include_group_chats(mut self, value: Option<bool>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<St> GetUnreadCountsBuilder<St>
where
    St: get_unread_counts_state::State,
{
    /// Build the final struct.
    pub fn build(self) -> GetUnreadCounts {
        GetUnreadCounts {
            include_group_chats: self._fields.0,
        }
    }
}