Skip to main content

proto_blue_api/generated/com/atproto/temp/
fetchLabels.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.temp.fetchLabels
3
4use serde::{Deserialize, Serialize};
5
6/// DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.
7/// XRPC Query: com.atproto.temp.fetchLabels
8#[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}