proto_blue_api/generated/com/atproto/temp/checkSignupQueue.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.temp.checkSignupQueue
3
4use serde::{Deserialize, Serialize};
5
6/// Check accounts location in signup queue.
7/// XRPC Query: com.atproto.temp.checkSignupQueue
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Output {
11 pub activated: bool,
12 #[serde(skip_serializing_if = "Option::is_none")]
13 pub estimated_time_ms: Option<i64>,
14 #[serde(skip_serializing_if = "Option::is_none")]
15 pub place_in_queue: Option<i64>,
16}