proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.temp.checkSignupQueue

use serde::{Deserialize, Serialize};

/// Check accounts location in signup queue.
/// XRPC Query: com.atproto.temp.checkSignupQueue
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
    pub activated: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub estimated_time_ms: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub place_in_queue: Option<i64>,
}