use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProjectInsight {
#[serde(rename = "totalIssueCount", skip_serializing_if = "Option::is_none")]
pub total_issue_count: Option<i64>,
#[serde(rename = "lastIssueUpdateTime", skip_serializing_if = "Option::is_none")]
pub last_issue_update_time: Option<String>,
}
impl ProjectInsight {
pub fn new() -> ProjectInsight {
ProjectInsight {
total_issue_count: None,
last_issue_update_time: None,
}
}
}