atrium_api/com/atproto/temp/
check_signup_queue.rs1pub 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}