use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookProjectsV2ItemConvertedChanges {
#[serde(rename = "content_type", skip_serializing_if = "Option::is_none")]
pub content_type: Option<Box<models::WebhookProjectsV2ItemConvertedChangesContentType>>,
}
impl WebhookProjectsV2ItemConvertedChanges {
pub fn new() -> WebhookProjectsV2ItemConvertedChanges {
WebhookProjectsV2ItemConvertedChanges {
content_type: None,
}
}
}