Skip to main content

tapis_apps/models/
result_name_array.rs

1/*
2 * Tapis Applications API
3 *
4 * The Tapis Applications API provides for management of Tapis applications including permissions.
5 *
6 * The version of the OpenAPI document: 25Q4.0
7 * Contact: cicsupport@tacc.utexas.edu
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ResultNameArray {
16    #[serde(rename = "names", skip_serializing_if = "Option::is_none")]
17    pub names: Option<Vec<String>>,
18}
19
20impl ResultNameArray {
21    pub fn new() -> ResultNameArray {
22        ResultNameArray { names: None }
23    }
24}