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