// 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 ConnectApplicationM2M {
/// Distinguishes the connect application object.
pub object: String,
/// The unique ID of the connect application.
pub id: String,
/// The client ID of the connect application.
pub client_id: String,
/// A description of the connect application.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub description: Option<String>,
/// The name of the connect application.
pub name: String,
/// The scopes available for this application.
pub scopes: Vec<String>,
/// An ISO 8601 timestamp.
pub created_at: String,
/// An ISO 8601 timestamp.
pub updated_at: String,
/// The type of the application.
pub application_type: String,
/// The ID of the organization the application belongs to.
pub organization_id: String,
}