pub struct AuthConfigListParams {
pub is_composio_managed: Option<bool>,
pub toolkit_slug: Option<String>,
pub show_disabled: Option<bool>,
pub search: Option<String>,
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
Authentication configuration list parameters
Fields§
§is_composio_managed: Option<bool>Filter by whether the auth config is Composio-managed
toolkit_slug: Option<String>Filter by toolkit slug
show_disabled: Option<bool>Whether to show disabled auth configs
search: Option<String>Search query for filtering by name or ID
limit: Option<u32>Maximum number of results to return
cursor: Option<String>Cursor for pagination
Trait Implementations§
Source§impl Clone for AuthConfigListParams
impl Clone for AuthConfigListParams
Source§fn clone(&self) -> AuthConfigListParams
fn clone(&self) -> AuthConfigListParams
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 AuthConfigListParams
impl Debug for AuthConfigListParams
Source§impl Default for AuthConfigListParams
impl Default for AuthConfigListParams
Source§fn default() -> AuthConfigListParams
fn default() -> AuthConfigListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthConfigListParams
impl<'de> Deserialize<'de> for AuthConfigListParams
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 AuthConfigListParams
impl RefUnwindSafe for AuthConfigListParams
impl Send for AuthConfigListParams
impl Sync for AuthConfigListParams
impl Unpin for AuthConfigListParams
impl UnsafeUnpin for AuthConfigListParams
impl UnwindSafe for AuthConfigListParams
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