1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct PageBuildWebhookEventPayload {
    pub build: serde_json::Value,
    pub enterprise: Option<serde_json::Value>,
    pub id: u64,
}