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