workos 1.0.0

Official Rust SDK for the WorkOS API
Documentation
// 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 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,
}