/*
* Orvanta API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.6.0
* Contact: contact@orvanta.cloud
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// StartBpmnInstance : initial process variables, seeded into the root scope
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct StartBpmnInstance {
#[serde(rename = "flow_input", skip_serializing_if = "Option::is_none")]
pub flow_input: Option<std::collections::HashMap<String, serde_json::Value>>,
}
impl StartBpmnInstance {
/// initial process variables, seeded into the root scope
pub fn new() -> StartBpmnInstance {
StartBpmnInstance {
flow_input: None,
}
}
}