atrium_api/com/atproto/identity/defs.rs
1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.identity.defs` namespace.
3#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
4#[serde(rename_all = "camelCase")]
5pub struct IdentityInfoData {
6 pub did: crate::types::string::Did,
7 ///The complete DID document for the identity.
8 pub did_doc: crate::types::Unknown,
9 ///The validated handle of the account; or 'handle.invalid' if the handle did not bi-directionally match the DID document.
10 pub handle: crate::types::string::Handle,
11}
12pub type IdentityInfo = crate::types::Object<IdentityInfoData>;