pub struct AuditLogOrganizationUpdatedChangesRequestedSettings {
pub threads_ui_visibility: Option<String>,
pub usage_dashboard_visibility: Option<String>,
}
Fields§
§threads_ui_visibility: Option<String>
Visibility of the threads page which shows messages created with the Assistants API and Playground. One of ANY_ROLE
, OWNERS
, or NONE
.
usage_dashboard_visibility: Option<String>
Visibility of the usage dashboard which shows activity and costs for your organization. One of ANY_ROLE
or OWNERS
.
Implementations§
Source§impl AuditLogOrganizationUpdatedChangesRequestedSettings
impl AuditLogOrganizationUpdatedChangesRequestedSettings
Sourcepub fn builder() -> AuditLogOrganizationUpdatedChangesRequestedSettingsBuilder<((), ())>
pub fn builder() -> AuditLogOrganizationUpdatedChangesRequestedSettingsBuilder<((), ())>
Create a builder for building AuditLogOrganizationUpdatedChangesRequestedSettings
.
On the builder, call .threads_ui_visibility(...)
(optional), .usage_dashboard_visibility(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogOrganizationUpdatedChangesRequestedSettings
.
Trait Implementations§
Source§impl Clone for AuditLogOrganizationUpdatedChangesRequestedSettings
impl Clone for AuditLogOrganizationUpdatedChangesRequestedSettings
Source§fn clone(&self) -> AuditLogOrganizationUpdatedChangesRequestedSettings
fn clone(&self) -> AuditLogOrganizationUpdatedChangesRequestedSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for AuditLogOrganizationUpdatedChangesRequestedSettings
impl Default for AuditLogOrganizationUpdatedChangesRequestedSettings
Source§fn default() -> AuditLogOrganizationUpdatedChangesRequestedSettings
fn default() -> AuditLogOrganizationUpdatedChangesRequestedSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogOrganizationUpdatedChangesRequestedSettings
impl<'de> Deserialize<'de> for AuditLogOrganizationUpdatedChangesRequestedSettings
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuditLogOrganizationUpdatedChangesRequestedSettings
impl PartialEq for AuditLogOrganizationUpdatedChangesRequestedSettings
Source§fn eq(
&self,
other: &AuditLogOrganizationUpdatedChangesRequestedSettings,
) -> bool
fn eq( &self, other: &AuditLogOrganizationUpdatedChangesRequestedSettings, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuditLogOrganizationUpdatedChangesRequestedSettings
Auto Trait Implementations§
impl Freeze for AuditLogOrganizationUpdatedChangesRequestedSettings
impl RefUnwindSafe for AuditLogOrganizationUpdatedChangesRequestedSettings
impl Send for AuditLogOrganizationUpdatedChangesRequestedSettings
impl Sync for AuditLogOrganizationUpdatedChangesRequestedSettings
impl Unpin for AuditLogOrganizationUpdatedChangesRequestedSettings
impl UnwindSafe for AuditLogOrganizationUpdatedChangesRequestedSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more