camunda_client/models/process_engine_dto.rs
1/*
2 * Camunda BPM REST API
3 *
4 * OpenApi Spec for Camunda BPM REST API.
5 *
6 * The version of the OpenAPI document: 7.13.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ProcessEngineDto {
16 /// The name of the process engine.
17 #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
18 pub name: Option<String>,
19}
20
21impl ProcessEngineDto {
22 pub fn new() -> ProcessEngineDto {
23 ProcessEngineDto {
24 name: None,
25 }
26 }
27}
28
29