pub struct ProjectConfigUpdateParams {
pub display_name: Option<String>,
pub is_2_fa_enabled: Option<bool>,
pub is_composio_link_enabled_for_managed_auth: Option<bool>,
pub log_visibility_setting: Option<ProjectLogVisibilitySetting>,
pub logo_url: Option<String>,
pub mask_secret_keys_in_connected_account: Option<bool>,
pub require_mcp_api_key: Option<bool>,
pub signed_url_file_expiry_in_seconds: Option<f64>,
}Expand description
Project configuration update request model.
Fields§
§display_name: Option<String>Optional display name for the project.
is_2_fa_enabled: Option<bool>Optional 2FA enablement value.
is_composio_link_enabled_for_managed_auth: Option<bool>Deprecated compatibility field.
log_visibility_setting: Option<ProjectLogVisibilitySetting>Optional log visibility setting.
logo_url: Option<String>Optional project logo URL.
mask_secret_keys_in_connected_account: Option<bool>Optional secret key masking setting.
require_mcp_api_key: Option<bool>Optional MCP API key requirement.
signed_url_file_expiry_in_seconds: Option<f64>Optional signed URL file expiry in seconds.
Trait Implementations§
Source§impl Clone for ProjectConfigUpdateParams
impl Clone for ProjectConfigUpdateParams
Source§fn clone(&self) -> ProjectConfigUpdateParams
fn clone(&self) -> ProjectConfigUpdateParams
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 Debug for ProjectConfigUpdateParams
impl Debug for ProjectConfigUpdateParams
Source§impl Default for ProjectConfigUpdateParams
impl Default for ProjectConfigUpdateParams
Source§fn default() -> ProjectConfigUpdateParams
fn default() -> ProjectConfigUpdateParams
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ProjectConfigUpdateParams
Auto Trait Implementations§
impl Freeze for ProjectConfigUpdateParams
impl RefUnwindSafe for ProjectConfigUpdateParams
impl Send for ProjectConfigUpdateParams
impl Sync for ProjectConfigUpdateParams
impl Unpin for ProjectConfigUpdateParams
impl UnsafeUnpin for ProjectConfigUpdateParams
impl UnwindSafe for ProjectConfigUpdateParams
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