atrium_api/app/bsky/graph/
block.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.graph.block` namespace.
3#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
4#[serde(rename_all = "camelCase")]
5pub struct RecordData {
6    pub created_at: crate::types::string::Datetime,
7    ///DID of the account to be blocked.
8    pub subject: crate::types::string::Did,
9}
10pub type Record = crate::types::Object<RecordData>;