/*
* 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};
/// DomainIdentityProviderList : A list of identity providers
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DomainIdentityProviderList {
/// A list of identity providers configured in a domain
#[serde(rename = "identityProviders", skip_serializing_if = "Option::is_none")]
pub identity_providers: Option<Vec<models::DomainIdentityProviderInfo>>,
}
impl DomainIdentityProviderList {
/// A list of identity providers
pub fn new() -> DomainIdentityProviderList {
DomainIdentityProviderList {
identity_providers: None,
}
}
}