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