agentic_commerce_protocol/models/
webhook_event.rs

1// this file is @generated
2use serde::{Deserialize, Serialize};
3
4use super::{event_data_order::EventDataOrder, webhook_event_type::WebhookEventType};
5
6#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
7pub struct WebhookEvent {
8    pub r#type: WebhookEventType,
9    pub data: EventDataOrder,
10}