/*
* Orvanta API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.4.0
* Contact: contact@orvanta.cloud
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BpmnFlowVersion {
#[serde(rename = "id")]
pub id: i32,
#[serde(rename = "created_at")]
pub created_at: String,
}
impl BpmnFlowVersion {
pub fn new(id: i32, created_at: String) -> BpmnFlowVersion {
BpmnFlowVersion {
id,
created_at,
}
}
}