Skip to main content

proto_blue_api/generated/tools/ozone/setting/
removeOptions.rs

1// Generated by atproto-codegen. Do not edit.
2//! Lexicon: tools.ozone.setting.removeOptions
3
4use serde::{Deserialize, Serialize};
5
6/// Delete settings by key
7/// XRPC Procedure: tools.ozone.setting.removeOptions
8#[derive(Debug, Clone, Serialize, Deserialize)]
9#[serde(rename_all = "camelCase")]
10pub struct Input {
11    pub keys: Vec<String>,
12    pub scope: String,
13}
14
15#[derive(Debug, Clone, Serialize, Deserialize)]
16#[serde(rename_all = "camelCase")]
17pub struct Output {}