pub struct ConnectedAccountAuthConfig {
pub id: String,
pub auth_scheme: String,
pub is_composio_managed: bool,
pub is_disabled: bool,
pub deprecated: Option<ConnectedAccountAuthConfigDeprecated>,
}Expand description
Auth config details in connected account response
Fields§
§id: StringAuth config ID (nano ID format)
auth_scheme: StringAuthentication scheme (OAUTH2, API_KEY, etc.)
is_composio_managed: boolWhether this uses Composio’s managed authentication
is_disabled: boolWhether this auth config is disabled
deprecated: Option<ConnectedAccountAuthConfigDeprecated>Deprecated fields
Trait Implementations§
Source§impl Clone for ConnectedAccountAuthConfig
impl Clone for ConnectedAccountAuthConfig
Source§fn clone(&self) -> ConnectedAccountAuthConfig
fn clone(&self) -> ConnectedAccountAuthConfig
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 ConnectedAccountAuthConfig
impl Debug for ConnectedAccountAuthConfig
Source§impl<'de> Deserialize<'de> for ConnectedAccountAuthConfig
impl<'de> Deserialize<'de> for ConnectedAccountAuthConfig
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
Auto Trait Implementations§
impl Freeze for ConnectedAccountAuthConfig
impl RefUnwindSafe for ConnectedAccountAuthConfig
impl Send for ConnectedAccountAuthConfig
impl Sync for ConnectedAccountAuthConfig
impl Unpin for ConnectedAccountAuthConfig
impl UnsafeUnpin for ConnectedAccountAuthConfig
impl UnwindSafe for ConnectedAccountAuthConfig
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