atrium_api/com/atproto/temp/
check_signup_queue.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.temp.checkSignupQueue` namespace.
3pub const NSID: &str = "com.atproto.temp.checkSignupQueue";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct OutputData {
7    pub activated: bool,
8    #[serde(skip_serializing_if = "core::option::Option::is_none")]
9    pub estimated_time_ms: core::option::Option<i64>,
10    #[serde(skip_serializing_if = "core::option::Option::is_none")]
11    pub place_in_queue: core::option::Option<i64>,
12}
13pub type Output = crate::types::Object<OutputData>;
14#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
15#[serde(tag = "error", content = "message")]
16pub enum Error {}
17impl std::fmt::Display for Error {
18    fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
19        Ok(())
20    }
21}