/*
* Tapis Applications API
*
* The Tapis Applications API provides for management of Tapis applications including permissions.
*
* The version of the OpenAPI document: 25Q4.0
* Contact: cicsupport@tacc.utexas.edu
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ReqSearchApps {
#[serde(rename = "search")]
pub search: Vec<String>,
}
impl ReqSearchApps {
pub fn new(search: Vec<String>) -> ReqSearchApps {
ReqSearchApps { search }
}
}