Skip to main content

tapis_apps/models/
parameter_set_log_config.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 ParameterSetLogConfig {
16    #[serde(rename = "stdoutFilename")]
17    pub stdout_filename: String,
18    #[serde(rename = "stderrFilename")]
19    pub stderr_filename: String,
20}
21
22impl ParameterSetLogConfig {
23    pub fn new(stdout_filename: String, stderr_filename: String) -> ParameterSetLogConfig {
24        ParameterSetLogConfig {
25            stdout_filename,
26            stderr_filename,
27        }
28    }
29}