/*
* The Jira Cloud platform REST API
*
* Jira Cloud platform REST API documentation
*
* The version of the OpenAPI document: 1001.0.0-SNAPSHOT-37416ade0f89f7cb291510843b8a4bbd682b33a1
* Contact: ecosystem@atlassian.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// WorkflowOperations : Operations allowed on a workflow
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WorkflowOperations {
/// Whether the workflow can be deleted.
#[serde(rename = "canDelete")]
pub can_delete: bool,
/// Whether the workflow can be updated.
#[serde(rename = "canEdit")]
pub can_edit: bool,
}
impl WorkflowOperations {
/// Operations allowed on a workflow
pub fn new(can_delete: bool, can_edit: bool) -> WorkflowOperations {
WorkflowOperations {
can_delete,
can_edit,
}
}
}