/*
* Tapis Systems API
*
* The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
*
* The version of the OpenAPI document: 25Q4.2
* 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 ReqMatchConstraints {
#[serde(rename = "match")]
pub r#match: Vec<String>,
}
impl ReqMatchConstraints {
pub fn new(r#match: Vec<String>) -> ReqMatchConstraints {
ReqMatchConstraints { r#match }
}
}