jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.bsky.feed.sendInteractions
//
// 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;

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>>>,
}

/// Response type for app.bsky.feed.sendInteractions
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;
}

/// Endpoint type for app.bsky.feed.sendInteractions
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Interactions;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Interactions = Unset;
    }
    ///State transition - sets the `interactions` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `interactions` field
        pub struct interactions(());
    }
}

/// Builder for constructing an instance of this type.
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> {
    /// Create a new builder for this type.
    pub fn new() -> SendInteractionsBuilder<S, send_interactions_state::Empty> {
        SendInteractionsBuilder::new()
    }
}

impl<S: BosStr> SendInteractionsBuilder<S, send_interactions_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        SendInteractionsBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: send_interactions_state::State> SendInteractionsBuilder<S, St> {
    /// Set the `feed` field (optional)
    pub fn feed(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `feed` field to an Option value (optional)
    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,
{
    /// Set the `interactions` field (required)
    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,
{
    /// Build the final struct.
    pub fn build(self) -> SendInteractions<S> {
        SendInteractions {
            feed: self._fields.0,
            interactions: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    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),
        }
    }
}