// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.unspecced.getTrends
use serde::{Deserialize, Serialize};
/// Get the current trends on the network
/// XRPC Query: app.bsky.unspecced.getTrends
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub trends: Vec<crate::app::bsky::unspecced::defs::TrendView>,
}