atrium_api/app/bsky/graph/listitem.rs
1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.graph.listitem` 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 ///Reference (AT-URI) to the list record (app.bsky.graph.list).
8 pub list: String,
9 ///The account which is included on the list.
10 pub subject: crate::types::string::Did,
11}
12pub type Record = crate::types::Object<RecordData>;