atrium_api/app/bsky/feed/
get_feed_generators.rs1pub const NSID: &str = "app.bsky.feed.getFeedGenerators";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct ParametersData {
7 pub feeds: Vec<String>,
8}
9pub type Parameters = crate::types::Object<ParametersData>;
10#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
11#[serde(rename_all = "camelCase")]
12pub struct OutputData {
13 pub feeds: Vec<crate::app::bsky::feed::defs::GeneratorView>,
14}
15pub type Output = crate::types::Object<OutputData>;
16#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
17#[serde(tag = "error", content = "message")]
18pub enum Error {}
19impl std::fmt::Display for Error {
20 fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
21 Ok(())
22 }
23}