/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.741.0
* Contact: contact@windmill.dev
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RunAuditLogsS3BackfillRequest {
/// inclusive lower bound of the window to export
#[serde(rename = "from")]
pub from: String,
/// exclusive upper bound of the window to export
#[serde(rename = "to")]
pub to: String,
}
impl RunAuditLogsS3BackfillRequest {
pub fn new(from: String, to: String) -> RunAuditLogsS3BackfillRequest {
RunAuditLogsS3BackfillRequest {
from,
to,
}
}
}