openai_struct/models/
audit_log_organization_updated_changes_requested_settings.rs

1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct AuditLogOrganizationUpdatedChangesRequestedSettings {
16    /// Visibility of the threads page which shows messages created with the Assistants API and Playground. One of `ANY_ROLE`, `OWNERS`, or `NONE`.
17    #[serde(rename = "threads_ui_visibility")]
18    pub threads_ui_visibility: Option<String>,
19    /// Visibility of the usage dashboard which shows activity and costs for your organization. One of `ANY_ROLE` or `OWNERS`.
20    #[serde(rename = "usage_dashboard_visibility")]
21    pub usage_dashboard_visibility: Option<String>,
22}