linkbreakers 1.80.1

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.80.1
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct EventsServiceCreateEventTraceBody {
    #[serde(rename = "stepAction", skip_serializing_if = "Option::is_none")]
    pub step_action: Option<String>,
    #[serde(rename = "stepData", skip_serializing_if = "Option::is_none")]
    pub step_data: Option<Box<models::EventTraceData>>,
    #[serde(rename = "stepKind", skip_serializing_if = "Option::is_none")]
    pub step_kind: Option<String>,
}

impl EventsServiceCreateEventTraceBody {
    pub fn new() -> EventsServiceCreateEventTraceBody {
        EventsServiceCreateEventTraceBody {
            step_action: None,
            step_data: None,
            step_kind: None,
        }
    }
}