// 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 EmailVerification {
/// Distinguishes the email verification object.
pub object: String,
/// The unique ID of the email verification code.
pub id: String,
/// The unique ID of the user.
pub user_id: String,
/// The email address of the user.
pub email: String,
/// The timestamp when the email verification code expires.
pub expires_at: String,
/// An ISO 8601 timestamp.
pub created_at: String,
/// An ISO 8601 timestamp.
pub updated_at: String,
/// The code used to verify the email.
pub code: String,
}