#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct IdentityRefreshIdentityInput {
pub identifier: crate::syntax::AtIdentifier,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub type IdentityRefreshIdentityOutput = crate::api::com::atproto::IdentityDefsIdentityInfo;
pub async fn identity_refresh_identity(
client: &crate::xrpc::Client,
input: &IdentityRefreshIdentityInput,
) -> Result<IdentityRefreshIdentityOutput, crate::xrpc::Error> {
client
.procedure("com.atproto.identity.refreshIdentity", input)
.await
}