#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GroupDisableJoinLinkInput {
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 GroupDisableJoinLinkOutput {
pub join_link: crate::api::chat::bsky::GroupDefsJoinLinkView,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn group_disable_join_link(
client: &crate::xrpc::Client,
input: &GroupDisableJoinLinkInput,
) -> Result<GroupDisableJoinLinkOutput, crate::xrpc::Error> {
client
.procedure("chat.bsky.group.disableJoinLink", input)
.await
}