workos 2.2.0

Official Rust SDK for the WorkOS API
Documentation
// 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};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CorsOriginResponse {
    /// Distinguishes the CORS origin object.
    pub object: String,
    /// Unique identifier of the CORS origin.
    pub id: String,
    /// The origin URL.
    pub origin: String,
    /// Timestamp when the CORS origin was created.
    pub created_at: String,
    /// Timestamp when the CORS origin was last updated.
    pub updated_at: String,
}