Skip to main content

proto_blue_api/generated/tools/ozone/set/
deleteValues.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: tools.ozone.set.deleteValues
3
4use serde::{Deserialize, Serialize};
5
6/// Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error
7/// XRPC Procedure: tools.ozone.set.deleteValues
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11    pub name: String,
12    pub values: Vec<String>,
13}