atrium_api/com/atproto/identity/
submit_plc_operation.rs

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