/*
* task-automation API
*
* task-automation engine to automate and customize web based integration processes
*
* The version of the OpenAPI document: 3.63.10
* Contact: support@babelforce.com
* Generated by: https://openapi-generator.tech
*/
use crate::gen::task_automation::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TestAction {
#[serde(rename = "actions", skip_serializing_if = "Option::is_none")]
pub actions: Option<models::Action>,
#[serde(rename = "input", skip_serializing_if = "Option::is_none")]
pub input: Option<Box<models::TestActionInput>>,
}
impl TestAction {
pub fn new() -> TestAction {
TestAction {
actions: None,
input: None,
}
}
}