openai_struct/models/audit_log_organization_updated_changes_requested.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/// pub AuditLogOrganizationUpdatedChangesRequested : The payload used to update the organization settings.
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct AuditLogOrganizationUpdatedChangesRequested {
18 /// The organization description.
19 #[serde(rename = "description")]
20 pub description: Option<String>,
21 /// The organization name.
22 #[serde(rename = "name")]
23 pub name: Option<String>,
24 #[serde(rename = "settings")]
25 pub settings: Option<crate::models::AuditLogOrganizationUpdatedChangesRequestedSettings>,
26 /// The organization title.
27 #[serde(rename = "title")]
28 pub title: Option<String>,
29}