squareup/models/
location_event_data.rs

1//! Response body struct for the LocationEventData type
2
3use serde::{Deserialize, Serialize};
4
5/// This is a model struct for LocationEventData type.
6#[derive(Clone, Debug, Default, Serialize, Deserialize, Eq, PartialEq)]
7pub struct LocationEventData {
8    /// The type of the event data object. The value is "location". Max Length 50
9    pub r#type: String,
10    /// The ID of the associated Location
11    pub id: String,
12}