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 OrganizationUpdatedDataDomain {
    /// Distinguishes the organization domain object.
    pub object: String,
    /// Unique identifier of the organization domain.
    pub id: String,
    /// ID of the parent Organization.
    pub organization_id: String,
    /// Domain for the organization domain.
    pub domain: String,
    /// Verification state of the domain.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub state: Option<OrganizationUpdatedDataDomainState>,
    /// The prefix used in DNS verification.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub verification_prefix: Option<String>,
    /// Validation token to be used in DNS TXT record.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub verification_token: Option<crate::SecretString>,
    /// Strategy used to verify the domain.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub verification_strategy: Option<OrganizationUpdatedDataDomainVerificationStrategy>,
    /// An ISO 8601 timestamp.
    pub created_at: String,
    /// An ISO 8601 timestamp.
    pub updated_at: String,
}