pub struct GenaiDeleteAgentApiKeyResponse {
pub api_key_info: Option<GenaiDeleteAgentApiKeyResponseApiKeyInfo>,
}Expand description
GenaiDeleteAgentApiKeyResponse
JSON schema
{
"type": "object",
"properties": {
"api_key_info": {
"description": "Agent API Key Info",
"type": "object",
"properties": {
"created_at": {
"description": "Creation date",
"examples": [
"2023-01-01T00:00:00Z"
],
"type": "string",
"format": "date-time"
},
"created_by": {
"description": "Created by",
"examples": [
"12345"
],
"type": "string",
"format": "uint64"
},
"deleted_at": {
"description": "Deleted date",
"examples": [
"2023-01-01T00:00:00Z"
],
"type": "string",
"format": "date-time"
},
"name": {
"description": "Name",
"examples": [
"example name"
],
"type": "string"
},
"secret_key": {
"examples": [
"example string"
],
"type": "string"
},
"uuid": {
"description": "Uuid",
"examples": [
"123e4567-e89b-12d3-a456-426614174000"
],
"type": "string"
}
}
}
}
}Fields§
§api_key_info: Option<GenaiDeleteAgentApiKeyResponseApiKeyInfo>Trait Implementations§
Source§impl Clone for GenaiDeleteAgentApiKeyResponse
impl Clone for GenaiDeleteAgentApiKeyResponse
Source§fn clone(&self) -> GenaiDeleteAgentApiKeyResponse
fn clone(&self) -> GenaiDeleteAgentApiKeyResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for GenaiDeleteAgentApiKeyResponse
impl<'de> Deserialize<'de> for GenaiDeleteAgentApiKeyResponse
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
Source§impl From<&GenaiDeleteAgentApiKeyResponse> for GenaiDeleteAgentApiKeyResponse
impl From<&GenaiDeleteAgentApiKeyResponse> for GenaiDeleteAgentApiKeyResponse
Source§fn from(value: &GenaiDeleteAgentApiKeyResponse) -> Self
fn from(value: &GenaiDeleteAgentApiKeyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenaiDeleteAgentApiKeyResponse
impl RefUnwindSafe for GenaiDeleteAgentApiKeyResponse
impl Send for GenaiDeleteAgentApiKeyResponse
impl Sync for GenaiDeleteAgentApiKeyResponse
impl Unpin for GenaiDeleteAgentApiKeyResponse
impl UnsafeUnpin for GenaiDeleteAgentApiKeyResponse
impl UnwindSafe for GenaiDeleteAgentApiKeyResponse
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