atrium_api/app/bsky/feed/
send_interactions.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.feed.sendInteractions` namespace.
3pub const NSID: &str = "app.bsky.feed.sendInteractions";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct InputData {
7    pub interactions: Vec<crate::app::bsky::feed::defs::Interaction>,
8}
9pub type Input = crate::types::Object<InputData>;
10#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
11#[serde(rename_all = "camelCase")]
12pub struct OutputData {}
13pub type Output = crate::types::Object<OutputData>;
14#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
15#[serde(tag = "error", content = "message")]
16pub enum Error {}
17impl std::fmt::Display for Error {
18    fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
19        Ok(())
20    }
21}