#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConvoLockConvoInput {
pub convo_id: String,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConvoLockConvoOutput {
pub convo: crate::api::chat::bsky::ConvoDefsConvoView,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn convo_lock_convo(
client: &crate::xrpc::Client,
input: &ConvoLockConvoInput,
) -> Result<ConvoLockConvoOutput, crate::xrpc::Error> {
client.procedure("chat.bsky.convo.lockConvo", input).await
}