#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct BlockedAuthorData {
pub did: crate::types::string::Did,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer: Option<crate::app::bsky::actor::defs::ViewerState>,
}
pub type BlockedAuthor = crate::types::Object<BlockedAuthorData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct BlockedPostData {
pub author: BlockedAuthor,
pub blocked: bool,
pub uri: String,
}
pub type BlockedPost = crate::types::Object<BlockedPostData>;
pub const CLICKTHROUGH_AUTHOR: &str = "app.bsky.feed.defs#clickthroughAuthor";
pub const CLICKTHROUGH_EMBED: &str = "app.bsky.feed.defs#clickthroughEmbed";
pub const CLICKTHROUGH_ITEM: &str = "app.bsky.feed.defs#clickthroughItem";
pub const CLICKTHROUGH_REPOSTER: &str = "app.bsky.feed.defs#clickthroughReposter";
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct FeedViewPostData {
#[serde(skip_serializing_if = "Option::is_none")]
pub feed_context: Option<String>,
pub post: PostView,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<crate::types::Union<FeedViewPostReasonRefs>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply: Option<ReplyRef>,
}
pub type FeedViewPost = crate::types::Object<FeedViewPostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct GeneratorViewData {
#[serde(skip_serializing_if = "Option::is_none")]
pub accepts_interactions: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub avatar: Option<String>,
pub cid: crate::types::string::Cid,
pub creator: crate::app::bsky::actor::defs::ProfileView,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description_facets: Option<Vec<crate::app::bsky::richtext::facet::Main>>,
pub did: crate::types::string::Did,
pub display_name: String,
pub indexed_at: crate::types::string::Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub labels: Option<Vec<crate::com::atproto::label::defs::Label>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub like_count: Option<usize>,
pub uri: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer: Option<GeneratorViewerState>,
}
pub type GeneratorView = crate::types::Object<GeneratorViewData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct GeneratorViewerStateData {
#[serde(skip_serializing_if = "Option::is_none")]
pub like: Option<String>,
}
pub type GeneratorViewerState = crate::types::Object<GeneratorViewerStateData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct InteractionData {
#[serde(skip_serializing_if = "Option::is_none")]
pub event: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub feed_context: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub item: Option<String>,
}
pub type Interaction = crate::types::Object<InteractionData>;
pub const INTERACTION_LIKE: &str = "app.bsky.feed.defs#interactionLike";
pub const INTERACTION_QUOTE: &str = "app.bsky.feed.defs#interactionQuote";
pub const INTERACTION_REPLY: &str = "app.bsky.feed.defs#interactionReply";
pub const INTERACTION_REPOST: &str = "app.bsky.feed.defs#interactionRepost";
pub const INTERACTION_SEEN: &str = "app.bsky.feed.defs#interactionSeen";
pub const INTERACTION_SHARE: &str = "app.bsky.feed.defs#interactionShare";
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct NotFoundPostData {
pub not_found: bool,
pub uri: String,
}
pub type NotFoundPost = crate::types::Object<NotFoundPostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct PostViewData {
pub author: crate::app::bsky::actor::defs::ProfileViewBasic,
pub cid: crate::types::string::Cid,
#[serde(skip_serializing_if = "Option::is_none")]
pub embed: Option<crate::types::Union<PostViewEmbedRefs>>,
pub indexed_at: crate::types::string::Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub labels: Option<Vec<crate::com::atproto::label::defs::Label>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub like_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub quote_count: Option<i64>,
pub record: crate::types::Unknown,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub repost_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub threadgate: Option<ThreadgateView>,
pub uri: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer: Option<ViewerState>,
}
pub type PostView = crate::types::Object<PostViewData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ReasonPinData {}
pub type ReasonPin = crate::types::Object<ReasonPinData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ReasonRepostData {
pub by: crate::app::bsky::actor::defs::ProfileViewBasic,
pub indexed_at: crate::types::string::Datetime,
}
pub type ReasonRepost = crate::types::Object<ReasonRepostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ReplyRefData {
#[serde(skip_serializing_if = "Option::is_none")]
pub grandparent_author: Option<crate::app::bsky::actor::defs::ProfileViewBasic>,
pub parent: crate::types::Union<ReplyRefParentRefs>,
pub root: crate::types::Union<ReplyRefRootRefs>,
}
pub type ReplyRef = crate::types::Object<ReplyRefData>;
pub const REQUEST_LESS: &str = "app.bsky.feed.defs#requestLess";
pub const REQUEST_MORE: &str = "app.bsky.feed.defs#requestMore";
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct SkeletonFeedPostData {
#[serde(skip_serializing_if = "Option::is_none")]
pub feed_context: Option<String>,
pub post: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<crate::types::Union<SkeletonFeedPostReasonRefs>>,
}
pub type SkeletonFeedPost = crate::types::Object<SkeletonFeedPostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct SkeletonReasonPinData {}
pub type SkeletonReasonPin = crate::types::Object<SkeletonReasonPinData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct SkeletonReasonRepostData {
pub repost: String,
}
pub type SkeletonReasonRepost = crate::types::Object<SkeletonReasonRepostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ThreadViewPostData {
#[serde(skip_serializing_if = "Option::is_none")]
pub parent: Option<crate::types::Union<ThreadViewPostParentRefs>>,
pub post: PostView,
#[serde(skip_serializing_if = "Option::is_none")]
pub replies: Option<Vec<crate::types::Union<ThreadViewPostRepliesItem>>>,
}
pub type ThreadViewPost = crate::types::Object<ThreadViewPostData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ThreadgateViewData {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<crate::types::string::Cid>,
#[serde(skip_serializing_if = "Option::is_none")]
pub lists: Option<Vec<crate::app::bsky::graph::defs::ListViewBasic>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub record: Option<crate::types::Unknown>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<String>,
}
pub type ThreadgateView = crate::types::Object<ThreadgateViewData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ViewerStateData {
#[serde(skip_serializing_if = "Option::is_none")]
pub embedding_disabled: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub like: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub pinned: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply_disabled: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub repost: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub thread_muted: Option<bool>,
}
pub type ViewerState = crate::types::Object<ViewerStateData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum FeedViewPostReasonRefs {
#[serde(rename = "app.bsky.feed.defs#reasonRepost")]
ReasonRepost(Box<ReasonRepost>),
#[serde(rename = "app.bsky.feed.defs#reasonPin")]
ReasonPin(Box<ReasonPin>),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum PostViewEmbedRefs {
#[serde(rename = "app.bsky.embed.images#view")]
AppBskyEmbedImagesView(Box<crate::app::bsky::embed::images::View>),
#[serde(rename = "app.bsky.embed.video#view")]
AppBskyEmbedVideoView(Box<crate::app::bsky::embed::video::View>),
#[serde(rename = "app.bsky.embed.external#view")]
AppBskyEmbedExternalView(Box<crate::app::bsky::embed::external::View>),
#[serde(rename = "app.bsky.embed.record#view")]
AppBskyEmbedRecordView(Box<crate::app::bsky::embed::record::View>),
#[serde(rename = "app.bsky.embed.recordWithMedia#view")]
AppBskyEmbedRecordWithMediaView(
Box<crate::app::bsky::embed::record_with_media::View>,
),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum ReplyRefParentRefs {
#[serde(rename = "app.bsky.feed.defs#postView")]
PostView(Box<PostView>),
#[serde(rename = "app.bsky.feed.defs#notFoundPost")]
NotFoundPost(Box<NotFoundPost>),
#[serde(rename = "app.bsky.feed.defs#blockedPost")]
BlockedPost(Box<BlockedPost>),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum ReplyRefRootRefs {
#[serde(rename = "app.bsky.feed.defs#postView")]
PostView(Box<PostView>),
#[serde(rename = "app.bsky.feed.defs#notFoundPost")]
NotFoundPost(Box<NotFoundPost>),
#[serde(rename = "app.bsky.feed.defs#blockedPost")]
BlockedPost(Box<BlockedPost>),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum SkeletonFeedPostReasonRefs {
#[serde(rename = "app.bsky.feed.defs#skeletonReasonRepost")]
SkeletonReasonRepost(Box<SkeletonReasonRepost>),
#[serde(rename = "app.bsky.feed.defs#skeletonReasonPin")]
SkeletonReasonPin(Box<SkeletonReasonPin>),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum ThreadViewPostParentRefs {
#[serde(rename = "app.bsky.feed.defs#threadViewPost")]
ThreadViewPost(Box<ThreadViewPost>),
#[serde(rename = "app.bsky.feed.defs#notFoundPost")]
NotFoundPost(Box<NotFoundPost>),
#[serde(rename = "app.bsky.feed.defs#blockedPost")]
BlockedPost(Box<BlockedPost>),
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum ThreadViewPostRepliesItem {
#[serde(rename = "app.bsky.feed.defs#threadViewPost")]
ThreadViewPost(Box<ThreadViewPost>),
#[serde(rename = "app.bsky.feed.defs#notFoundPost")]
NotFoundPost(Box<NotFoundPost>),
#[serde(rename = "app.bsky.feed.defs#blockedPost")]
BlockedPost(Box<BlockedPost>),
}