pub struct ProjectApiKey {
pub object: String,
pub redacted_value: String,
pub name: String,
pub created_at: u32,
pub id: String,
pub owner: ProjectApiKeyOwner,
}
Expand description
Represents an individual API key in a project.
Fields§
§object: String
The object type, which is always organization.project.api_key
.
redacted_value: String
The redacted value of the API key.
name: String
The name of the API key.
created_at: u32
The Unix timestamp (in seconds) of when the API key was created.
id: String
The identifier, which can be referenced in API endpoints.
owner: ProjectApiKeyOwner
The owner of the API key.
Trait Implementations§
Source§impl Debug for ProjectApiKey
impl Debug for ProjectApiKey
Source§impl<'de> Deserialize<'de> for ProjectApiKey
impl<'de> Deserialize<'de> for ProjectApiKey
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 ProjectApiKey
impl RefUnwindSafe for ProjectApiKey
impl Send for ProjectApiKey
impl Sync for ProjectApiKey
impl Unpin for ProjectApiKey
impl UnwindSafe for ProjectApiKey
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