atrium_api/app/bsky/notification/
declaration.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.notification.declaration` namespace.
3#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
4#[serde(rename_all = "camelCase")]
5pub struct RecordData {
6    ///A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.
7    pub allow_subscriptions: String,
8}
9pub type Record = crate::types::Object<RecordData>;