/* * Gitea API. * * This documentation describes the Gitea API. * * The version of the OpenAPI document: 1.17.3 * * Generated by: https://openapi-generator.tech */ /// NotificationSubject : NotificationSubject contains the notification subject (Issue/Pull/Commit) #[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] pub struct NotificationSubject { #[serde(rename = "html_url", skip_serializing_if = "Option::is_none")] pub html_url: Option, #[serde(rename = "latest_comment_html_url", skip_serializing_if = "Option::is_none")] pub latest_comment_html_url: Option, #[serde(rename = "latest_comment_url", skip_serializing_if = "Option::is_none")] pub latest_comment_url: Option, /// StateType issue state type #[serde(rename = "state", skip_serializing_if = "Option::is_none")] pub state: Option, #[serde(rename = "title", skip_serializing_if = "Option::is_none")] pub title: Option, /// NotifySubjectType represent type of notification subject #[serde(rename = "type", skip_serializing_if = "Option::is_none")] pub r#type: Option, #[serde(rename = "url", skip_serializing_if = "Option::is_none")] pub url: Option, } impl NotificationSubject { /// NotificationSubject contains the notification subject (Issue/Pull/Commit) pub fn new() -> NotificationSubject { NotificationSubject { html_url: None, latest_comment_html_url: None, latest_comment_url: None, state: None, title: None, r#type: None, url: None, } } }