proto_blue_api/generated/com/atproto/server/checkAccountStatus.rs
1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: com.atproto.server.checkAccountStatus
3
4use serde::{Deserialize, Serialize};
5
6/// Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself.
7/// XRPC Query: com.atproto.server.checkAccountStatus
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Output {
11 pub activated: bool,
12 pub expected_blobs: i64,
13 pub imported_blobs: i64,
14 pub indexed_records: i64,
15 pub private_state_values: i64,
16 pub repo_blocks: i64,
17 pub repo_commit: String,
18 pub repo_rev: String,
19 pub valid_did: bool,
20}