atrium_api/app/bsky/graph/
listitem.rs

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