proto_blue_api/generated/com/atproto/temp/
fetchLabels.rs1use serde::{Deserialize, Serialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Params {
11 #[serde(skip_serializing_if = "Option::is_none")]
12 pub limit: Option<i64>,
13 #[serde(skip_serializing_if = "Option::is_none")]
14 pub since: Option<i64>,
15}
16
17#[derive(Debug, Clone, Serialize, Deserialize)]
18#[serde(rename_all = "camelCase")]
19pub struct Output {
20 pub labels: Vec<crate::com::atproto::label::defs::Label>,
21}