// This file is auto-generated by oagen. Do not edit.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
/// The event payload.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RadarChallengeCreatedData {
/// The type of the Radar challenge.
#[serde(rename = "type")]
pub type_: String,
/// The ID of the Radar challenge.
pub radar_challenge_id: String,
/// The ID of the user.
pub user_id: String,
/// The email address of the user.
pub email: String,
}