jira_api_v2/models/operations.rs
1/*
2 * The Jira Cloud platform REST API
3 *
4 * Jira Cloud platform REST API documentation
5 *
6 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
7 * Contact: ecosystem@atlassian.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// Operations : Details of the operations that can be performed on the issue.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct Operations {
17 /// Details of the link groups defining issue operations.
18 #[serde(rename = "linkGroups", skip_serializing_if = "Option::is_none")]
19 pub link_groups: Option<Vec<models::LinkGroup>>,
20}
21
22impl Operations {
23 /// Details of the operations that can be performed on the issue.
24 pub fn new() -> Operations {
25 Operations {
26 link_groups: None,
27 }
28 }
29}
30