// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.unspecced.getTrendsSkeleton
use serde::{Deserialize, Serialize};
/// Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends
/// XRPC Query: app.bsky.unspecced.getTrendsSkeleton
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub trends: Vec<crate::app::bsky::unspecced::defs::SkeletonTrend>,
}