pub struct ApiKeyListRequest {
pub before_id: Option<String>,
pub after_id: Option<String>,
pub limit: Option<u32>,
pub status: Option<ApiKeyStatus>,
pub workspace_id: Option<String>,
pub created_by_user_id: Option<String>,
pub credentials: Option<Credentials>,
}Expand description
Request parameters for listing API keys.
Fields§
§before_id: Option<String>ID of the object to use as a cursor for pagination (previous page)
after_id: Option<String>ID of the object to use as a cursor for pagination (next page)
limit: Option<u32>Number of items to return per page (1-1000)
status: Option<ApiKeyStatus>Filter by API key status
workspace_id: Option<String>Filter by Workspace ID
created_by_user_id: Option<String>Filter by the ID of the User who created the object
credentials: Option<Credentials>Credentials for authentication (not serialized)
Trait Implementations§
Source§impl Clone for ApiKeyListRequest
impl Clone for ApiKeyListRequest
Source§fn clone(&self) -> ApiKeyListRequest
fn clone(&self) -> ApiKeyListRequest
Returns a copy 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 ApiKeyListRequest
impl Debug for ApiKeyListRequest
Auto Trait Implementations§
impl Freeze for ApiKeyListRequest
impl RefUnwindSafe for ApiKeyListRequest
impl Send for ApiKeyListRequest
impl Sync for ApiKeyListRequest
impl Unpin for ApiKeyListRequest
impl UnwindSafe for ApiKeyListRequest
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