atrium_api/com/atproto/admin/
get_account_info.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.admin.getAccountInfo` namespace.
3pub const NSID: &str = "com.atproto.admin.getAccountInfo";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct ParametersData {
7    pub did: crate::types::string::Did,
8}
9pub type Parameters = crate::types::Object<ParametersData>;
10pub type Output = crate::com::atproto::admin::defs::AccountView;
11#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
12#[serde(tag = "error", content = "message")]
13pub enum Error {}
14impl std::fmt::Display for Error {
15    fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
16        Ok(())
17    }
18}