/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.95.1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListWebhooksResponse {
#[serde(rename = "webhooks", skip_serializing_if = "Option::is_none")]
pub webhooks: Option<Vec<models::Webhook>>,
}
impl ListWebhooksResponse {
pub fn new() -> ListWebhooksResponse {
ListWebhooksResponse {
webhooks: None,
}
}
}