use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
#[non_exhaustive]
pub struct Message {
#[allow(missing_docs)]
pub message: String,
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
#[non_exhaustive]
pub struct Members {
#[allow(missing_docs)]
pub members: Vec<Member>,
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
#[non_exhaustive]
pub struct Member {
#[allow(missing_docs)]
pub member_id: Uuid,
#[allow(missing_docs)]
pub first_name: Option<String>,
#[allow(missing_docs)]
pub last_name: Option<String>,
#[allow(missing_docs)]
pub scopes: Vec<String>,
#[allow(missing_docs)]
pub email: String,
}