atrium_api/com/atproto/identity/
update_handle.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.identity.updateHandle` namespace.
3pub const NSID: &str = "com.atproto.identity.updateHandle";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct InputData {
7    ///The new handle.
8    pub handle: crate::types::string::Handle,
9}
10pub type Input = crate::types::Object<InputData>;
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}