// Generated by atproto-codegen. Do not edit.
//! Lexicon: chat.bsky.convo.leaveConvo
use serde::{Deserialize, Serialize};
/// XRPC Procedure: chat.bsky.convo.leaveConvo
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub convo_id: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub convo_id: String,
pub rev: String,
}