#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::app_bsky::feed::Interaction;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SendInteractions<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub feed: Option<AtUri<S>>,
pub interactions: Vec<Interaction<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SendInteractionsOutput<S: BosStr = DefaultStr> {
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct SendInteractionsResponse;
impl jacquard_common::xrpc::XrpcResp for SendInteractionsResponse {
const NSID: &'static str = "app.bsky.feed.sendInteractions";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SendInteractionsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for SendInteractions<S> {
const NSID: &'static str = "app.bsky.feed.sendInteractions";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = SendInteractionsResponse;
}
pub struct SendInteractionsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SendInteractionsRequest {
const PATH: &'static str = "/xrpc/app.bsky.feed.sendInteractions";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = SendInteractions<S>;
type Response = SendInteractionsResponse;
}
pub mod send_interactions_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Interactions;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Interactions = Unset;
}
pub struct SetInteractions<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetInteractions<St> {}
impl<St: State> State for SetInteractions<St> {
type Interactions = Set<members::interactions>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct interactions(());
}
}
pub struct SendInteractionsBuilder<S: BosStr, St: send_interactions_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>, Option<Vec<Interaction<S>>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> SendInteractions<S> {
pub fn new() -> SendInteractionsBuilder<S, send_interactions_state::Empty> {
SendInteractionsBuilder::new()
}
}
impl<S: BosStr> SendInteractionsBuilder<S, send_interactions_state::Empty> {
pub fn new() -> Self {
SendInteractionsBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: send_interactions_state::State> SendInteractionsBuilder<S, St> {
pub fn feed(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_feed(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> SendInteractionsBuilder<S, St>
where
St: send_interactions_state::State,
St::Interactions: send_interactions_state::IsUnset,
{
pub fn interactions(
mut self,
value: impl Into<Vec<Interaction<S>>>,
) -> SendInteractionsBuilder<S, send_interactions_state::SetInteractions<St>> {
self._fields.1 = Option::Some(value.into());
SendInteractionsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SendInteractionsBuilder<S, St>
where
St: send_interactions_state::State,
St::Interactions: send_interactions_state::IsSet,
{
pub fn build(self) -> SendInteractions<S> {
SendInteractions {
feed: self._fields.0,
interactions: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> SendInteractions<S> {
SendInteractions {
feed: self._fields.0,
interactions: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}