Skip to main content

tapis_apps/models/
req_search_apps.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 ReqSearchApps {
16    #[serde(rename = "search")]
17    pub search: Vec<String>,
18}
19
20impl ReqSearchApps {
21    pub fn new(search: Vec<String>) -> ReqSearchApps {
22        ReqSearchApps { search }
23    }
24}