#[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 GetMessages<'a> {
#[serde(borrow)]
pub convo_id: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetMessagesOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub messages: Vec<GetMessagesOutputMessagesItem<'a>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum GetMessagesOutputMessagesItem<'a> {
#[serde(rename = "chat.bsky.convo.defs#messageView")]
MessageView(Box<MessageView<'a>>),
#[serde(rename = "chat.bsky.convo.defs#deletedMessageView")]
DeletedMessageView(Box<DeletedMessageView<'a>>),
}
pub struct GetMessagesResponse;
impl jacquard_common::xrpc::XrpcResp for GetMessagesResponse {
const NSID: &'static str = "chat.bsky.convo.getMessages";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetMessagesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetMessages<'a> {
const NSID: &'static str = "chat.bsky.convo.getMessages";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetMessagesResponse;
}
pub struct GetMessagesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetMessagesRequest {
const PATH: &'static str = "/xrpc/chat.bsky.convo.getMessages";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetMessages<'de>;
type Response = GetMessagesResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_messages_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 {
type ConvoId;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ConvoId = Unset;
}
pub struct SetConvoId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetConvoId<S> {}
impl<S: State> State for SetConvoId<S> {
type ConvoId = Set<members::convo_id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct convo_id(());
}
}
pub struct GetMessagesBuilder<'a, S: get_messages_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetMessages<'a> {
pub fn new() -> GetMessagesBuilder<'a, get_messages_state::Empty> {
GetMessagesBuilder::new()
}
}
impl<'a> GetMessagesBuilder<'a, get_messages_state::Empty> {
pub fn new() -> Self {
GetMessagesBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetMessagesBuilder<'a, S>
where
S: get_messages_state::State,
S::ConvoId: get_messages_state::IsUnset,
{
pub fn convo_id(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetMessagesBuilder<'a, get_messages_state::SetConvoId<S>> {
self._fields.0 = Option::Some(value.into());
GetMessagesBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_messages_state::State> GetMessagesBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_messages_state::State> GetMessagesBuilder<'a, 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<'a, S> GetMessagesBuilder<'a, S>
where
S: get_messages_state::State,
S::ConvoId: get_messages_state::IsSet,
{
pub fn build(self) -> GetMessages<'a> {
GetMessages {
convo_id: self._fields.0.unwrap(),
cursor: self._fields.1,
limit: self._fields.2,
}
}
}