antimatter_api 2.0.13

Interact with the Antimatter Cloud API
Documentation
/*
 * Antimatter Public API
 *
 * Interact with the Antimatter Cloud API
 *
 * The version of the OpenAPI document: 2.0.13
 * Contact: support@antimatter.io
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// DomainIdentityGroupProviderDetails : Information about an identity provider. This may be an imported provider or a provider in this domain. 
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DomainIdentityGroupProviderDetails {
    #[serde(rename = "groupIdentityProviders", skip_serializing_if = "Option::is_none")]
    pub group_identity_providers: Option<Vec<models::DomainIdentityGroupProviderDetailsGroupIdentityProvidersInner>>,
}

impl DomainIdentityGroupProviderDetails {
    /// Information about an identity provider. This may be an imported provider or a provider in this domain. 
    pub fn new() -> DomainIdentityGroupProviderDetails {
        DomainIdentityGroupProviderDetails {
            group_identity_providers: None,
        }
    }
}