/*
* 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};
/// MicrosoftOAuthDomainIdentityProviderDetails : Detailed information about a Microsoft OAuth identity provider. If the clientID is omitted, an Antimatter Client ID will be used.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct MicrosoftOAuthDomainIdentityProviderDetails {
#[serde(rename = "clientID", skip_serializing_if = "Option::is_none")]
pub client_id: Option<String>,
}
impl MicrosoftOAuthDomainIdentityProviderDetails {
/// Detailed information about a Microsoft OAuth identity provider. If the clientID is omitted, an Antimatter Client ID will be used.
pub fn new() -> MicrosoftOAuthDomainIdentityProviderDetails {
MicrosoftOAuthDomainIdentityProviderDetails {
client_id: None,
}
}
}