jira_api_v2/models/remote_issue_link_identifies.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/// RemoteIssueLinkIdentifies : Details of the identifiers for a created or updated remote issue link.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct RemoteIssueLinkIdentifies {
17 /// The ID of the remote issue link, such as the ID of the item on the remote system.
18 #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
19 pub id: Option<i64>,
20 /// The URL of the remote issue link.
21 #[serde(rename = "self", skip_serializing_if = "Option::is_none")]
22 pub param_self: Option<String>,
23}
24
25impl RemoteIssueLinkIdentifies {
26 /// Details of the identifiers for a created or updated remote issue link.
27 pub fn new() -> RemoteIssueLinkIdentifies {
28 RemoteIssueLinkIdentifies {
29 id: None,
30 param_self: None,
31 }
32 }
33}
34