workos 3.1.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 DataIntegrationInstallation {
    /// Unique identifier of the installation.
    pub id: String,
    /// The User the API key was installed for.
    pub user_id: String,
    /// The Organization the installation is scoped to, or null when unscoped.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub organization_id: Option<String>,
    /// The last four characters of the stored API key. The full key is never returned.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub api_key_last_4: Option<String>,
}