proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.feed.getFeedGenerator

use serde::{Deserialize, Serialize};

/// Get information about a feed generator. Implemented by AppView.
/// XRPC Query: app.bsky.feed.getFeedGenerator
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
    pub feed: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
    pub is_online: bool,
    pub is_valid: bool,
    pub view: crate::app::bsky::feed::defs::GeneratorView,
}