atrium_api/com/atproto/sync/
get_checkout.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.sync.getCheckout` namespace.
3pub const NSID: &str = "com.atproto.sync.getCheckout";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct ParametersData {
7    ///The DID of the repo.
8    pub did: crate::types::string::Did,
9}
10pub type Parameters = crate::types::Object<ParametersData>;
11#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
12#[serde(tag = "error", content = "message")]
13pub enum Error {}
14impl std::fmt::Display for Error {
15    fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
16        Ok(())
17    }
18}