atrium_api/tools/ozone/set/
add_values.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `tools.ozone.set.addValues` namespace.
3pub const NSID: &str = "tools.ozone.set.addValues";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct InputData {
7    ///Name of the set to add values to
8    pub name: String,
9    ///Array of string values to add to the set
10    pub values: Vec<String>,
11}
12pub type Input = crate::types::Object<InputData>;
13#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
14#[serde(tag = "error", content = "message")]
15pub enum Error {}
16impl std::fmt::Display for Error {
17    fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
18        Ok(())
19    }
20}