linkbreakers 1.81.3

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.81.3
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateSlackIntegrationResponse {
    #[serde(rename = "slackIntegration", skip_serializing_if = "Option::is_none")]
    pub slack_integration: Option<Box<models::SlackIntegration>>,
}

impl UpdateSlackIntegrationResponse {
    pub fn new() -> UpdateSlackIntegrationResponse {
        UpdateSlackIntegrationResponse {
            slack_integration: None,
        }
    }
}