// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.sync.getRepoStatus
use serde::{Deserialize, Serialize};
/// Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.
/// XRPC Query: com.atproto.sync.getRepoStatus
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Params {
pub did: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub active: bool,
pub did: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub rev: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<String>,
}