atrium_api/app/bsky/graph/verification.rs
1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.graph.verification` namespace.
3#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
4#[serde(rename_all = "camelCase")]
5pub struct RecordData {
6 ///Date of when the verification was created.
7 pub created_at: crate::types::string::Datetime,
8 ///Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying.
9 pub display_name: String,
10 ///Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying.
11 pub handle: crate::types::string::Handle,
12 ///DID of the subject the verification applies to.
13 pub subject: crate::types::string::Did,
14}
15pub type Record = crate::types::Object<RecordData>;