workos 3.4.1

Official Rust SDK for the WorkOS API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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};
/// Who may mint sessions from this blueprint.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentBlueprintInvocableBy {
    /// Role slugs whose members may mint user-delegated sessions from this blueprint.
    pub role_slugs: Vec<String>,
    /// Organizations in which sessions may be minted from this blueprint, enforced on user-delegated, autonomous, and agent-delegated mints.
    pub organization_ids: Vec<String>,
}