squareup/models/customer_event_object.rs
1//! Response body struct for the CustomerEventObject type
2
3use crate::models::Customer;
4use serde::{Deserialize, Serialize};
5
6/// This is a model struct for CustomerEventObject type.
7#[derive(Clone, Debug, Default, Serialize, Deserialize, Eq, PartialEq)]
8pub struct CustomerEventObject {
9 /// The customer associated with the event.
10 pub customer: Customer,
11}