jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: chat.bsky.moderation.getMessageContext
//
// 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;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::chat_bsky::convo::DeletedMessageView;
use crate::chat_bsky::convo::MessageView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetMessageContext<'a> {
    ///Defaults to `5`.
    #[serde(default = "_default_after")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub after: Option<i64>,
    ///Defaults to `5`.
    #[serde(default = "_default_before")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub before: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub convo_id: Option<CowStr<'a>>,
    #[serde(borrow)]
    pub message_id: CowStr<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetMessageContextOutput<'a> {
    #[serde(borrow)]
    pub messages: Vec<GetMessageContextOutputMessagesItem<'a>>,
}


#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum GetMessageContextOutputMessagesItem<'a> {
    #[serde(rename = "chat.bsky.convo.defs#messageView")]
    MessageView(Box<MessageView<'a>>),
    #[serde(rename = "chat.bsky.convo.defs#deletedMessageView")]
    DeletedMessageView(Box<DeletedMessageView<'a>>),
}

/// Response type for chat.bsky.moderation.getMessageContext
pub struct GetMessageContextResponse;
impl jacquard_common::xrpc::XrpcResp for GetMessageContextResponse {
    const NSID: &'static str = "chat.bsky.moderation.getMessageContext";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetMessageContextOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GetMessageContext<'a> {
    const NSID: &'static str = "chat.bsky.moderation.getMessageContext";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetMessageContextResponse;
}

/// Endpoint type for chat.bsky.moderation.getMessageContext
pub struct GetMessageContextRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetMessageContextRequest {
    const PATH: &'static str = "/xrpc/chat.bsky.moderation.getMessageContext";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetMessageContext<'de>;
    type Response = GetMessageContextResponse;
}

fn _default_after() -> Option<i64> {
    Some(5i64)
}

fn _default_before() -> Option<i64> {
    Some(5i64)
}

pub mod get_message_context_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 {
        type MessageId;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type MessageId = Unset;
    }
    ///State transition - sets the `message_id` field to Set
    pub struct SetMessageId<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetMessageId<S> {}
    impl<S: State> State for SetMessageId<S> {
        type MessageId = Set<members::message_id>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `message_id` field
        pub struct message_id(());
    }
}

/// Builder for constructing an instance of this type
pub struct GetMessageContextBuilder<'a, S: get_message_context_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<i64>, Option<i64>, Option<CowStr<'a>>, Option<CowStr<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> GetMessageContext<'a> {
    /// Create a new builder for this type
    pub fn new() -> GetMessageContextBuilder<'a, get_message_context_state::Empty> {
        GetMessageContextBuilder::new()
    }
}

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

impl<'a, S: get_message_context_state::State> GetMessageContextBuilder<'a, S> {
    /// Set the `after` field (optional)
    pub fn after(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `after` field to an Option value (optional)
    pub fn maybe_after(mut self, value: Option<i64>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<'a, S: get_message_context_state::State> GetMessageContextBuilder<'a, S> {
    /// Set the `before` field (optional)
    pub fn before(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `before` field to an Option value (optional)
    pub fn maybe_before(mut self, value: Option<i64>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S: get_message_context_state::State> GetMessageContextBuilder<'a, S> {
    /// Set the `convoId` field (optional)
    pub fn convo_id(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `convoId` field to an Option value (optional)
    pub fn maybe_convo_id(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S> GetMessageContextBuilder<'a, S>
where
    S: get_message_context_state::State,
    S::MessageId: get_message_context_state::IsUnset,
{
    /// Set the `messageId` field (required)
    pub fn message_id(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> GetMessageContextBuilder<'a, get_message_context_state::SetMessageId<S>> {
        self._fields.3 = Option::Some(value.into());
        GetMessageContextBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> GetMessageContextBuilder<'a, S>
where
    S: get_message_context_state::State,
    S::MessageId: get_message_context_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> GetMessageContext<'a> {
        GetMessageContext {
            after: self._fields.0,
            before: self._fields.1,
            convo_id: self._fields.2,
            message_id: self._fields.3.unwrap(),
        }
    }
}