atrium_api/com/atproto/sync/
get_checkout.rs1pub 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 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}