openapi_github/models/
webhook_team_edited_changes_notification_setting.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct WebhookTeamEditedChangesNotificationSetting {
16 #[serde(rename = "from")]
18 pub from: String,
19}
20
21impl WebhookTeamEditedChangesNotificationSetting {
22 pub fn new(from: String) -> WebhookTeamEditedChangesNotificationSetting {
23 WebhookTeamEditedChangesNotificationSetting {
24 from,
25 }
26 }
27}
28