// Generated by atproto-codegen. Do not edit.
//! Lexicon: tools.ozone.set.deleteValues
useserde::{Deserialize, Serialize};/// Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error
/// XRPC Procedure: tools.ozone.set.deleteValues
#[derive(Debug, Clone, Serialize, Deserialize)]#[serde(rename_all ="camelCase")]pubstructInput{pubname: String,
pubvalues:Vec<String>,
}