// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CreateWebhookEndpoint {
/// The HTTPS URL where webhooks will be sent.
pub endpoint_url: String,
/// The events that the Webhook Endpoint is subscribed to.
pub events: Vec<CreateWebhookEndpointEvents>,
}