/*
* 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 ParameterSetLogConfig {
#[serde(rename = "stdoutFilename")]
pub stdout_filename: String,
#[serde(rename = "stderrFilename")]
pub stderr_filename: String,
}
impl ParameterSetLogConfig {
pub fn new(stdout_filename: String, stderr_filename: String) -> ParameterSetLogConfig {
ParameterSetLogConfig {
stdout_filename,
stderr_filename,
}
}
}