workos 2.2.0

Official Rust SDK for the WorkOS API
Documentation
// This file is auto-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 GroupRoleAssignment {
    /// Distinguishes the group role assignment object.
    pub object: String,
    /// Unique identifier of the group role assignment.
    pub id: String,
    /// The ID of the group the role is assigned to.
    pub group_id: String,
    /// The role included in the assignment.
    pub role: SlimRole,
    /// The resource the role is assigned on.
    pub resource: GroupRoleAssignmentResource,
    /// An ISO 8601 timestamp.
    pub created_at: String,
    /// An ISO 8601 timestamp.
    pub updated_at: String,
}