proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.repo.describeRepo

use serde::{Deserialize, Serialize};

/// Get information about an account and repository, including the list of collections. Does not require auth.
/// XRPC Query: com.atproto.repo.describeRepo
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
    pub repo: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
    pub collections: Vec<String>,
    pub did: String,
    pub did_doc: serde_json::Value,
    pub handle: String,
    pub handle_is_correct: bool,
}