atrium_api/com/atproto/temp/
fetch_labels.rs1pub const NSID: &str = "com.atproto.temp.fetchLabels";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct ParametersData {
7 #[serde(skip_serializing_if = "core::option::Option::is_none")]
8 pub limit: core::option::Option<crate::types::LimitedNonZeroU8<250u8>>,
9 #[serde(skip_serializing_if = "core::option::Option::is_none")]
10 pub since: core::option::Option<i64>,
11}
12pub type Parameters = crate::types::Object<ParametersData>;
13#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
14#[serde(rename_all = "camelCase")]
15pub struct OutputData {
16 pub labels: Vec<crate::com::atproto::label::defs::Label>,
17}
18pub type Output = crate::types::Object<OutputData>;
19#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
20#[serde(tag = "error", content = "message")]
21pub enum Error {}
22impl std::fmt::Display for Error {
23 fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
24 Ok(())
25 }
26}