atrium_api/app/bsky/graph/
starterpack.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.graph.starterpack` 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    #[serde(skip_serializing_if = "core::option::Option::is_none")]
8    pub description: core::option::Option<String>,
9    #[serde(skip_serializing_if = "core::option::Option::is_none")]
10    pub description_facets: core::option::Option<
11        Vec<crate::app::bsky::richtext::facet::Main>,
12    >,
13    #[serde(skip_serializing_if = "core::option::Option::is_none")]
14    pub feeds: core::option::Option<Vec<FeedItem>>,
15    ///Reference (AT-URI) to the list record.
16    pub list: String,
17    ///Display name for starter pack; can not be empty.
18    pub name: String,
19}
20pub type Record = crate::types::Object<RecordData>;
21#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
22#[serde(rename_all = "camelCase")]
23pub struct FeedItemData {
24    pub uri: String,
25}
26pub type FeedItem = crate::types::Object<FeedItemData>;