Skip to main content

proto_blue_api/generated/app/bsky/feed/
getPosts.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: app.bsky.feed.getPosts
3
4use serde::{Deserialize, Serialize};
5
6/// Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.
7/// XRPC Query: app.bsky.feed.getPosts
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Params {
11    pub uris: Vec<String>,
12}
13
14#[derive(Debug, Clone, Serialize, Deserialize)]
15#[serde(rename_all = "camelCase")]
16pub struct Output {
17    pub posts: Vec<crate::app::bsky::feed::defs::PostView>,
18}