// 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 AuditLogExportJson {
/// Distinguishes the Audit Log Export object.
pub object: String,
/// The unique ID of the Audit Log Export.
pub id: String,
/// The state of the export. Possible values: pending, ready, error.
pub state: AuditLogExportJsonState,
/// A URL to the CSV file. Only defined when the Audit Log Export is ready.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub url: Option<String>,
/// An ISO 8601 timestamp.
pub created_at: String,
/// An ISO 8601 timestamp.
pub updated_at: String,
}