// Generated by atproto-codegen. Do not edit.
//! Lexicon: com.atproto.admin.disableInviteCodes
use serde::{Deserialize, Serialize};
/// Disable some set of codes and/or all codes associated with a set of users.
/// XRPC Procedure: com.atproto.admin.disableInviteCodes
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
#[serde(skip_serializing_if = "Option::is_none")]
pub accounts: Option<Vec<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub codes: Option<Vec<String>>,
}