// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WaitlistUser {
/// Distinguishes the Waitlist User object.
pub object: String,
/// The unique ID of the Waitlist User.
pub id: String,
/// The email address of the Waitlist User.
pub email: String,
/// The state of the Waitlist User.
pub state: WaitlistUserState,
/// The timestamp when the Waitlist User was approved, or null if not yet approved.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub approved_at: Option<String>,
/// An ISO 8601 timestamp.
pub created_at: String,
/// An ISO 8601 timestamp.
pub updated_at: String,
}