tapis_workflows/models/value_from_task_output.rs
1/*
2 * Tapis Workflows API
3 *
4 * Create and manage pipelines
5 *
6 * The version of the OpenAPI document: 1.6.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 ValueFromTaskOutput {
16 #[serde(rename = "task_output", skip_serializing_if = "Option::is_none")]
17 pub task_output: Option<Box<models::TaskOutputRef>>,
18}
19
20impl ValueFromTaskOutput {
21 pub fn new() -> ValueFromTaskOutput {
22 ValueFromTaskOutput { task_output: None }
23 }
24}