jira_v3_openapi 1.6.1

Jira Cloud platform REST API lib (OpenAPI document version: 1001.0.0-SNAPSHOT-af42c50d50804c2f1b8ad4bb80d52c53890867e2)
Documentation
/*
 * The Jira Cloud platform REST API
 *
 * Jira Cloud platform REST API documentation
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT-af42c50d50804c2f1b8ad4bb80d52c53890867e2
 * 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,
        }
    }
}